{"id":"9d8553bee5ae820c3ee1ddb3823295ea","_format":"hh-sol-build-info-1","solcVersion":"0.8.27","solcLongVersion":"0.8.27+commit.40a35a09","input":{"language":"Solidity","sources":{"contracts/flatten/StakedPSYSV3-flatten.sol":{"content":"// Sources flattened with hardhat v2.22.15 https://hardhat.org\n\n// SPDX-License-Identifier: MIT AND agpl-3.0\n\n// File contracts/interfaces/IERC20.sol\n\n// Original license: SPDX_License_Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)\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 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 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 `to`.\n   *\n   * Returns a boolean value indicating whether the operation succeeded.\n   *\n   * Emits a {Transfer} event.\n   */\n  function transfer(address to, 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)\n    external\n    view\n    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 `from` to `to` 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 from,\n    address to,\n    uint256 amount\n  ) external returns (bool);\n}\n\n\n// File contracts/interfaces/IERC20Metadata.sol\n\n// Original license: SPDX_License_Identifier: MIT\n// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)\n\npragma solidity ^0.8.0;\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\n\n// File contracts/interfaces/IERC20WithPermit.sol\n\n// Original license: SPDX_License_Identifier: agpl-3.0\npragma solidity ^0.8.0;\n\ninterface IERC20WithPermit is IERC20 {\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\n// File contracts/lib/DistributionTypes.sol\n\n// Original license: SPDX_License_Identifier: agpl-3.0\npragma solidity ^0.8.0;\n\nlibrary DistributionTypes {\n    struct AssetConfigInput {\n        uint128 emissionPerSecond;\n        uint256 totalStaked;\n        address underlyingAsset;\n    }\n\n    struct UserStakeInput {\n        address underlyingAsset;\n        uint256 stakedByUser;\n        uint256 totalStaked;\n    }\n}\n\n\n// File contracts/interfaces/IPegasysDistributionManager.sol\n\n// Original license: SPDX_License_Identifier: agpl-3.0\npragma solidity ^0.8.0;\n\ninterface IPegasysDistributionManager {\n  function configureAssets(\n    DistributionTypes.AssetConfigInput[] memory assetsConfigInput\n  ) external;\n}\n\n\n// File contracts/interfaces/IGhoVariableDebtTokenTransferHook.sol\n\n// Original license: SPDX_License_Identifier: agpl-3.0\npragma solidity ^0.8.0;\n\ninterface IGhoVariableDebtTokenTransferHook {\n  /**\n   * @dev updates the discount when discount token is transferred\n   * @dev Only callable by discount token\n   * @param sender address of sender\n   * @param recipient address of recipient\n   * @param senderDiscountTokenBalance sender discount token balance\n   * @param recipientDiscountTokenBalance recipient discount token balance\n   * @param amount amount of discount token being transferred\n   **/\n  function updateDiscountDistribution(\n    address sender,\n    address recipient,\n    uint256 senderDiscountTokenBalance,\n    uint256 recipientDiscountTokenBalance,\n    uint256 amount\n  ) external;\n}\n\n\n// File contracts/interfaces/IStakedTokenV2.sol\n\n// Original license: SPDX_License_Identifier: agpl-3.0\npragma solidity ^0.8.0;\n\ninterface IStakedTokenV2 {\n  struct CooldownSnapshot {\n    uint40 timestamp;\n    uint216 amount;\n  }\n\n  event RewardsAccrued(address user, uint256 amount);\n  event RewardsClaimed(\n    address indexed from,\n    address indexed to,\n    uint256 amount\n  );\n  event Cooldown(address indexed user, uint256 amount);\n\n  /**\n   * @dev Allows staking a specified amount of STAKED_TOKEN\n   * @param to The address to receiving the shares\n   * @param amount The amount of assets to be staked\n   */\n  function stake(address to, uint256 amount) external;\n\n  /**\n   * @dev Redeems shares, and stop earning rewards\n   * @param to Address to redeem to\n   * @param amount Amount of shares to redeem\n   */\n  function redeem(address to, uint256 amount) external;\n\n  /**\n   * @dev Activates the cooldown period to unstake\n   * - It can't be called if the user is not staking\n   */\n  function cooldown() external;\n\n  /**\n   * @dev Claims an `amount` of `REWARD_TOKEN` to the address `to`\n   * @param to Address to send the claimed rewards\n   * @param amount Amount to stake\n   */\n  function claimRewards(address to, uint256 amount) external;\n\n  /**\n   * @dev Return the total rewards pending to claim by an staker\n   * @param staker The staker address\n   * @return The rewards\n   */\n  function getTotalRewardsBalance(address staker)\n    external\n    view\n    returns (uint256);\n\n  /**\n   * @dev implements the permit function as for https://github.com/ethereum/EIPs/blob/8a34d644aacf0f9f8f00815307fd7dd5da07655f/EIPS/eip-2612.md\n   * @param owner the owner of the funds\n   * @param spender the spender\n   * @param value the amount\n   * @param deadline the deadline timestamp, type(uint256).max for no deadline\n   * @param v signature param\n   * @param s signature param\n   * @param r signature param\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\n\n// File contracts/interfaces/IStakedTokenV3.sol\n\n// Original license: SPDX_License_Identifier: agpl-3.0\npragma solidity ^0.8.0;\n\ninterface IStakedTokenV3 is IStakedTokenV2 {\n  event Staked(\n    address indexed from,\n    address indexed to,\n    uint256 assets,\n    uint256 shares\n  );\n  event Redeem(\n    address indexed from,\n    address indexed to,\n    uint256 assets,\n    uint256 shares\n  );\n  event MaxSlashablePercentageChanged(uint256 newPercentage);\n  event Slashed(address indexed destination, uint256 amount);\n  event SlashingExitWindowDurationChanged(uint256 windowSeconds);\n  event CooldownSecondsChanged(uint256 cooldownSeconds);\n  event ExchangeRateChanged(uint216 exchangeRate);\n  event FundsReturned(uint256 amount);\n  event SlashingSettled();\n\n  /**\n   * @dev Returns the current exchange rate\n   * @return exchangeRate as 18 decimal precision uint216\n   */\n  function getExchangeRate() external view returns (uint216);\n\n  /**\n   * @dev Executes a slashing of the underlying of a certain amount, transferring the seized funds\n   * to destination. Decreasing the amount of underlying will automatically adjust the exchange rate.\n   * A call to `slash` will start a slashing event which has to be settled via `settleSlashing`.\n   * As long as the slashing event is ongoing, stake and slash are deactivated.\n   * - MUST NOT be called when a previous slashing is still ongoing\n   * @param destination the address where seized funds will be transferred\n   * @param amount the amount to be slashed\n   * - if the amount bigger than maximum allowed, the maximum will be slashed instead.\n   * @return amount the amount slashed\n   */\n  function slash(address destination, uint256 amount)\n    external\n    returns (uint256);\n\n  /**\n   * @dev Settles an ongoing slashing event\n   */\n  function settleSlashing() external;\n\n  /**\n   * @dev Pulls STAKE_TOKEN and distributes them amongst current stakers by altering the exchange rate.\n   * This method is permissionless and intended to be used after a slashing event to return potential excess funds.\n   * @param amount amount of STAKE_TOKEN to pull.\n   */\n  function returnFunds(uint256 amount) external;\n\n  /**\n   * @dev Getter of the cooldown seconds\n   * @return cooldownSeconds the amount of seconds between starting the cooldown and being able to redeem\n   */\n  function getCooldownSeconds() external view returns (uint256);\n\n  /**\n   * @dev Getter of the cooldown seconds\n   * @return cooldownSeconds the amount of seconds between starting the cooldown and being able to redeem\n   */\n  function COOLDOWN_SECONDS() external view returns (uint256); // @deprecated\n\n  /**\n   * @dev Setter of cooldown seconds\n   * Can only be called by the cooldown admin\n   * @param cooldownSeconds the new amount of seconds you have to wait between starting the cooldown and being able to redeem\n   */\n  function setCooldownSeconds(uint256 cooldownSeconds) external;\n\n  /**\n   * @dev Getter of the max slashable percentage of the total staked amount.\n   * @return percentage the maximum slashable percentage\n   */\n  function getMaxSlashablePercentage() external view returns (uint256);\n\n  /**\n   * @dev Setter of max slashable percentage of the total staked amount.\n   * Can only be called by the slashing admin\n   * @param percentage the new maximum slashable percentage\n   */\n  function setMaxSlashablePercentage(uint256 percentage) external;\n\n  /**\n   * @dev returns the exact amount of shares that would be received for the provided number of assets\n   * @param assets the number of assets to stake\n   * @return uint256 shares the number of shares that would be received\n   */\n  function previewStake(uint256 assets) external view returns (uint256);\n\n  /**\n   * @dev Activates the cooldown period to unstake\n   * - It can't be called if the user is not staking\n   */\n  function cooldownOnBehalfOf(address from) external;\n\n  /**\n   * @dev Claims an `amount` of `REWARD_TOKEN` to the address `to` on behalf of the user. Only the claim helper contract is allowed to call this function\n   * @param from The address of the user from to claim\n   * @param to Address to send the claimed rewards\n   * @param amount Amount to claim\n   */\n  function claimRewardsOnBehalf(\n    address from,\n    address to,\n    uint256 amount\n  ) external returns (uint256);\n\n  /**\n   * @dev returns the exact amount of assets that would be redeemed for the provided number of shares\n   * @param shares the number of shares to redeem\n   * @return uint256 assets the number of assets that would be redeemed\n   */\n  function previewRedeem(uint256 shares) external view returns (uint256);\n\n  /**\n   * @dev Redeems shares for a user. Only the claim helper contract is allowed to call this function\n   * @param from Address to redeem from\n   * @param to Address to redeem to\n   * @param amount Amount of shares to redeem\n   */\n  function redeemOnBehalf(\n    address from,\n    address to,\n    uint256 amount\n  ) external;\n\n  /**\n   * @dev Claims an `amount` of `REWARD_TOKEN` and redeems to the provided address\n   * @param to Address to claim and redeem to\n   * @param claimAmount Amount to claim\n   * @param redeemAmount Amount to redeem\n   */\n  function claimRewardsAndRedeem(\n    address to,\n    uint256 claimAmount,\n    uint256 redeemAmount\n  ) external;\n\n  /**\n   * @dev Claims an `amount` of `REWARD_TOKEN` and redeems the `redeemAmount` to an address. Only the claim helper contract is allowed to call this function\n   * @param from The address of the from\n   * @param to Address to claim and redeem to\n   * @param claimAmount Amount to claim\n   * @param redeemAmount Amount to redeem\n   */\n  function claimRewardsAndRedeemOnBehalf(\n    address from,\n    address to,\n    uint256 claimAmount,\n    uint256 redeemAmount\n  ) external;\n}\n\n\n// File contracts/interfaces/IStakedPSYSV3.sol\n\n// Original license: SPDX_License_Identifier: agpl-3.0\npragma solidity ^0.8.0;\n\n\ninterface IStakedPSYSV3 is IStakedTokenV3 {\n  struct ExchangeRateSnapshot {\n    uint40 blockNumber;\n    uint216 value;\n  }\n\n  event GHODebtTokenChanged(address indexed newDebtToken);\n\n  /**\n   * @dev Returnes the number of excahngeRate snapshots\n   */\n  function getExchangeRateSnapshotsCount() external view returns (uint32);\n\n  /**\n   * @dev Returns the exchangeRate for a specified index\n   * @param index Index of the exchangeRate\n   */\n  function getExchangeRateSnapshot(uint32 index)\n    external\n    view\n    returns (ExchangeRateSnapshot memory);\n\n  /**\n   * @dev Sets the GHO debt token (only callable by SHORT_EXECUTOR)\n   * @param newGHODebtToken Address to GHO debt token\n   */\n  function setGHODebtToken(IGhoVariableDebtTokenTransferHook newGHODebtToken)\n    external;\n\n  /**\n   * @dev Claims an `amount` of `REWARD_TOKEN` and stakes.\n   * @param to Address to stake to\n   * @param amount Amount to claim\n   */\n  function claimRewardsAndStake(address to, uint256 amount)\n    external\n    returns (uint256);\n\n  /**\n   * @dev Claims an `amount` of `REWARD_TOKEN` and stakes. Only the claim helper contract is allowed to call this function\n   * @param from The address of the from from which to claim\n   * @param to Address to stake to\n   * @param amount Amount to claim\n   */\n  function claimRewardsAndStakeOnBehalf(\n    address from,\n    address to,\n    uint256 amount\n  ) external returns (uint256);\n\n  /**\n   * @dev Allows staking a certain amount of STAKED_TOKEN with gasless approvals (permit)\n   * @param from The address staking the token\n   * @param amount The amount to be staked\n   * @param deadline The permit execution deadline\n   * @param v The v component of the signed message\n   * @param r The r component of the signed message\n   * @param s The s component of the signed message\n   */\n  function stakeWithPermit(\n    address from,\n    uint256 amount,\n    uint256 deadline,\n    uint8 v,\n    bytes32 r,\n    bytes32 s\n  ) external;\n}\n\n\n// File contracts/lib/Context.sol\n\n// Original license: SPDX_License_Identifier: MIT\n// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)\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\n\n// File contracts/lib/ERC20.sol\n\n// Original license: SPDX_License_Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)\n\npragma solidity ^0.8.0;\n\n\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.openzeppelin.com/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) internal _balances;\n\n    mapping(address => mapping(address => uint256)) private _allowances;\n\n    uint256 internal _totalSupply;\n\n    string private _name;\n    string private _symbol;\n    uint8 private _decimals; // @deprecated\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\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     * - `to` cannot be the zero address.\n     * - the caller must have a balance of at least `amount`.\n     */\n    function transfer(address to, uint256 amount) public virtual override returns (bool) {\n        address owner = _msgSender();\n        _transfer(owner, to, 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     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on\n     * `transferFrom`. This is semantically equivalent to an infinite approval.\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        address owner = _msgSender();\n        _approve(owner, 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     * NOTE: Does not update the allowance if the current allowance\n     * is the maximum `uint256`.\n     *\n     * Requirements:\n     *\n     * - `from` and `to` cannot be the zero address.\n     * - `from` must have a balance of at least `amount`.\n     * - the caller must have allowance for ``from``'s tokens of at least\n     * `amount`.\n     */\n    function transferFrom(\n        address from,\n        address to,\n        uint256 amount\n    ) public virtual override returns (bool) {\n        address spender = _msgSender();\n        _spendAllowance(from, spender, amount);\n        _transfer(from, to, amount);\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        address owner = _msgSender();\n        _approve(owner, spender, allowance(owner, 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        address owner = _msgSender();\n        uint256 currentAllowance = allowance(owner, spender);\n        require(currentAllowance >= subtractedValue, \"ERC20: decreased allowance below zero\");\n        unchecked {\n            _approve(owner, spender, currentAllowance - subtractedValue);\n        }\n\n        return true;\n    }\n\n    /**\n     * @dev Moves `amount` of tokens from `from` to `to`.\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     * - `from` cannot be the zero address.\n     * - `to` cannot be the zero address.\n     * - `from` must have a balance of at least `amount`.\n     */\n    function _transfer(\n        address from,\n        address to,\n        uint256 amount\n    ) internal virtual {\n        require(from != address(0), \"ERC20: transfer from the zero address\");\n        require(to != address(0), \"ERC20: transfer to the zero address\");\n\n        _beforeTokenTransfer(from, to, amount);\n\n        uint256 fromBalance = _balances[from];\n        require(fromBalance >= amount, \"ERC20: transfer amount exceeds balance\");\n        unchecked {\n            _balances[from] = fromBalance - amount;\n            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by\n            // decrementing then incrementing.\n            _balances[to] += amount;\n        }\n\n        emit Transfer(from, to, amount);\n\n        _afterTokenTransfer(from, to, 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        unchecked {\n            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.\n            _balances[account] += amount;\n        }\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            // Overflow not possible: amount <= accountBalance <= totalSupply.\n            _totalSupply -= amount;\n        }\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 Updates `owner` s allowance for `spender` based on spent `amount`.\n     *\n     * Does not update the allowance amount in case of infinite allowance.\n     * Revert if not enough allowance is available.\n     *\n     * Might emit an {Approval} event.\n     */\n    function _spendAllowance(\n        address owner,\n        address spender,\n        uint256 amount\n    ) internal virtual {\n        uint256 currentAllowance = allowance(owner, spender);\n        if (currentAllowance != type(uint256).max) {\n            require(currentAllowance >= amount, \"ERC20: insufficient allowance\");\n            unchecked {\n                _approve(owner, spender, currentAllowance - amount);\n            }\n        }\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\n\n// File contracts/interfaces/IGovernancePowerDelegationToken.sol\n\n// Original license: SPDX_License_Identifier: agpl-3.0\npragma solidity ^0.8.0;\n\ninterface IGovernancePowerDelegationToken {\n  enum DelegationType {\n    VOTING_POWER,\n    PROPOSITION_POWER\n  }\n\n  /**\n   * @dev emitted when a user delegates to another\n   * @param delegator the delegator\n   * @param delegatee the delegatee\n   * @param delegationType the type of delegation (VOTING_POWER, PROPOSITION_POWER)\n   **/\n  event DelegateChanged(\n    address indexed delegator,\n    address indexed delegatee,\n    DelegationType delegationType\n  );\n\n  /**\n   * @dev emitted when an action changes the delegated power of a user\n   * @param user the user which delegated power has changed\n   * @param amount the amount of delegated power for the user\n   * @param delegationType the type of delegation (VOTING_POWER, PROPOSITION_POWER)\n   **/\n  event DelegatedPowerChanged(\n    address indexed user,\n    uint256 amount,\n    DelegationType delegationType\n  );\n\n  /**\n   * @dev delegates the specific power to a delegatee\n   * @param delegatee the user which delegated power has changed\n   * @param delegationType the type of delegation (VOTING_POWER, PROPOSITION_POWER)\n   **/\n  function delegateByType(address delegatee, DelegationType delegationType)\n    external;\n\n  /**\n   * @dev delegates all the powers to a specific user\n   * @param delegatee the user to which the power will be delegated\n   **/\n  function delegate(address delegatee) external;\n\n  /**\n   * @dev returns the delegatee of an user\n   * @param delegator the address of the delegator\n   **/\n  function getDelegateeByType(address delegator, DelegationType delegationType)\n    external\n    view\n    returns (address);\n\n  /**\n   * @dev returns the current delegated power of a user. The current power is the\n   * power delegated at the time of the last snapshot\n   * @param user the user\n   **/\n  function getPowerCurrent(address user, DelegationType delegationType)\n    external\n    view\n    returns (uint256);\n\n  /**\n   * @dev returns the delegated power of a user at a certain block\n   * @param user the user\n   **/\n  function getPowerAtBlock(\n    address user,\n    uint256 blockNumber,\n    DelegationType delegationType\n  ) external view returns (uint256);\n\n  /**\n   * @dev returns the total supply at a certain block number\n   **/\n  function totalSupplyAt(uint256 blockNumber) external view returns (uint256);\n}\n\n\n// File contracts/lib/GovernancePowerDelegationERC20.sol\n\n// Original license: SPDX_License_Identifier: agpl-3.0\npragma solidity ^0.8.0;\n\n\n/**\n * @notice implementation of the AAVE token contract\n * @author Aave\n */\nabstract contract GovernancePowerDelegationERC20 is ERC20, IGovernancePowerDelegationToken {\n  /// @notice The EIP-712 typehash for the delegation struct used by the contract\n  bytes32 public constant DELEGATE_BY_TYPE_TYPEHASH = keccak256(\n    'DelegateByType(address delegatee,uint256 type,uint256 nonce,uint256 expiry)'\n  );\n\n  bytes32 public constant DELEGATE_TYPEHASH = keccak256(\n    'Delegate(address delegatee,uint256 nonce,uint256 expiry)'\n  );\n\n  /// @dev snapshot of a value on a specific block, used for votes\n  struct Snapshot {\n    uint128 blockNumber;\n    uint128 value;\n  }\n\n  /**\n   * @dev delegates one specific power to a delegatee\n   * @param delegatee the user which delegated power has changed\n   * @param delegationType the type of delegation (VOTING_POWER, PROPOSITION_POWER)\n   **/\n  function delegateByType(address delegatee, DelegationType delegationType) external override {\n    _delegateByType(msg.sender, delegatee, delegationType);\n  }\n\n  /**\n   * @dev delegates all the powers to a specific user\n   * @param delegatee the user to which the power will be delegated\n   **/\n  function delegate(address delegatee) external override {\n    _delegateByType(msg.sender, delegatee, DelegationType.VOTING_POWER);\n    _delegateByType(msg.sender, delegatee, DelegationType.PROPOSITION_POWER);\n  }\n\n  /**\n   * @dev returns the delegatee of an user\n   * @param delegator the address of the delegator\n   **/\n  function getDelegateeByType(address delegator, DelegationType delegationType)\n    external\n    override\n    view\n    returns (address)\n  {\n    (, , mapping(address => address) storage delegates) = _getDelegationDataByType(delegationType);\n\n    return _getDelegatee(delegator, delegates);\n  }\n\n  /**\n   * @dev returns the current delegated power of a user. The current power is the\n   * power delegated at the time of the last snapshot\n   * @param user the user\n   **/\n  function getPowerCurrent(address user, DelegationType delegationType)\n    external\n    override\n    view\n    returns (uint256)\n  {\n    (\n      mapping(address => mapping(uint256 => Snapshot)) storage snapshots,\n      mapping(address => uint256) storage snapshotsCounts,\n\n    ) = _getDelegationDataByType(delegationType);\n\n    return _searchByBlockNumber(snapshots, snapshotsCounts, user, block.number);\n  }\n\n  /**\n   * @dev returns the delegated power of a user at a certain block\n   * @param user the user\n   **/\n  function getPowerAtBlock(\n    address user,\n    uint256 blockNumber,\n    DelegationType delegationType\n  ) external override view returns (uint256) {\n    (\n      mapping(address => mapping(uint256 => Snapshot)) storage snapshots,\n      mapping(address => uint256) storage snapshotsCounts,\n\n    ) = _getDelegationDataByType(delegationType);\n\n    return _searchByBlockNumber(snapshots, snapshotsCounts, user, blockNumber);\n  }\n\n  /**\n   * @dev returns the total supply at a certain block number\n   * used by the voting strategy contracts to calculate the total votes needed for threshold/quorum\n   * In this initial implementation with no AAVE minting, simply returns the current supply\n   * A snapshots mapping will need to be added in case a mint function is added to the AAVE token in the future\n   **/\n  function totalSupplyAt(uint256) external override view returns (uint256) {\n    return super.totalSupply();\n  }\n\n  /**\n   * @dev delegates the specific power to a delegatee\n   * @param delegatee the user which delegated power has changed\n   * @param delegationType the type of delegation (VOTING_POWER, PROPOSITION_POWER)\n   **/\n  function _delegateByType(\n    address delegator,\n    address delegatee,\n    DelegationType delegationType\n  ) internal {\n    require(delegatee != address(0), 'INVALID_DELEGATEE');\n\n    (, , mapping(address => address) storage delegates) = _getDelegationDataByType(delegationType);\n\n    uint256 delegatorBalance = balanceOf(delegator);\n\n    address previousDelegatee = _getDelegatee(delegator, delegates);\n\n    delegates[delegator] = delegatee;\n\n    _moveDelegatesByType(previousDelegatee, delegatee, delegatorBalance, delegationType);\n    emit DelegateChanged(delegator, delegatee, delegationType);\n  }\n\n  /**\n   * @dev moves delegated power from one user to another\n   * @param from the user from which delegated power is moved\n   * @param to the user that will receive the delegated power\n   * @param amount the amount of delegated power to be moved\n   * @param delegationType the type of delegation (VOTING_POWER, PROPOSITION_POWER)\n   **/\n  function _moveDelegatesByType(\n    address from,\n    address to,\n    uint256 amount,\n    DelegationType delegationType\n  ) internal {\n    if (from == to) {\n      return;\n    }\n\n    (\n      mapping(address => mapping(uint256 => Snapshot)) storage snapshots,\n      mapping(address => uint256) storage snapshotsCounts,\n\n    ) = _getDelegationDataByType(delegationType);\n\n    if (from != address(0)) {\n      uint256 previous = 0;\n      uint256 fromSnapshotsCount = snapshotsCounts[from];\n\n      if (fromSnapshotsCount != 0) {\n        previous = snapshots[from][fromSnapshotsCount - 1].value;\n      } else {\n        previous = balanceOf(from);\n      }\n\n      _writeSnapshot(\n        snapshots,\n        snapshotsCounts,\n        from,\n        uint128(previous),\n        uint128(previous - amount)\n      );\n\n      emit DelegatedPowerChanged(from, previous - amount, delegationType);\n    }\n    if (to != address(0)) {\n      uint256 previous = 0;\n      uint256 toSnapshotsCount = snapshotsCounts[to];\n      if (toSnapshotsCount != 0) {\n        previous = snapshots[to][toSnapshotsCount - 1].value;\n      } else {\n        previous = balanceOf(to);\n      }\n\n      _writeSnapshot(\n        snapshots,\n        snapshotsCounts,\n        to,\n        uint128(previous),\n        uint128(previous + amount)\n      );\n\n      emit DelegatedPowerChanged(to, previous + amount, delegationType);\n    }\n  }\n\n  /**\n   * @dev searches a snapshot by block number. Uses binary search.\n   * @param snapshots the snapshots mapping\n   * @param snapshotsCounts the number of snapshots\n   * @param user the user for which the snapshot is being searched\n   * @param blockNumber the block number being searched\n   **/\n  function _searchByBlockNumber(\n    mapping(address => mapping(uint256 => Snapshot)) storage snapshots,\n    mapping(address => uint256) storage snapshotsCounts,\n    address user,\n    uint256 blockNumber\n  ) internal virtual view returns (uint256) {\n    require(blockNumber <= block.number, 'INVALID_BLOCK_NUMBER');\n\n    uint256 snapshotsCount = snapshotsCounts[user];\n\n    if (snapshotsCount == 0) {\n      return balanceOf(user);\n    }\n\n    // Check implicit zero balance\n    if (snapshots[user][0].blockNumber > blockNumber) {\n      return 0;\n    }\n\n    return _binarySearch(snapshots[user], snapshotsCount, blockNumber);\n  }\n\n  function _binarySearch(mapping(uint256 => Snapshot) storage snapshots, uint256 snapshotsCount, uint256 blockNumber) internal view returns (uint256) {\n    unchecked {\n      // First check most recent balance\n      if (snapshots[snapshotsCount - 1].blockNumber <= blockNumber) {\n        return snapshots[snapshotsCount - 1].value;\n      }\n\n      uint256 lower = 0;\n      uint256 upper = snapshotsCount - 1;\n      while (upper > lower) {\n        uint256 center = upper - (upper - lower) / 2; // ceil, avoiding overflow\n        Snapshot memory snapshot = snapshots[center];\n        if (snapshot.blockNumber == blockNumber) {\n          return snapshot.value;\n        } else if (snapshot.blockNumber < blockNumber) {\n          lower = center;\n        } else {\n          upper = center - 1;\n        }\n      }\n      return snapshots[lower].value;\n    }\n  }\n\n  /**\n   * @dev returns the delegation data (snapshot, snapshotsCount, list of delegates) by delegation type\n   * NOTE: Ideal implementation would have mapped this in a struct by delegation type. Unfortunately,\n   * the AAVE token and StakeToken already include a mapping for the snapshots, so we require contracts\n   * who inherit from this to provide access to the delegation data by overriding this method.\n   * @param delegationType the type of delegation\n   **/\n  function _getDelegationDataByType(DelegationType delegationType)\n    internal\n    virtual\n    view\n    returns (\n      mapping(address => mapping(uint256 => Snapshot)) storage, //snapshots\n      mapping(address => uint256) storage, //snapshots count\n      mapping(address => address) storage //delegatees list\n    );\n\n  /**\n   * @dev Writes a snapshot for an owner of tokens\n   * @param owner The owner of the tokens\n   * @param oldValue The value before the operation that is gonna be executed after the snapshot\n   * @param newValue The value after the operation\n   */\n  function _writeSnapshot(\n    mapping(address => mapping(uint256 => Snapshot)) storage snapshots,\n    mapping(address => uint256) storage snapshotsCounts,\n    address owner,\n    uint128 oldValue,\n    uint128 newValue\n  ) internal {\n    uint128 currentBlock = uint128(block.number);\n\n    uint256 ownerSnapshotsCount = snapshotsCounts[owner];\n    mapping(uint256 => Snapshot) storage snapshotsOwner = snapshots[owner];\n\n    // Doing multiple operations in the same block\n    if (\n      ownerSnapshotsCount != 0 &&\n      snapshotsOwner[ownerSnapshotsCount - 1].blockNumber == currentBlock\n    ) {\n      snapshotsOwner[ownerSnapshotsCount - 1].value = newValue;\n    } else {\n      snapshotsOwner[ownerSnapshotsCount] = Snapshot(currentBlock, newValue);\n      snapshotsCounts[owner] = ownerSnapshotsCount + 1;\n    }\n  }\n\n  /**\n   * @dev returns the user delegatee. If a user never performed any delegation,\n   * his delegated address will be 0x0. In that case we simply return the user itself\n   * @param delegator the address of the user for which return the delegatee\n   * @param delegates the array of delegates for a particular type of delegation\n   **/\n  function _getDelegatee(address delegator, mapping(address => address) storage delegates)\n    internal\n    view\n    returns (address)\n  {\n    address previousDelegatee = delegates[delegator];\n\n    if (previousDelegatee == address(0)) {\n      return delegator;\n    }\n\n    return previousDelegatee;\n  }\n}\n\n\n// File contracts/interfaces/ITransferHook.sol\n\n// Original license: SPDX_License_Identifier: agpl-3.0\npragma solidity ^0.8.0;\n\ninterface ITransferHook {\n  function onTransfer(\n    address from,\n    address to,\n    uint256 amount\n  ) external;\n}\n\n\n// File contracts/lib/GovernancePowerWithSnapshot.sol\n\n// Original license: SPDX_License_Identifier: agpl-3.0\npragma solidity ^0.8.0;\n\n\n\n/**\n * @title ERC20WithSnapshot\n * @notice ERC20 including snapshots of balances on transfer-related actions\n * @author Aave\n **/\nabstract contract GovernancePowerWithSnapshot is GovernancePowerDelegationERC20 {\n  /**\n   * @dev The following storage layout points to the prior StakedToken.sol implementation:\n   * _snapshots => _votingSnapshots\n   * _snapshotsCounts =>  _votingSnapshotsCounts\n   * _aaveGovernance => _aaveGovernance\n   */\n  mapping(address => mapping(uint256 => Snapshot)) public _votingSnapshots;\n  mapping(address => uint256) public _votingSnapshotsCounts;\n\n  /// @dev reference to the Aave governance contract to call (if initialized) on _beforeTokenTransfer\n  /// !!! IMPORTANT The Aave governance is considered a trustable contract, being its responsibility\n  /// to control all potential reentrancies by calling back the this contract\n  /// @dev DEPRECATED\n  ITransferHook public _aaveGovernance;\n}\n\n\n// File contracts/lib/Address.sol\n\n// Original license: SPDX_License_Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol)\n\npragma solidity ^0.8.1;\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     * [IMPORTANT]\n     * ====\n     * You shouldn't rely on `isContract` to protect against flash loan attacks!\n     *\n     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets\n     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract\n     * constructor.\n     * ====\n     */\n    function isContract(address account) internal view returns (bool) {\n        // This method relies on extcodesize/address.code.length, which returns 0\n        // for contracts in construction, since the code is only stored at the end\n        // of the constructor execution.\n\n        return account.code.length > 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://consensys.net/diligence/blog/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 functionCallWithValue(target, data, 0, \"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        (bool success, bytes memory returndata) = target.call{value: value}(data);\n        return verifyCallResultFromTarget(target, 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        (bool success, bytes memory returndata) = target.staticcall(data);\n        return verifyCallResultFromTarget(target, 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        (bool success, bytes memory returndata) = target.delegatecall(data);\n        return verifyCallResultFromTarget(target, success, returndata, errorMessage);\n    }\n\n    /**\n     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling\n     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.\n     *\n     * _Available since v4.8._\n     */\n    function verifyCallResultFromTarget(\n        address target,\n        bool success,\n        bytes memory returndata,\n        string memory errorMessage\n    ) internal view returns (bytes memory) {\n        if (success) {\n            if (returndata.length == 0) {\n                // only check isContract if the call was successful and the return data is empty\n                // otherwise we already know that it was a contract\n                require(isContract(target), \"Address: call to non-contract\");\n            }\n            return returndata;\n        } else {\n            _revert(returndata, errorMessage);\n        }\n    }\n\n    /**\n     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the\n     * revert reason or 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            _revert(returndata, errorMessage);\n        }\n    }\n\n    function _revert(bytes memory returndata, string memory errorMessage) private pure {\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            /// @solidity memory-safe-assembly\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\n// File contracts/lib/SafeERC20.sol\n\n// Original license: SPDX_License_Identifier: MIT\n// OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol)\n\npragma solidity ^0.8.0;\n\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(\n            token,\n            abi.encodeWithSelector(token.transfer.selector, to, value)\n        );\n    }\n\n    function safeTransferFrom(\n        IERC20 token,\n        address from,\n        address to,\n        uint256 value\n    ) internal {\n        _callOptionalReturn(\n            token,\n            abi.encodeWithSelector(token.transferFrom.selector, from, to, value)\n        );\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(\n            token,\n            abi.encodeWithSelector(token.approve.selector, spender, value)\n        );\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(\n            token,\n            abi.encodeWithSelector(\n                token.approve.selector,\n                spender,\n                newAllowance\n            )\n        );\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(\n                oldAllowance >= value,\n                \"SafeERC20: decreased allowance below zero\"\n            );\n            uint256 newAllowance = oldAllowance - value;\n            _callOptionalReturn(\n                token,\n                abi.encodeWithSelector(\n                    token.approve.selector,\n                    spender,\n                    newAllowance\n                )\n            );\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(\n            data,\n            \"SafeERC20: low-level call failed\"\n        );\n        if (returndata.length > 0) {\n            // Return data is optional\n            require(\n                abi.decode(returndata, (bool)),\n                \"SafeERC20: ERC20 operation did not succeed\"\n            );\n        }\n    }\n}\n\n\n// File contracts/PegasysDistributionManager.sol\n\n// Original license: SPDX_License_Identifier: agpl-3.0\npragma solidity ^0.8.0;\n\n/**\n * @title PegasysDistributionManager\n * @notice Accounting contract to manage multiple staking distributions\n */\ncontract PegasysDistributionManager {\n  struct AssetData {\n    uint128 emissionPerSecond;\n    uint128 lastUpdateTimestamp;\n    uint256 index;\n    mapping(address => uint256) users;\n  }\n\n  uint256 public immutable DISTRIBUTION_END;\n\n  address public immutable EMISSION_MANAGER;\n\n  uint8 public constant PRECISION = 18;\n\n  mapping(address => AssetData) public assets;\n\n  event AssetConfigUpdated(address indexed asset, uint256 emission);\n  event AssetIndexUpdated(address indexed asset, uint256 index);\n  event UserIndexUpdated(\n    address indexed user,\n    address indexed asset,\n    uint256 index\n  );\n\n  constructor(address emissionManager, uint256 distributionDuration) {\n    DISTRIBUTION_END = block.timestamp + distributionDuration;\n    EMISSION_MANAGER = emissionManager;\n  }\n\n  /**\n   * @dev Configures the distribution of rewards for a list of assets\n   * @param assetsConfigInput The list of configurations to apply\n   */\n  function _configureAssets(\n    DistributionTypes.AssetConfigInput[] memory assetsConfigInput\n  ) internal {\n    for (uint256 i = 0; i < assetsConfigInput.length; i++) {\n      AssetData storage assetConfig = assets[\n        assetsConfigInput[i].underlyingAsset\n      ];\n\n      _updateAssetStateInternal(\n        assetsConfigInput[i].underlyingAsset,\n        assetConfig,\n        assetsConfigInput[i].totalStaked\n      );\n\n      assetConfig.emissionPerSecond = assetsConfigInput[i].emissionPerSecond;\n\n      emit AssetConfigUpdated(\n        assetsConfigInput[i].underlyingAsset,\n        assetsConfigInput[i].emissionPerSecond\n      );\n    }\n  }\n\n  /**\n   * @dev Updates the state of one distribution, mainly rewards index and timestamp\n   * @param underlyingAsset The address used as key in the distribution, for example sPSYS or the aTokens addresses on Pegasys\n   * @param assetConfig Storage pointer to the distribution's config\n   * @param totalStaked Current total of staked assets for this distribution\n   * @return The new distribution index\n   */\n  function _updateAssetStateInternal(\n    address underlyingAsset,\n    AssetData storage assetConfig,\n    uint256 totalStaked\n  ) internal returns (uint256) {\n    uint256 oldIndex = assetConfig.index;\n    uint128 lastUpdateTimestamp = assetConfig.lastUpdateTimestamp;\n\n    if (block.timestamp == lastUpdateTimestamp) {\n      return oldIndex;\n    }\n\n    uint256 newIndex = _getAssetIndex(\n      oldIndex,\n      assetConfig.emissionPerSecond,\n      lastUpdateTimestamp,\n      totalStaked\n    );\n\n    if (newIndex != oldIndex) {\n      assetConfig.index = newIndex;\n      emit AssetIndexUpdated(underlyingAsset, newIndex);\n    }\n\n    assetConfig.lastUpdateTimestamp = uint128(block.timestamp);\n\n    return newIndex;\n  }\n\n  /**\n   * @dev Updates the state of an user in a distribution\n   * @param user The user's address\n   * @param asset The address of the reference asset of the distribution\n   * @param stakedByUser Amount of tokens staked by the user in the distribution at the moment\n   * @param totalStaked Total tokens staked in the distribution\n   * @return The accrued rewards for the user until the moment\n   */\n  function _updateUserAssetInternal(\n    address user,\n    address asset,\n    uint256 stakedByUser,\n    uint256 totalStaked\n  ) internal returns (uint256) {\n    AssetData storage assetData = assets[asset];\n    uint256 userIndex = assetData.users[user];\n    uint256 accruedRewards = 0;\n\n    uint256 newIndex = _updateAssetStateInternal(asset, assetData, totalStaked);\n\n    if (userIndex != newIndex) {\n      if (stakedByUser != 0) {\n        accruedRewards = _getRewards(stakedByUser, newIndex, userIndex);\n      }\n\n      assetData.users[user] = newIndex;\n      emit UserIndexUpdated(user, asset, newIndex);\n    }\n\n    return accruedRewards;\n  }\n\n  /**\n   * @dev Used by \"frontend\" stake contracts to update the data of an user when claiming rewards from there\n   * @param user The address of the user\n   * @param stakes List of structs of the user data related with his stake\n   * @return The accrued rewards for the user until the moment\n   */\n  function _claimRewards(\n    address user,\n    DistributionTypes.UserStakeInput[] memory stakes\n  ) internal returns (uint256) {\n    uint256 accruedRewards = 0;\n\n    for (uint256 i = 0; i < stakes.length; i++) {\n      accruedRewards =\n        accruedRewards +\n        _updateUserAssetInternal(\n          user,\n          stakes[i].underlyingAsset,\n          stakes[i].stakedByUser,\n          stakes[i].totalStaked\n        );\n    }\n\n    return accruedRewards;\n  }\n\n  /**\n   * @dev Return the accrued rewards for an user over a list of distribution\n   * @param user The address of the user\n   * @param stakes List of structs of the user data related with his stake\n   * @return The accrued rewards for the user until the moment\n   */\n  function _getUnclaimedRewards(\n    address user,\n    DistributionTypes.UserStakeInput[] memory stakes\n  ) internal view returns (uint256) {\n    uint256 accruedRewards = 0;\n\n    for (uint256 i = 0; i < stakes.length; i++) {\n      AssetData storage assetConfig = assets[stakes[i].underlyingAsset];\n      uint256 assetIndex = _getAssetIndex(\n        assetConfig.index,\n        assetConfig.emissionPerSecond,\n        assetConfig.lastUpdateTimestamp,\n        stakes[i].totalStaked\n      );\n\n      accruedRewards =\n        accruedRewards +\n        _getRewards(\n          stakes[i].stakedByUser,\n          assetIndex,\n          assetConfig.users[user]\n        );\n    }\n    return accruedRewards;\n  }\n\n  /**\n   * @dev Internal function for the calculation of user's rewards on a distribution\n   * @param principalUserBalance Amount staked by the user on a distribution\n   * @param reserveIndex Current index of the distribution\n   * @param userIndex Index stored for the user, representation his staking moment\n   * @return The rewards\n   */\n  function _getRewards(\n    uint256 principalUserBalance,\n    uint256 reserveIndex,\n    uint256 userIndex\n  ) internal pure returns (uint256) {\n    return\n      (principalUserBalance * (reserveIndex - userIndex)) /\n      (10**uint256(PRECISION));\n  }\n\n  /**\n   * @dev Calculates the next value of an specific distribution index, with validations\n   * @param currentIndex Current index of the distribution\n   * @param emissionPerSecond Representing the total rewards distributed per second per asset unit, on the distribution\n   * @param lastUpdateTimestamp Last moment this distribution was updated\n   * @param totalBalance of tokens considered for the distribution\n   * @return The new index.\n   */\n  function _getAssetIndex(\n    uint256 currentIndex,\n    uint256 emissionPerSecond,\n    uint128 lastUpdateTimestamp,\n    uint256 totalBalance\n  ) internal view returns (uint256) {\n    if (\n      emissionPerSecond == 0 ||\n      totalBalance == 0 ||\n      lastUpdateTimestamp == block.timestamp ||\n      lastUpdateTimestamp >= DISTRIBUTION_END\n    ) {\n      return currentIndex;\n    }\n\n    uint256 currentTimestamp = block.timestamp > DISTRIBUTION_END\n      ? DISTRIBUTION_END\n      : block.timestamp;\n    uint256 timeDelta = currentTimestamp - lastUpdateTimestamp;\n    return\n      ((emissionPerSecond * timeDelta * (10**uint256(PRECISION))) /\n        totalBalance) + currentIndex;\n  }\n\n  /**\n   * @dev Returns the data of an user on a distribution\n   * @param user Address of the user\n   * @param asset The address of the reference asset of the distribution\n   * @return The new index\n   */\n  function getUserAssetData(address user, address asset)\n    public\n    view\n    returns (uint256)\n  {\n    return assets[asset].users[user];\n  }\n}\n\n\n// File contracts/lib/SafeCast.sol\n\n// Original license: SPDX_License_Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/SafeCast.sol)\n// This file was procedurally generated from scripts/generate/templates/SafeCast.js.\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 uint248 from uint256, reverting on\n     * overflow (when the input is greater than largest uint248).\n     *\n     * Counterpart to Solidity's `uint248` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 248 bits\n     *\n     * _Available since v4.7._\n     */\n    function toUint248(uint256 value) internal pure returns (uint248) {\n        require(value <= type(uint248).max, \"SafeCast: value doesn't fit in 248 bits\");\n        return uint248(value);\n    }\n\n    /**\n     * @dev Returns the downcasted uint240 from uint256, reverting on\n     * overflow (when the input is greater than largest uint240).\n     *\n     * Counterpart to Solidity's `uint240` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 240 bits\n     *\n     * _Available since v4.7._\n     */\n    function toUint240(uint256 value) internal pure returns (uint240) {\n        require(value <= type(uint240).max, \"SafeCast: value doesn't fit in 240 bits\");\n        return uint240(value);\n    }\n\n    /**\n     * @dev Returns the downcasted uint232 from uint256, reverting on\n     * overflow (when the input is greater than largest uint232).\n     *\n     * Counterpart to Solidity's `uint232` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 232 bits\n     *\n     * _Available since v4.7._\n     */\n    function toUint232(uint256 value) internal pure returns (uint232) {\n        require(value <= type(uint232).max, \"SafeCast: value doesn't fit in 232 bits\");\n        return uint232(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     * _Available since v4.2._\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 uint216 from uint256, reverting on\n     * overflow (when the input is greater than largest uint216).\n     *\n     * Counterpart to Solidity's `uint216` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 216 bits\n     *\n     * _Available since v4.7._\n     */\n    function toUint216(uint256 value) internal pure returns (uint216) {\n        require(value <= type(uint216).max, \"SafeCast: value doesn't fit in 216 bits\");\n        return uint216(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     * _Available since v4.7._\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 uint200 from uint256, reverting on\n     * overflow (when the input is greater than largest uint200).\n     *\n     * Counterpart to Solidity's `uint200` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 200 bits\n     *\n     * _Available since v4.7._\n     */\n    function toUint200(uint256 value) internal pure returns (uint200) {\n        require(value <= type(uint200).max, \"SafeCast: value doesn't fit in 200 bits\");\n        return uint200(value);\n    }\n\n    /**\n     * @dev Returns the downcasted uint192 from uint256, reverting on\n     * overflow (when the input is greater than largest uint192).\n     *\n     * Counterpart to Solidity's `uint192` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 192 bits\n     *\n     * _Available since v4.7._\n     */\n    function toUint192(uint256 value) internal pure returns (uint192) {\n        require(value <= type(uint192).max, \"SafeCast: value doesn't fit in 192 bits\");\n        return uint192(value);\n    }\n\n    /**\n     * @dev Returns the downcasted uint184 from uint256, reverting on\n     * overflow (when the input is greater than largest uint184).\n     *\n     * Counterpart to Solidity's `uint184` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 184 bits\n     *\n     * _Available since v4.7._\n     */\n    function toUint184(uint256 value) internal pure returns (uint184) {\n        require(value <= type(uint184).max, \"SafeCast: value doesn't fit in 184 bits\");\n        return uint184(value);\n    }\n\n    /**\n     * @dev Returns the downcasted uint176 from uint256, reverting on\n     * overflow (when the input is greater than largest uint176).\n     *\n     * Counterpart to Solidity's `uint176` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 176 bits\n     *\n     * _Available since v4.7._\n     */\n    function toUint176(uint256 value) internal pure returns (uint176) {\n        require(value <= type(uint176).max, \"SafeCast: value doesn't fit in 176 bits\");\n        return uint176(value);\n    }\n\n    /**\n     * @dev Returns the downcasted uint168 from uint256, reverting on\n     * overflow (when the input is greater than largest uint168).\n     *\n     * Counterpart to Solidity's `uint168` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 168 bits\n     *\n     * _Available since v4.7._\n     */\n    function toUint168(uint256 value) internal pure returns (uint168) {\n        require(value <= type(uint168).max, \"SafeCast: value doesn't fit in 168 bits\");\n        return uint168(value);\n    }\n\n    /**\n     * @dev Returns the downcasted uint160 from uint256, reverting on\n     * overflow (when the input is greater than largest uint160).\n     *\n     * Counterpart to Solidity's `uint160` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 160 bits\n     *\n     * _Available since v4.7._\n     */\n    function toUint160(uint256 value) internal pure returns (uint160) {\n        require(value <= type(uint160).max, \"SafeCast: value doesn't fit in 160 bits\");\n        return uint160(value);\n    }\n\n    /**\n     * @dev Returns the downcasted uint152 from uint256, reverting on\n     * overflow (when the input is greater than largest uint152).\n     *\n     * Counterpart to Solidity's `uint152` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 152 bits\n     *\n     * _Available since v4.7._\n     */\n    function toUint152(uint256 value) internal pure returns (uint152) {\n        require(value <= type(uint152).max, \"SafeCast: value doesn't fit in 152 bits\");\n        return uint152(value);\n    }\n\n    /**\n     * @dev Returns the downcasted uint144 from uint256, reverting on\n     * overflow (when the input is greater than largest uint144).\n     *\n     * Counterpart to Solidity's `uint144` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 144 bits\n     *\n     * _Available since v4.7._\n     */\n    function toUint144(uint256 value) internal pure returns (uint144) {\n        require(value <= type(uint144).max, \"SafeCast: value doesn't fit in 144 bits\");\n        return uint144(value);\n    }\n\n    /**\n     * @dev Returns the downcasted uint136 from uint256, reverting on\n     * overflow (when the input is greater than largest uint136).\n     *\n     * Counterpart to Solidity's `uint136` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 136 bits\n     *\n     * _Available since v4.7._\n     */\n    function toUint136(uint256 value) internal pure returns (uint136) {\n        require(value <= type(uint136).max, \"SafeCast: value doesn't fit in 136 bits\");\n        return uint136(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     * _Available since v2.5._\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 uint120 from uint256, reverting on\n     * overflow (when the input is greater than largest uint120).\n     *\n     * Counterpart to Solidity's `uint120` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 120 bits\n     *\n     * _Available since v4.7._\n     */\n    function toUint120(uint256 value) internal pure returns (uint120) {\n        require(value <= type(uint120).max, \"SafeCast: value doesn't fit in 120 bits\");\n        return uint120(value);\n    }\n\n    /**\n     * @dev Returns the downcasted uint112 from uint256, reverting on\n     * overflow (when the input is greater than largest uint112).\n     *\n     * Counterpart to Solidity's `uint112` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 112 bits\n     *\n     * _Available since v4.7._\n     */\n    function toUint112(uint256 value) internal pure returns (uint112) {\n        require(value <= type(uint112).max, \"SafeCast: value doesn't fit in 112 bits\");\n        return uint112(value);\n    }\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     * _Available since v4.7._\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 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     * _Available since v4.2._\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 uint88 from uint256, reverting on\n     * overflow (when the input is greater than largest uint88).\n     *\n     * Counterpart to Solidity's `uint88` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 88 bits\n     *\n     * _Available since v4.7._\n     */\n    function toUint88(uint256 value) internal pure returns (uint88) {\n        require(value <= type(uint88).max, \"SafeCast: value doesn't fit in 88 bits\");\n        return uint88(value);\n    }\n\n    /**\n     * @dev Returns the downcasted uint80 from uint256, reverting on\n     * overflow (when the input is greater than largest uint80).\n     *\n     * Counterpart to Solidity's `uint80` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 80 bits\n     *\n     * _Available since v4.7._\n     */\n    function toUint80(uint256 value) internal pure returns (uint80) {\n        require(value <= type(uint80).max, \"SafeCast: value doesn't fit in 80 bits\");\n        return uint80(value);\n    }\n\n    /**\n     * @dev Returns the downcasted uint72 from uint256, reverting on\n     * overflow (when the input is greater than largest uint72).\n     *\n     * Counterpart to Solidity's `uint72` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 72 bits\n     *\n     * _Available since v4.7._\n     */\n    function toUint72(uint256 value) internal pure returns (uint72) {\n        require(value <= type(uint72).max, \"SafeCast: value doesn't fit in 72 bits\");\n        return uint72(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     * _Available since v2.5._\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 uint56 from uint256, reverting on\n     * overflow (when the input is greater than largest uint56).\n     *\n     * Counterpart to Solidity's `uint56` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 56 bits\n     *\n     * _Available since v4.7._\n     */\n    function toUint56(uint256 value) internal pure returns (uint56) {\n        require(value <= type(uint56).max, \"SafeCast: value doesn't fit in 56 bits\");\n        return uint56(value);\n    }\n\n    /**\n     * @dev Returns the downcasted uint48 from uint256, reverting on\n     * overflow (when the input is greater than largest uint48).\n     *\n     * Counterpart to Solidity's `uint48` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 48 bits\n     *\n     * _Available since v4.7._\n     */\n    function toUint48(uint256 value) internal pure returns (uint48) {\n        require(value <= type(uint48).max, \"SafeCast: value doesn't fit in 48 bits\");\n        return uint48(value);\n    }\n\n    /**\n     * @dev Returns the downcasted uint40 from uint256, reverting on\n     * overflow (when the input is greater than largest uint40).\n     *\n     * Counterpart to Solidity's `uint40` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 40 bits\n     *\n     * _Available since v4.7._\n     */\n    function toUint40(uint256 value) internal pure returns (uint40) {\n        require(value <= type(uint40).max, \"SafeCast: value doesn't fit in 40 bits\");\n        return uint40(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     * _Available since v2.5._\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 uint24 from uint256, reverting on\n     * overflow (when the input is greater than largest uint24).\n     *\n     * Counterpart to Solidity's `uint24` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 24 bits\n     *\n     * _Available since v4.7._\n     */\n    function toUint24(uint256 value) internal pure returns (uint24) {\n        require(value <= type(uint24).max, \"SafeCast: value doesn't fit in 24 bits\");\n        return uint24(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     * _Available since v2.5._\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     * _Available since v2.5._\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     * _Available since v3.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 int248 from int256, reverting on\n     * overflow (when the input is less than smallest int248 or\n     * greater than largest int248).\n     *\n     * Counterpart to Solidity's `int248` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 248 bits\n     *\n     * _Available since v4.7._\n     */\n    function toInt248(int256 value) internal pure returns (int248 downcasted) {\n        downcasted = int248(value);\n        require(downcasted == value, \"SafeCast: value doesn't fit in 248 bits\");\n    }\n\n    /**\n     * @dev Returns the downcasted int240 from int256, reverting on\n     * overflow (when the input is less than smallest int240 or\n     * greater than largest int240).\n     *\n     * Counterpart to Solidity's `int240` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 240 bits\n     *\n     * _Available since v4.7._\n     */\n    function toInt240(int256 value) internal pure returns (int240 downcasted) {\n        downcasted = int240(value);\n        require(downcasted == value, \"SafeCast: value doesn't fit in 240 bits\");\n    }\n\n    /**\n     * @dev Returns the downcasted int232 from int256, reverting on\n     * overflow (when the input is less than smallest int232 or\n     * greater than largest int232).\n     *\n     * Counterpart to Solidity's `int232` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 232 bits\n     *\n     * _Available since v4.7._\n     */\n    function toInt232(int256 value) internal pure returns (int232 downcasted) {\n        downcasted = int232(value);\n        require(downcasted == value, \"SafeCast: value doesn't fit in 232 bits\");\n    }\n\n    /**\n     * @dev Returns the downcasted int224 from int256, reverting on\n     * overflow (when the input is less than smallest int224 or\n     * greater than largest int224).\n     *\n     * Counterpart to Solidity's `int224` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 224 bits\n     *\n     * _Available since v4.7._\n     */\n    function toInt224(int256 value) internal pure returns (int224 downcasted) {\n        downcasted = int224(value);\n        require(downcasted == value, \"SafeCast: value doesn't fit in 224 bits\");\n    }\n\n    /**\n     * @dev Returns the downcasted int216 from int256, reverting on\n     * overflow (when the input is less than smallest int216 or\n     * greater than largest int216).\n     *\n     * Counterpart to Solidity's `int216` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 216 bits\n     *\n     * _Available since v4.7._\n     */\n    function toInt216(int256 value) internal pure returns (int216 downcasted) {\n        downcasted = int216(value);\n        require(downcasted == value, \"SafeCast: value doesn't fit in 216 bits\");\n    }\n\n    /**\n     * @dev Returns the downcasted int208 from int256, reverting on\n     * overflow (when the input is less than smallest int208 or\n     * greater than largest int208).\n     *\n     * Counterpart to Solidity's `int208` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 208 bits\n     *\n     * _Available since v4.7._\n     */\n    function toInt208(int256 value) internal pure returns (int208 downcasted) {\n        downcasted = int208(value);\n        require(downcasted == value, \"SafeCast: value doesn't fit in 208 bits\");\n    }\n\n    /**\n     * @dev Returns the downcasted int200 from int256, reverting on\n     * overflow (when the input is less than smallest int200 or\n     * greater than largest int200).\n     *\n     * Counterpart to Solidity's `int200` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 200 bits\n     *\n     * _Available since v4.7._\n     */\n    function toInt200(int256 value) internal pure returns (int200 downcasted) {\n        downcasted = int200(value);\n        require(downcasted == value, \"SafeCast: value doesn't fit in 200 bits\");\n    }\n\n    /**\n     * @dev Returns the downcasted int192 from int256, reverting on\n     * overflow (when the input is less than smallest int192 or\n     * greater than largest int192).\n     *\n     * Counterpart to Solidity's `int192` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 192 bits\n     *\n     * _Available since v4.7._\n     */\n    function toInt192(int256 value) internal pure returns (int192 downcasted) {\n        downcasted = int192(value);\n        require(downcasted == value, \"SafeCast: value doesn't fit in 192 bits\");\n    }\n\n    /**\n     * @dev Returns the downcasted int184 from int256, reverting on\n     * overflow (when the input is less than smallest int184 or\n     * greater than largest int184).\n     *\n     * Counterpart to Solidity's `int184` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 184 bits\n     *\n     * _Available since v4.7._\n     */\n    function toInt184(int256 value) internal pure returns (int184 downcasted) {\n        downcasted = int184(value);\n        require(downcasted == value, \"SafeCast: value doesn't fit in 184 bits\");\n    }\n\n    /**\n     * @dev Returns the downcasted int176 from int256, reverting on\n     * overflow (when the input is less than smallest int176 or\n     * greater than largest int176).\n     *\n     * Counterpart to Solidity's `int176` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 176 bits\n     *\n     * _Available since v4.7._\n     */\n    function toInt176(int256 value) internal pure returns (int176 downcasted) {\n        downcasted = int176(value);\n        require(downcasted == value, \"SafeCast: value doesn't fit in 176 bits\");\n    }\n\n    /**\n     * @dev Returns the downcasted int168 from int256, reverting on\n     * overflow (when the input is less than smallest int168 or\n     * greater than largest int168).\n     *\n     * Counterpart to Solidity's `int168` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 168 bits\n     *\n     * _Available since v4.7._\n     */\n    function toInt168(int256 value) internal pure returns (int168 downcasted) {\n        downcasted = int168(value);\n        require(downcasted == value, \"SafeCast: value doesn't fit in 168 bits\");\n    }\n\n    /**\n     * @dev Returns the downcasted int160 from int256, reverting on\n     * overflow (when the input is less than smallest int160 or\n     * greater than largest int160).\n     *\n     * Counterpart to Solidity's `int160` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 160 bits\n     *\n     * _Available since v4.7._\n     */\n    function toInt160(int256 value) internal pure returns (int160 downcasted) {\n        downcasted = int160(value);\n        require(downcasted == value, \"SafeCast: value doesn't fit in 160 bits\");\n    }\n\n    /**\n     * @dev Returns the downcasted int152 from int256, reverting on\n     * overflow (when the input is less than smallest int152 or\n     * greater than largest int152).\n     *\n     * Counterpart to Solidity's `int152` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 152 bits\n     *\n     * _Available since v4.7._\n     */\n    function toInt152(int256 value) internal pure returns (int152 downcasted) {\n        downcasted = int152(value);\n        require(downcasted == value, \"SafeCast: value doesn't fit in 152 bits\");\n    }\n\n    /**\n     * @dev Returns the downcasted int144 from int256, reverting on\n     * overflow (when the input is less than smallest int144 or\n     * greater than largest int144).\n     *\n     * Counterpart to Solidity's `int144` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 144 bits\n     *\n     * _Available since v4.7._\n     */\n    function toInt144(int256 value) internal pure returns (int144 downcasted) {\n        downcasted = int144(value);\n        require(downcasted == value, \"SafeCast: value doesn't fit in 144 bits\");\n    }\n\n    /**\n     * @dev Returns the downcasted int136 from int256, reverting on\n     * overflow (when the input is less than smallest int136 or\n     * greater than largest int136).\n     *\n     * Counterpart to Solidity's `int136` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 136 bits\n     *\n     * _Available since v4.7._\n     */\n    function toInt136(int256 value) internal pure returns (int136 downcasted) {\n        downcasted = int136(value);\n        require(downcasted == value, \"SafeCast: value doesn't fit in 136 bits\");\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 downcasted) {\n        downcasted = int128(value);\n        require(downcasted == value, \"SafeCast: value doesn't fit in 128 bits\");\n    }\n\n    /**\n     * @dev Returns the downcasted int120 from int256, reverting on\n     * overflow (when the input is less than smallest int120 or\n     * greater than largest int120).\n     *\n     * Counterpart to Solidity's `int120` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 120 bits\n     *\n     * _Available since v4.7._\n     */\n    function toInt120(int256 value) internal pure returns (int120 downcasted) {\n        downcasted = int120(value);\n        require(downcasted == value, \"SafeCast: value doesn't fit in 120 bits\");\n    }\n\n    /**\n     * @dev Returns the downcasted int112 from int256, reverting on\n     * overflow (when the input is less than smallest int112 or\n     * greater than largest int112).\n     *\n     * Counterpart to Solidity's `int112` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 112 bits\n     *\n     * _Available since v4.7._\n     */\n    function toInt112(int256 value) internal pure returns (int112 downcasted) {\n        downcasted = int112(value);\n        require(downcasted == value, \"SafeCast: value doesn't fit in 112 bits\");\n    }\n\n    /**\n     * @dev Returns the downcasted int104 from int256, reverting on\n     * overflow (when the input is less than smallest int104 or\n     * greater than largest int104).\n     *\n     * Counterpart to Solidity's `int104` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 104 bits\n     *\n     * _Available since v4.7._\n     */\n    function toInt104(int256 value) internal pure returns (int104 downcasted) {\n        downcasted = int104(value);\n        require(downcasted == value, \"SafeCast: value doesn't fit in 104 bits\");\n    }\n\n    /**\n     * @dev Returns the downcasted int96 from int256, reverting on\n     * overflow (when the input is less than smallest int96 or\n     * greater than largest int96).\n     *\n     * Counterpart to Solidity's `int96` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 96 bits\n     *\n     * _Available since v4.7._\n     */\n    function toInt96(int256 value) internal pure returns (int96 downcasted) {\n        downcasted = int96(value);\n        require(downcasted == value, \"SafeCast: value doesn't fit in 96 bits\");\n    }\n\n    /**\n     * @dev Returns the downcasted int88 from int256, reverting on\n     * overflow (when the input is less than smallest int88 or\n     * greater than largest int88).\n     *\n     * Counterpart to Solidity's `int88` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 88 bits\n     *\n     * _Available since v4.7._\n     */\n    function toInt88(int256 value) internal pure returns (int88 downcasted) {\n        downcasted = int88(value);\n        require(downcasted == value, \"SafeCast: value doesn't fit in 88 bits\");\n    }\n\n    /**\n     * @dev Returns the downcasted int80 from int256, reverting on\n     * overflow (when the input is less than smallest int80 or\n     * greater than largest int80).\n     *\n     * Counterpart to Solidity's `int80` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 80 bits\n     *\n     * _Available since v4.7._\n     */\n    function toInt80(int256 value) internal pure returns (int80 downcasted) {\n        downcasted = int80(value);\n        require(downcasted == value, \"SafeCast: value doesn't fit in 80 bits\");\n    }\n\n    /**\n     * @dev Returns the downcasted int72 from int256, reverting on\n     * overflow (when the input is less than smallest int72 or\n     * greater than largest int72).\n     *\n     * Counterpart to Solidity's `int72` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 72 bits\n     *\n     * _Available since v4.7._\n     */\n    function toInt72(int256 value) internal pure returns (int72 downcasted) {\n        downcasted = int72(value);\n        require(downcasted == value, \"SafeCast: value doesn't fit in 72 bits\");\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 downcasted) {\n        downcasted = int64(value);\n        require(downcasted == value, \"SafeCast: value doesn't fit in 64 bits\");\n    }\n\n    /**\n     * @dev Returns the downcasted int56 from int256, reverting on\n     * overflow (when the input is less than smallest int56 or\n     * greater than largest int56).\n     *\n     * Counterpart to Solidity's `int56` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 56 bits\n     *\n     * _Available since v4.7._\n     */\n    function toInt56(int256 value) internal pure returns (int56 downcasted) {\n        downcasted = int56(value);\n        require(downcasted == value, \"SafeCast: value doesn't fit in 56 bits\");\n    }\n\n    /**\n     * @dev Returns the downcasted int48 from int256, reverting on\n     * overflow (when the input is less than smallest int48 or\n     * greater than largest int48).\n     *\n     * Counterpart to Solidity's `int48` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 48 bits\n     *\n     * _Available since v4.7._\n     */\n    function toInt48(int256 value) internal pure returns (int48 downcasted) {\n        downcasted = int48(value);\n        require(downcasted == value, \"SafeCast: value doesn't fit in 48 bits\");\n    }\n\n    /**\n     * @dev Returns the downcasted int40 from int256, reverting on\n     * overflow (when the input is less than smallest int40 or\n     * greater than largest int40).\n     *\n     * Counterpart to Solidity's `int40` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 40 bits\n     *\n     * _Available since v4.7._\n     */\n    function toInt40(int256 value) internal pure returns (int40 downcasted) {\n        downcasted = int40(value);\n        require(downcasted == value, \"SafeCast: value doesn't fit in 40 bits\");\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 downcasted) {\n        downcasted = int32(value);\n        require(downcasted == value, \"SafeCast: value doesn't fit in 32 bits\");\n    }\n\n    /**\n     * @dev Returns the downcasted int24 from int256, reverting on\n     * overflow (when the input is less than smallest int24 or\n     * greater than largest int24).\n     *\n     * Counterpart to Solidity's `int24` operator.\n     *\n     * Requirements:\n     *\n     * - input must fit into 24 bits\n     *\n     * _Available since v4.7._\n     */\n    function toInt24(int256 value) internal pure returns (int24 downcasted) {\n        downcasted = int24(value);\n        require(downcasted == value, \"SafeCast: value doesn't fit in 24 bits\");\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 downcasted) {\n        downcasted = int16(value);\n        require(downcasted == value, \"SafeCast: value doesn't fit in 16 bits\");\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 downcasted) {\n        downcasted = int8(value);\n        require(downcasted == value, \"SafeCast: value doesn't fit in 8 bits\");\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     * _Available since v3.0._\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\n\n// File contracts/lib/PercentageMath.sol\n\n// Original license: SPDX_License_Identifier: agpl-3.0\npragma solidity ^0.8.0;\n\n/**\n * @title PercentageMath library\n * @author Aave\n * @notice Provides functions to perform percentage calculations\n * @dev Percentages are defined by default with 2 decimals of precision (100.00). The precision is indicated by PERCENTAGE_FACTOR\n * @dev Operations are rounded half up\n **/\n\nlibrary PercentageMath {\n    uint256 constant PERCENTAGE_FACTOR = 1e4; //percentage plus two decimals\n    uint256 constant HALF_PERCENT = PERCENTAGE_FACTOR / 2;\n\n    /**\n     * @dev Executes a percentage multiplication\n     * @param value The value of which the percentage needs to be calculated\n     * @param percentage The percentage of the value to be calculated\n     * @return The percentage of value\n     **/\n    function percentMul(uint256 value, uint256 percentage)\n        internal\n        pure\n        returns (uint256)\n    {\n        if (value == 0 || percentage == 0) {\n            return 0;\n        }\n\n        require(\n            value <= (type(uint256).max) / percentage,\n            \"MATH_MULTIPLICATION_OVERFLOW\"\n        );\n\n        return (value * percentage) / PERCENTAGE_FACTOR;\n    }\n\n    /**\n     * @dev Executes a percentage division\n     * @param value The value of which the percentage needs to be calculated\n     * @param percentage The percentage of the value to be calculated\n     * @return The value divided the percentage\n     **/\n    function percentDiv(uint256 value, uint256 percentage)\n        internal\n        pure\n        returns (uint256)\n    {\n        require(percentage != 0, \"MATH_DIVISION_BY_ZERO\");\n\n        require(\n            value <= type(uint256).max / PERCENTAGE_FACTOR,\n            \"MATH_MULTIPLICATION_OVERFLOW\"\n        );\n\n        return (value * PERCENTAGE_FACTOR) / percentage;\n    }\n}\n\n\n// File contracts/utils/VersionedInitializable.sol\n\n// Original license: SPDX_License_Identifier: agpl-3.0\npragma solidity ^0.8.0;\n\n/**\n * @title VersionedInitializable\n *\n * @dev Helper contract to support initializer functions. To use it, replace\n * the constructor with a function that has the `initializer` modifier.\n * WARNING: Unlike constructors, initializer functions must be manually\n * invoked. This applies both to deploying an Initializable contract, as well\n * as extending an Initializable contract via inheritance.\n * WARNING: When used with inheritance, manual care must be taken to not invoke\n * a parent initializer twice, or ensure that all initializers are idempotent,\n * because this is not dealt with automatically as with constructors.\n *\n * @author Aave, inspired by the OpenZeppelin Initializable contract\n */\nabstract contract VersionedInitializable {\n  /**\n   * @dev Indicates that the contract has been initialized.\n   */\n  uint256 internal lastInitializedRevision = 0;\n\n  /**\n   * @dev Modifier to use in the initializer function of a contract.\n   */\n  modifier initializer() {\n    uint256 revision = getRevision();\n    require(\n      revision > lastInitializedRevision,\n      'Contract instance has already been initialized'\n    );\n\n    lastInitializedRevision = revision;\n\n    _;\n  }\n\n  /// @dev returns the revision number of the contract.\n  /// Needs to be defined in the inherited class as a constant.\n  function getRevision() internal pure virtual returns (uint256);\n\n  // Reserved storage space to allow for layout changes in the future.\n  uint256[50] private ______gap;\n}\n\n\n// File contracts/StakedTokenV2.sol\n\n// Original license: SPDX_License_Identifier: agpl-3.0\npragma solidity ^0.8.0;\n\n\n\n\n\n\n/**\n * @title StakedTokenV2\n * @notice Contract to stake Aave token, tokenize the position and get rewards, inheriting from a distribution manager contract\n * @author BGD Labs\n */\nabstract contract StakedTokenV2 is\n  IStakedTokenV2,\n  GovernancePowerWithSnapshot,\n  VersionedInitializable,\n  PegasysDistributionManager\n{\n  using SafeERC20 for IERC20;\n\n  IERC20 public immutable STAKED_TOKEN;\n  IERC20 public immutable REWARD_TOKEN;\n\n  /// @notice Seconds available to redeem once the cooldown period is fulfilled\n  uint256 public immutable UNSTAKE_WINDOW;\n\n  /// @notice Address to pull from the rewards, needs to have approved this contract\n  address public immutable REWARDS_VAULT;\n\n  mapping(address => uint256) public stakerRewardsToClaim;\n  mapping(address => CooldownSnapshot) public stakersCooldowns;\n\n  /// @dev End of Storage layout from StakedToken v1\n\n  /// @dev To see the voting mappings, go to GovernancePowerWithSnapshot.sol\n  mapping(address => address) internal _votingDelegates;\n\n  mapping(address => mapping(uint256 => Snapshot))\n    internal _propositionPowerSnapshots;\n  mapping(address => uint256) internal _propositionPowerSnapshotsCounts;\n  mapping(address => address) internal _propositionPowerDelegates;\n\n  bytes32 public DOMAIN_SEPARATOR;\n  bytes public constant EIP712_REVISION = bytes('1');\n  bytes32 internal constant EIP712_DOMAIN =\n    keccak256(\n      'EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)'\n    );\n  bytes32 public constant PERMIT_TYPEHASH =\n    keccak256(\n      'Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)'\n    );\n\n  /// @dev owner => next valid nonce to submit with permit()\n  mapping(address => uint256) public _nonces;\n\n  constructor(\n    IERC20 stakedToken,\n    IERC20 rewardToken,\n    uint256 unstakeWindow,\n    address rewardsVault,\n    address emissionManager,\n    uint128 distributionDuration\n  ) ERC20() PegasysDistributionManager(emissionManager, distributionDuration) {\n    STAKED_TOKEN = stakedToken;\n    REWARD_TOKEN = rewardToken;\n    UNSTAKE_WINDOW = unstakeWindow;\n    REWARDS_VAULT = rewardsVault;\n  }\n\n  /// @inheritdoc IStakedTokenV2\n  function stake(address onBehalfOf, uint256 amount) external virtual override;\n\n  /// @inheritdoc IStakedTokenV2\n  function redeem(address to, uint256 amount) external virtual override;\n\n  /// @inheritdoc IStakedTokenV2\n  function cooldown() external virtual override;\n\n  /// @inheritdoc IStakedTokenV2\n  function claimRewards(address to, uint256 amount) external virtual override;\n\n  /// @inheritdoc IStakedTokenV2\n  function getTotalRewardsBalance(address staker)\n    external\n    view\n    returns (uint256)\n  {\n    DistributionTypes.UserStakeInput[]\n      memory userStakeInputs = new DistributionTypes.UserStakeInput[](1);\n    userStakeInputs[0] = DistributionTypes.UserStakeInput({\n      underlyingAsset: address(this),\n      stakedByUser: balanceOf(staker),\n      totalStaked: totalSupply()\n    });\n    return\n      stakerRewardsToClaim[staker] +\n      _getUnclaimedRewards(staker, userStakeInputs);\n  }\n\n  /// @inheritdoc IStakedTokenV2\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    require(owner != address(0), 'INVALID_OWNER');\n    //solium-disable-next-line\n    require(block.timestamp <= deadline, 'INVALID_EXPIRATION');\n    uint256 currentValidNonce = _nonces[owner];\n    bytes32 digest = keccak256(\n      abi.encodePacked(\n        '\\x19\\x01',\n        DOMAIN_SEPARATOR,\n        keccak256(\n          abi.encode(\n            PERMIT_TYPEHASH,\n            owner,\n            spender,\n            value,\n            currentValidNonce,\n            deadline\n          )\n        )\n      )\n    );\n\n    require(owner == ecrecover(digest, v, r, s), 'INVALID_SIGNATURE');\n    unchecked {\n      _nonces[owner] = currentValidNonce + 1;\n    }\n    _approve(owner, spender, value);\n  }\n\n  /**\n   * @dev Delegates power from signatory to `delegatee`\n   * @param delegatee The address to delegate votes to\n   * @param delegationType the type of delegation (VOTING_POWER, PROPOSITION_POWER)\n   * @param nonce The contract state required to match the signature\n   * @param expiry The time at which to expire the signature\n   * @param v The recovery byte of the signature\n   * @param r Half of the ECDSA signature pair\n   * @param s Half of the ECDSA signature pair\n   */\n  function delegateByTypeBySig(\n    address delegatee,\n    DelegationType delegationType,\n    uint256 nonce,\n    uint256 expiry,\n    uint8 v,\n    bytes32 r,\n    bytes32 s\n  ) public {\n    bytes32 structHash = keccak256(\n      abi.encode(\n        DELEGATE_BY_TYPE_TYPEHASH,\n        delegatee,\n        uint256(delegationType),\n        nonce,\n        expiry\n      )\n    );\n    bytes32 digest = keccak256(\n      abi.encodePacked('\\x19\\x01', DOMAIN_SEPARATOR, structHash)\n    );\n    address signatory = ecrecover(digest, v, r, s);\n    require(signatory != address(0), 'INVALID_SIGNATURE');\n    require(nonce == _nonces[signatory]++, 'INVALID_NONCE');\n    require(block.timestamp <= expiry, 'INVALID_EXPIRATION');\n    _delegateByType(signatory, delegatee, delegationType);\n  }\n\n  /**\n   * @dev Delegates power from signatory to `delegatee`\n   * @param delegatee The address to delegate votes to\n   * @param nonce The contract state required to match the signature\n   * @param expiry The time at which to expire the signature\n   * @param v The recovery byte of the signature\n   * @param r Half of the ECDSA signature pair\n   * @param s Half of the ECDSA signature pair\n   */\n  function delegateBySig(\n    address delegatee,\n    uint256 nonce,\n    uint256 expiry,\n    uint8 v,\n    bytes32 r,\n    bytes32 s\n  ) public {\n    bytes32 structHash = keccak256(\n      abi.encode(DELEGATE_TYPEHASH, delegatee, nonce, expiry)\n    );\n    bytes32 digest = keccak256(\n      abi.encodePacked('\\x19\\x01', DOMAIN_SEPARATOR, structHash)\n    );\n    address signatory = ecrecover(digest, v, r, s);\n    require(signatory != address(0), 'INVALID_SIGNATURE');\n    require(nonce == _nonces[signatory]++, 'INVALID_NONCE');\n    require(block.timestamp <= expiry, 'INVALID_EXPIRATION');\n    _delegateByType(signatory, delegatee, DelegationType.VOTING_POWER);\n    _delegateByType(signatory, delegatee, DelegationType.PROPOSITION_POWER);\n  }\n\n  /**\n   * @dev Updates the user state related with his accrued rewards\n   * @param user Address of the user\n   * @param userBalance The current balance of the user\n   * @param updateStorage Boolean flag used to update or not the stakerRewardsToClaim of the user\n   * @return The unclaimed rewards that were added to the total accrued\n   */\n  function _updateCurrentUnclaimedRewards(\n    address user,\n    uint256 userBalance,\n    bool updateStorage\n  ) internal returns (uint256) {\n    uint256 accruedRewards = _updateUserAssetInternal(\n      user,\n      address(this),\n      userBalance,\n      totalSupply()\n    );\n    uint256 unclaimedRewards = stakerRewardsToClaim[user] + accruedRewards;\n\n    if (accruedRewards != 0) {\n      if (updateStorage) {\n        stakerRewardsToClaim[user] = unclaimedRewards;\n      }\n      emit RewardsAccrued(user, accruedRewards);\n    }\n\n    return unclaimedRewards;\n  }\n\n  /**\n   * @dev returns relevant storage slots for a DelegationType\n   * @param delegationType the requested DelegationType\n   * @return the relevant storage\n   */\n  function _getDelegationDataByType(DelegationType delegationType)\n    internal\n    view\n    override\n    returns (\n      mapping(address => mapping(uint256 => Snapshot)) storage, //snapshots\n      mapping(address => uint256) storage, //snapshots count\n      mapping(address => address) storage //delegatees list\n    )\n  {\n    if (delegationType == DelegationType.VOTING_POWER) {\n      return (_votingSnapshots, _votingSnapshotsCounts, _votingDelegates);\n    } else {\n      return (\n        _propositionPowerSnapshots,\n        _propositionPowerSnapshotsCounts,\n        _propositionPowerDelegates\n      );\n    }\n  }\n}\n\n\n// File contracts/utils/RoleManager.sol\n\n// Original license: SPDX_License_Identifier: agpl-3.0\npragma solidity ^0.8.0;\n\n/**\n * @title RoleManager\n * @notice Generic role manager to manage slashing and cooldown admin in StakedAaveV3.\n *         It implements a claim admin role pattern to safely migrate between different admin addresses\n * @author Aave\n **/\ncontract RoleManager {\n  struct InitAdmin {\n    uint256 role;\n    address admin;\n  }\n\n  mapping(uint256 => address) private _admins;\n  mapping(uint256 => address) private _pendingAdmins;\n\n  event PendingAdminChanged(address indexed newPendingAdmin, uint256 role);\n  event RoleClaimed(address indexed newAdmin, uint256 role);\n\n  modifier onlyRoleAdmin(uint256 role) {\n    require(_admins[role] == msg.sender, 'CALLER_NOT_ROLE_ADMIN');\n    _;\n  }\n\n  modifier onlyPendingRoleAdmin(uint256 role) {\n    require(\n      _pendingAdmins[role] == msg.sender,\n      'CALLER_NOT_PENDING_ROLE_ADMIN'\n    );\n    _;\n  }\n\n  /**\n   * @dev returns the admin associated with the specific role\n   * @param role the role associated with the admin being returned\n   **/\n  function getAdmin(uint256 role) public view returns (address) {\n    return _admins[role];\n  }\n\n  /**\n   * @dev returns the pending admin associated with the specific role\n   * @param role the role associated with the pending admin being returned\n   **/\n  function getPendingAdmin(uint256 role) public view returns (address) {\n    return _pendingAdmins[role];\n  }\n\n  /**\n   * @dev sets the pending admin for a specific role\n   * @param role the role associated with the new pending admin being set\n   * @param newPendingAdmin the address of the new pending admin\n   **/\n  function setPendingAdmin(uint256 role, address newPendingAdmin)\n    public\n    onlyRoleAdmin(role)\n  {\n    _pendingAdmins[role] = newPendingAdmin;\n    emit PendingAdminChanged(newPendingAdmin, role);\n  }\n\n  /**\n   * @dev allows the caller to become a specific role admin\n   * @param role the role associated with the admin claiming the new role\n   **/\n  function claimRoleAdmin(uint256 role) external onlyPendingRoleAdmin(role) {\n    _admins[role] = msg.sender;\n    _pendingAdmins[role] = address(0);\n    emit RoleClaimed(msg.sender, role);\n  }\n\n  function _initAdmins(InitAdmin[] memory initAdmins) internal {\n    for (uint256 i = 0; i < initAdmins.length; i++) {\n      require(\n        _admins[initAdmins[i].role] == address(0) &&\n          initAdmins[i].admin != address(0),\n        'ADMIN_CANNOT_BE_INITIALIZED'\n      );\n      _admins[initAdmins[i].role] = initAdmins[i].admin;\n      emit RoleClaimed(initAdmins[i].admin, initAdmins[i].role);\n    }\n  }\n}\n\n\n// File contracts/StakedTokenV3.sol\n\n// Original license: SPDX_License_Identifier: agpl-3.0\npragma solidity ^0.8.0;\n\n\n\n\n\n\n\n\n\n\n\n/**\n * @title StakedTokenV3\n * @notice Contract to stake Aave token, tokenize the position and get rewards, inheriting from a distribution manager contract\n * @author BGD Labs\n */\ncontract StakedTokenV3 is\n  StakedTokenV2,\n  IStakedTokenV3,\n  RoleManager,\n  IPegasysDistributionManager\n{\n  using SafeERC20 for IERC20;\n  using PercentageMath for uint256;\n  using SafeCast for uint256;\n\n  uint256 public constant SLASH_ADMIN_ROLE = 0;\n  uint256 public constant COOLDOWN_ADMIN_ROLE = 1;\n  uint256 public constant CLAIM_HELPER_ROLE = 2;\n  uint216 public constant INITIAL_EXCHANGE_RATE = 1e18;\n  uint256 public constant EXCHANGE_RATE_UNIT = 1e18;\n\n  /// @notice lower bound to prevent spam & avoid exchangeRate issues\n  // as returnFunds can be called permissionless an attacker could spam returnFunds(1) to produce exchangeRate snapshots making voting expensive\n  uint256 public immutable LOWER_BOUND;\n\n  // Reserved storage space to allow for layout changes in the future.\n  uint256[8] private ______gap;\n  /// @notice Seconds between starting cooldown and being able to withdraw\n  uint256 internal _cooldownSeconds;\n  /// @notice The maximum amount of funds that can be slashed at any given time\n  uint256 internal _maxSlashablePercentage;\n  /// @notice Mirror of latest snapshot value for cheaper access\n  uint216 internal _currentExchangeRate;\n  /// @notice Flag determining if there's an ongoing slashing event that needs to be settled\n  bool public inPostSlashingPeriod;\n\n  modifier onlySlashingAdmin() {\n    require(\n      msg.sender == getAdmin(SLASH_ADMIN_ROLE),\n      'CALLER_NOT_SLASHING_ADMIN'\n    );\n    _;\n  }\n\n  modifier onlyCooldownAdmin() {\n    require(\n      msg.sender == getAdmin(COOLDOWN_ADMIN_ROLE),\n      'CALLER_NOT_COOLDOWN_ADMIN'\n    );\n    _;\n  }\n\n  modifier onlyClaimHelper() {\n    require(\n      msg.sender == getAdmin(CLAIM_HELPER_ROLE),\n      'CALLER_NOT_CLAIM_HELPER'\n    );\n    _;\n  }\n\n  constructor(\n    IERC20 stakedToken,\n    IERC20 rewardToken,\n    uint256 unstakeWindow,\n    address rewardsVault,\n    address emissionManager,\n    uint128 distributionDuration\n  )\n    StakedTokenV2(\n      stakedToken,\n      rewardToken,\n      unstakeWindow,\n      rewardsVault,\n      emissionManager,\n      distributionDuration\n    )\n  {\n    // brick initialize\n    lastInitializedRevision = REVISION();\n    uint256 decimals = IERC20Metadata(address(stakedToken)).decimals();\n    LOWER_BOUND = 10**decimals;\n  }\n\n  /**\n   * @dev returns the revision of the implementation contract\n   * @return The revision\n   */\n  function REVISION() public pure virtual returns (uint256) {\n    return 3;\n  }\n\n  /**\n   * @dev returns the revision of the implementation contract\n   * @return The revision\n   */\n  function getRevision() internal pure virtual override returns (uint256) {\n    return REVISION();\n  }\n\n  /**\n   * @dev Called by the proxy contract\n   */\n  function initialize(\n    address slashingAdmin,\n    address cooldownPauseAdmin,\n    address claimHelper,\n    uint256 maxSlashablePercentage,\n    uint256 cooldownSeconds\n  ) external virtual initializer {\n    _initialize(\n      slashingAdmin,\n      cooldownPauseAdmin,\n      claimHelper,\n      maxSlashablePercentage,\n      cooldownSeconds\n    );\n  }\n\n  function _initialize(\n    address slashingAdmin,\n    address cooldownPauseAdmin,\n    address claimHelper,\n    uint256 maxSlashablePercentage,\n    uint256 cooldownSeconds\n  ) internal {\n    InitAdmin[] memory initAdmins = new InitAdmin[](3);\n    initAdmins[0] = InitAdmin(SLASH_ADMIN_ROLE, slashingAdmin);\n    initAdmins[1] = InitAdmin(COOLDOWN_ADMIN_ROLE, cooldownPauseAdmin);\n    initAdmins[2] = InitAdmin(CLAIM_HELPER_ROLE, claimHelper);\n\n    _initAdmins(initAdmins);\n\n    _setMaxSlashablePercentage(maxSlashablePercentage);\n    _setCooldownSeconds(cooldownSeconds);\n    _updateExchangeRate(INITIAL_EXCHANGE_RATE);\n  }\n\n  /// @inheritdoc IPegasysDistributionManager\n  function configureAssets(\n    DistributionTypes.AssetConfigInput[] memory assetsConfigInput\n  ) external override {\n    require(msg.sender == EMISSION_MANAGER, 'ONLY_EMISSION_MANAGER');\n\n    for (uint256 i = 0; i < assetsConfigInput.length; i++) {\n      assetsConfigInput[i].totalStaked = totalSupply();\n    }\n\n    _configureAssets(assetsConfigInput);\n  }\n\n  /// @inheritdoc IStakedTokenV3\n  function previewStake(uint256 assets) public view returns (uint256) {\n    return (assets * _currentExchangeRate) / EXCHANGE_RATE_UNIT;\n  }\n\n  /// @inheritdoc IStakedTokenV2\n  function stake(address to, uint256 amount)\n    external\n    override(IStakedTokenV2, StakedTokenV2)\n  {\n    _stake(msg.sender, to, amount);\n  }\n\n  /// @inheritdoc IStakedTokenV2\n  function cooldown() external override(IStakedTokenV2, StakedTokenV2) {\n    _cooldown(msg.sender);\n  }\n\n  /// @inheritdoc IStakedTokenV3\n  function cooldownOnBehalfOf(address from) external override onlyClaimHelper {\n    _cooldown(from);\n  }\n\n  function _cooldown(address from) internal {\n    uint256 amount = balanceOf(from);\n    require(amount != 0, 'INVALID_BALANCE_ON_COOLDOWN');\n    stakersCooldowns[from] = CooldownSnapshot({\n      timestamp: uint40(block.timestamp),\n      amount: uint216(amount)\n    });\n\n    emit Cooldown(from, amount);\n  }\n\n  /// @inheritdoc IStakedTokenV2\n  function redeem(address to, uint256 amount)\n    external\n    override(IStakedTokenV2, StakedTokenV2)\n  {\n    _redeem(msg.sender, to, amount);\n  }\n\n  /// @inheritdoc IStakedTokenV3\n  function redeemOnBehalf(\n    address from,\n    address to,\n    uint256 amount\n  ) external override onlyClaimHelper {\n    _redeem(from, to, amount);\n  }\n\n  /// @inheritdoc IStakedTokenV2\n  function claimRewards(address to, uint256 amount)\n    external\n    override(IStakedTokenV2, StakedTokenV2)\n  {\n    _claimRewards(msg.sender, to, amount);\n  }\n\n  /// @inheritdoc IStakedTokenV3\n  function claimRewardsOnBehalf(\n    address from,\n    address to,\n    uint256 amount\n  ) external override onlyClaimHelper returns (uint256) {\n    return _claimRewards(from, to, amount);\n  }\n\n  /// @inheritdoc IStakedTokenV3\n  function claimRewardsAndRedeem(\n    address to,\n    uint256 claimAmount,\n    uint256 redeemAmount\n  ) external override {\n    _claimRewards(msg.sender, to, claimAmount);\n    _redeem(msg.sender, to, redeemAmount);\n  }\n\n  /// @inheritdoc IStakedTokenV3\n  function claimRewardsAndRedeemOnBehalf(\n    address from,\n    address to,\n    uint256 claimAmount,\n    uint256 redeemAmount\n  ) external override onlyClaimHelper {\n    _claimRewards(from, to, claimAmount);\n    _redeem(from, to, redeemAmount);\n  }\n\n  /// @inheritdoc IStakedTokenV3\n  function getExchangeRate() public view override returns (uint216) {\n    return _currentExchangeRate;\n  }\n\n  /// @inheritdoc IStakedTokenV3\n  function previewRedeem(uint256 shares)\n    public\n    view\n    override\n    returns (uint256)\n  {\n    return (EXCHANGE_RATE_UNIT * shares) / _currentExchangeRate;\n  }\n\n  /// @inheritdoc IStakedTokenV3\n  function slash(address destination, uint256 amount)\n    external\n    override\n    onlySlashingAdmin\n    returns (uint256)\n  {\n    require(!inPostSlashingPeriod, 'PREVIOUS_SLASHING_NOT_SETTLED');\n    require(amount > 0, 'ZERO_AMOUNT');\n    uint256 currentShares = totalSupply();\n    uint256 balance = previewRedeem(currentShares);\n\n    uint256 maxSlashable = balance.percentMul(_maxSlashablePercentage);\n\n    if (amount > maxSlashable) {\n      amount = maxSlashable;\n    }\n    require(balance - amount >= LOWER_BOUND, 'REMAINING_LT_MINIMUM');\n\n    inPostSlashingPeriod = true;\n    _updateExchangeRate(_getExchangeRate(balance - amount, currentShares));\n\n    STAKED_TOKEN.safeTransfer(destination, amount);\n\n    emit Slashed(destination, amount);\n    return amount;\n  }\n\n  /// @inheritdoc IStakedTokenV3\n  function returnFunds(uint256 amount) external override {\n    require(amount >= LOWER_BOUND, 'AMOUNT_LT_MINIMUM');\n    uint256 currentShares = totalSupply();\n    require(currentShares >= LOWER_BOUND, 'SHARES_LT_MINIMUM');\n    uint256 assets = previewRedeem(currentShares);\n    _updateExchangeRate(_getExchangeRate(assets + amount, currentShares));\n\n    STAKED_TOKEN.safeTransferFrom(msg.sender, address(this), amount);\n    emit FundsReturned(amount);\n  }\n\n  /// @inheritdoc IStakedTokenV3\n  function settleSlashing() external override onlySlashingAdmin {\n    inPostSlashingPeriod = false;\n    emit SlashingSettled();\n  }\n\n  /// @inheritdoc IStakedTokenV3\n  function setMaxSlashablePercentage(uint256 percentage)\n    external\n    override\n    onlySlashingAdmin\n  {\n    _setMaxSlashablePercentage(percentage);\n  }\n\n  /// @inheritdoc IStakedTokenV3\n  function getMaxSlashablePercentage()\n    external\n    view\n    override\n    returns (uint256)\n  {\n    return _maxSlashablePercentage;\n  }\n\n  /// @inheritdoc IStakedTokenV3\n  function setCooldownSeconds(uint256 cooldownSeconds)\n    external\n    onlyCooldownAdmin\n  {\n    _setCooldownSeconds(cooldownSeconds);\n  }\n\n  /// @inheritdoc IStakedTokenV3\n  function getCooldownSeconds() external view returns (uint256) {\n    return _cooldownSeconds;\n  }\n\n  /// @inheritdoc IStakedTokenV3\n  function COOLDOWN_SECONDS() external view returns (uint256) {\n    return _cooldownSeconds;\n  }\n\n  /**\n   * @dev sets the max slashable percentage\n   * @param percentage must be strictly lower 100% as otherwise the exchange rate calculation would result in 0 division\n   */\n  function _setMaxSlashablePercentage(uint256 percentage) internal {\n    require(\n      percentage < PercentageMath.PERCENTAGE_FACTOR,\n      'INVALID_SLASHING_PERCENTAGE'\n    );\n\n    _maxSlashablePercentage = percentage;\n    emit MaxSlashablePercentageChanged(percentage);\n  }\n\n  /**\n   * @dev sets the cooldown seconds\n   * @param cooldownSeconds the new amount of cooldown seconds\n   */\n  function _setCooldownSeconds(uint256 cooldownSeconds) internal {\n    _cooldownSeconds = cooldownSeconds;\n    emit CooldownSecondsChanged(cooldownSeconds);\n  }\n\n  /**\n   * @dev claims the rewards for a specified address to a specified address\n   * @param from The address of the from from which to claim\n   * @param to Address to receive the rewards\n   * @param amount Amount to claim\n   * @return amount claimed\n   */\n  function _claimRewards(\n    address from,\n    address to,\n    uint256 amount\n  ) internal returns (uint256) {\n    require(amount != 0, 'INVALID_ZERO_AMOUNT');\n    uint256 newTotalRewards = _updateCurrentUnclaimedRewards(\n      from,\n      balanceOf(from),\n      false\n    );\n\n    uint256 amountToClaim = (amount > newTotalRewards)\n      ? newTotalRewards\n      : amount;\n    require(amountToClaim != 0, 'INVALID_ZERO_AMOUNT');\n\n    stakerRewardsToClaim[from] = newTotalRewards - amountToClaim;\n    REWARD_TOKEN.safeTransferFrom(REWARDS_VAULT, to, amountToClaim);\n    emit RewardsClaimed(from, to, amountToClaim);\n    return amountToClaim;\n  }\n\n  /**\n   * @dev Claims an `amount` of `REWARD_TOKEN` and stakes.\n   * @param from The address of the from from which to claim\n   * @param to Address to stake to\n   * @param amount Amount to claim\n   * @return amount claimed\n   */\n  function _claimRewardsAndStakeOnBehalf(\n    address from,\n    address to,\n    uint256 amount\n  ) internal returns (uint256) {\n    require(REWARD_TOKEN == STAKED_TOKEN, 'REWARD_TOKEN_IS_NOT_STAKED_TOKEN');\n\n    uint256 userUpdatedRewards = _updateCurrentUnclaimedRewards(\n      from,\n      balanceOf(from),\n      true\n    );\n    uint256 amountToClaim = (amount > userUpdatedRewards)\n      ? userUpdatedRewards\n      : amount;\n\n    if (amountToClaim != 0) {\n      _claimRewards(from, address(this), amountToClaim);\n      _stake(address(this), to, amountToClaim);\n    }\n\n    return amountToClaim;\n  }\n\n  /**\n   * @dev Allows staking a specified amount of STAKED_TOKEN\n   * @param to The address to receiving the shares\n   * @param amount The amount of assets to be staked\n   */\n  function _stake(\n    address from,\n    address to,\n    uint256 amount\n  ) internal {\n    require(!inPostSlashingPeriod, 'SLASHING_ONGOING');\n    require(amount != 0, 'INVALID_ZERO_AMOUNT');\n\n    uint256 balanceOfTo = balanceOf(to);\n\n    uint256 accruedRewards = _updateUserAssetInternal(\n      to,\n      address(this),\n      balanceOfTo,\n      totalSupply()\n    );\n\n    if (accruedRewards != 0) {\n      stakerRewardsToClaim[to] = stakerRewardsToClaim[to] + accruedRewards;\n      emit RewardsAccrued(to, accruedRewards);\n    }\n\n    uint256 sharesToMint = previewStake(amount);\n\n    STAKED_TOKEN.safeTransferFrom(from, address(this), amount);\n\n    _mint(to, sharesToMint);\n\n    emit Staked(from, to, amount, sharesToMint);\n  }\n\n  /**\n   * @dev Redeems staked tokens, and stop earning rewards\n   * @param from Address to redeem from\n   * @param to Address to redeem to\n   * @param amount Amount to redeem\n   */\n  function _redeem(\n    address from,\n    address to,\n    uint256 amount\n  ) internal {\n    require(amount != 0, 'INVALID_ZERO_AMOUNT');\n\n    CooldownSnapshot memory cooldownSnapshot = stakersCooldowns[from];\n    if (!inPostSlashingPeriod) {\n      require(\n        (block.timestamp >= cooldownSnapshot.timestamp + _cooldownSeconds),\n        'INSUFFICIENT_COOLDOWN'\n      );\n      require(\n        (block.timestamp - (cooldownSnapshot.timestamp + _cooldownSeconds) <=\n          UNSTAKE_WINDOW),\n        'UNSTAKE_WINDOW_FINISHED'\n      );\n    }\n\n    uint256 balanceOfFrom = balanceOf(from);\n    uint256 maxRedeemable = inPostSlashingPeriod\n      ? balanceOfFrom\n      : cooldownSnapshot.amount;\n    require(maxRedeemable != 0, 'INVALID_ZERO_MAX_REDEEMABLE');\n\n    uint256 amountToRedeem = (amount > maxRedeemable) ? maxRedeemable : amount;\n\n    _updateCurrentUnclaimedRewards(from, balanceOfFrom, true);\n\n    uint256 underlyingToRedeem = previewRedeem(amountToRedeem);\n\n    _burn(from, amountToRedeem);\n\n    if (cooldownSnapshot.timestamp != 0) {\n      if (cooldownSnapshot.amount - amountToRedeem == 0) {\n        delete stakersCooldowns[from];\n      } else {\n        stakersCooldowns[from].amount =\n          stakersCooldowns[from].amount -\n          amountToRedeem.toUint184();\n      }\n    }\n\n    IERC20(STAKED_TOKEN).safeTransfer(to, underlyingToRedeem);\n\n    emit Redeem(from, to, underlyingToRedeem, amountToRedeem);\n  }\n\n  /**\n   * @dev Updates the exchangeRate and emits events accordingly\n   * @param newExchangeRate the new exchange rate\n   */\n  function _updateExchangeRate(uint216 newExchangeRate) internal virtual {\n    require(newExchangeRate != 0, 'ZERO_EXCHANGE_RATE');\n    _currentExchangeRate = newExchangeRate;\n    emit ExchangeRateChanged(newExchangeRate);\n  }\n\n  /**\n   * @dev calculates the exchange rate based on totalAssets and totalShares\n   * @dev always rounds up to ensure 100% backing of shares by rounding in favor of the contract\n   * @param totalAssets The total amount of assets staked\n   * @param totalShares The total amount of shares\n   * @return exchangeRate as 18 decimal precision uint216\n   */\n  function _getExchangeRate(uint256 totalAssets, uint256 totalShares)\n    internal\n    pure\n    returns (uint216)\n  {\n    return\n      (((totalShares * EXCHANGE_RATE_UNIT) + totalAssets - 1) / totalAssets)\n        .toUint216();\n  }\n\n  function _transfer(\n    address from,\n    address to,\n    uint256 amount\n  ) internal override {\n    uint256 balanceOfFrom = balanceOf(from);\n    // Sender\n    _updateCurrentUnclaimedRewards(from, balanceOfFrom, true);\n\n    // Recipient\n    if (from != to) {\n      uint256 balanceOfTo = balanceOf(to);\n      _updateCurrentUnclaimedRewards(to, balanceOfTo, true);\n\n      CooldownSnapshot memory previousSenderCooldown = stakersCooldowns[from];\n      if (previousSenderCooldown.timestamp != 0) {\n        // if cooldown was set and whole balance of sender was transferred - clear cooldown\n        if (balanceOfFrom == amount) {\n          delete stakersCooldowns[from];\n        } else if (balanceOfFrom - amount < previousSenderCooldown.amount) {\n          stakersCooldowns[from].amount = uint216(balanceOfFrom - amount);\n        }\n      }\n    }\n\n    super._transfer(from, to, amount);\n  }\n}\n\n\n// File contracts/StakedPSYSV3.sol\n\n// Original license: SPDX_License_Identifier: agpl-3.0\npragma solidity ^0.8.0;\n\n\n\n\n\n\n\n\n/**\n * @title StakedPsysV3\n * @notice StakedTokenV3 with WPSYS token as staked token\n * @author BGD Labs, modified by Pegasys\n */\ncontract StakedPSYSV3 is StakedTokenV3, IStakedPSYSV3 {\n  using SafeCast for uint256;\n\n  uint32 internal _exchangeRateSnapshotsCount;\n  /// @notice Snapshots of the exchangeRate for a given block\n  mapping(uint256 => ExchangeRateSnapshot) internal _exchangeRateSnapshots;\n\n  /// @notice GHO debt token to be used in the _beforeTokenTransfer hook\n  IGhoVariableDebtTokenTransferHook public ghoDebtToken;\n\n  function REVISION() public pure virtual override returns (uint256) {\n    return 1;\n  }\n\n  constructor(\n    IERC20 stakedToken,\n    IERC20 rewardToken,\n    uint256 unstakeWindow,\n    address rewardsVault,\n    address emissionManager,\n    uint128 distributionDuration\n  )\n    StakedTokenV3(\n      stakedToken,\n      rewardToken,\n      unstakeWindow,\n      rewardsVault,\n      emissionManager,\n      distributionDuration\n    )\n  {\n    // brick initialize\n    lastInitializedRevision = REVISION();\n  }\n\n  /**\n   * @dev Called by the proxy contract\n   */\n  function initialize(\n    address slashingAdmin,\n    address cooldownPauseAdmin,\n    address claimHelper,\n    uint256 maxSlashablePercentage,\n    uint256 cooldownSeconds\n  ) external override initializer {\n    _initialize(\n      slashingAdmin,\n      cooldownPauseAdmin,\n      claimHelper,\n      maxSlashablePercentage,\n      cooldownSeconds\n    );\n\n    // needed to claimRewardsAndStake works without a custom approval each time\n    STAKED_TOKEN.approve(address(this), type(uint256).max);\n  }\n\n  /// @inheritdoc IStakedPSYSV3\n  function setGHODebtToken(IGhoVariableDebtTokenTransferHook newGHODebtToken)\n    external\n  {\n    require(msg.sender == 0xEE56e2B3D491590B5b31738cC34d5232F378a8D5); // Short executor\n    ghoDebtToken = newGHODebtToken;\n    emit GHODebtTokenChanged(address(newGHODebtToken));\n  }\n\n  /// @inheritdoc IStakedPSYSV3\n  function claimRewardsAndStake(address to, uint256 amount)\n    external\n    override\n    returns (uint256)\n  {\n    return _claimRewardsAndStakeOnBehalf(msg.sender, to, amount);\n  }\n\n  /// @inheritdoc IStakedPSYSV3\n  function claimRewardsAndStakeOnBehalf(\n    address from,\n    address to,\n    uint256 amount\n  ) external override onlyClaimHelper returns (uint256) {\n    return _claimRewardsAndStakeOnBehalf(from, to, amount);\n  }\n\n  /// @inheritdoc IStakedPSYSV3\n  function stakeWithPermit(\n    address from,\n    uint256 amount,\n    uint256 deadline,\n    uint8 v,\n    bytes32 r,\n    bytes32 s\n  ) external override {\n    IERC20WithPermit(address(STAKED_TOKEN)).permit(\n      from,\n      address(this),\n      amount,\n      deadline,\n      v,\n      r,\n      s\n    );\n    _stake(from, from, amount);\n  }\n\n  /// @inheritdoc IStakedPSYSV3\n  function getExchangeRateSnapshotsCount() external view returns (uint32) {\n    return _exchangeRateSnapshotsCount;\n  }\n\n  /// @inheritdoc IStakedPSYSV3\n  function getExchangeRateSnapshot(uint32 index)\n    external\n    view\n    returns (ExchangeRateSnapshot memory)\n  {\n    return _exchangeRateSnapshots[index];\n  }\n\n  /**\n   * @dev Writes a snapshot before any operation involving transfer of value: _transfer, _mint and _burn\n   * - On _transfer, it writes snapshots for both \"from\" and \"to\"\n   * - On _mint, only for _to\n   * - On _burn, only for _from\n   * @param from the from address\n   * @param to the to address\n   * @param amount the amount to transfer\n   */\n  function _beforeTokenTransfer(\n    address from,\n    address to,\n    uint256 amount\n  ) internal override {\n    IGhoVariableDebtTokenTransferHook cachedGhoDebtToken = ghoDebtToken;\n    if (address(cachedGhoDebtToken) != address(0)) {\n      try\n        cachedGhoDebtToken.updateDiscountDistribution(\n          from,\n          to,\n          balanceOf(from),\n          balanceOf(to),\n          amount\n        )\n      {} catch (bytes memory) {}\n    }\n    address votingFromDelegatee = _votingDelegates[from];\n    address votingToDelegatee = _votingDelegates[to];\n\n    if (votingFromDelegatee == address(0)) {\n      votingFromDelegatee = from;\n    }\n    if (votingToDelegatee == address(0)) {\n      votingToDelegatee = to;\n    }\n\n    _moveDelegatesByType(\n      votingFromDelegatee,\n      votingToDelegatee,\n      amount,\n      DelegationType.VOTING_POWER\n    );\n\n    address propPowerFromDelegatee = _propositionPowerDelegates[from];\n    address propPowerToDelegatee = _propositionPowerDelegates[to];\n\n    if (propPowerFromDelegatee == address(0)) {\n      propPowerFromDelegatee = from;\n    }\n    if (propPowerToDelegatee == address(0)) {\n      propPowerToDelegatee = to;\n    }\n\n    _moveDelegatesByType(\n      propPowerFromDelegatee,\n      propPowerToDelegatee,\n      amount,\n      DelegationType.PROPOSITION_POWER\n    );\n  }\n\n  /// @dev Modified version accounting for exchange rate at block\n  /// @inheritdoc GovernancePowerDelegationERC20\n  function _searchByBlockNumber(\n    mapping(address => mapping(uint256 => Snapshot)) storage snapshots,\n    mapping(address => uint256) storage snapshotsCounts,\n    address user,\n    uint256 blockNumber\n  ) internal view override returns (uint256) {\n    return\n      (super._searchByBlockNumber(\n        snapshots,\n        snapshotsCounts,\n        user,\n        blockNumber\n      ) * EXCHANGE_RATE_UNIT) /\n      _binarySearchExchangeRate(\n        _exchangeRateSnapshots,\n        _exchangeRateSnapshotsCount,\n        blockNumber\n      );\n  }\n\n  /**\n   * @dev Updates the exchangeRate and emits events accordingly\n   * @param newExchangeRate the new exchange rate\n   */\n  function _updateExchangeRate(uint216 newExchangeRate) internal override {\n    _exchangeRateSnapshots[_exchangeRateSnapshotsCount] = ExchangeRateSnapshot(\n      block.number.toUint40(),\n      newExchangeRate\n    );\n    ++_exchangeRateSnapshotsCount;\n    super._updateExchangeRate(newExchangeRate);\n  }\n\n  function _binarySearchExchangeRate(\n    mapping(uint256 => ExchangeRateSnapshot) storage snapshots,\n    uint256 snapshotsCount,\n    uint256 blockNumber\n  ) internal view returns (uint256) {\n    unchecked {\n      // First check most recent balance\n      if (snapshots[snapshotsCount - 1].blockNumber <= blockNumber) {\n        return snapshots[snapshotsCount - 1].value;\n      }\n\n      uint256 lower = 0;\n      uint256 upper = snapshotsCount - 1;\n      while (upper > lower) {\n        uint256 center = upper - (upper - lower) / 2; // ceil, avoiding overflow\n        ExchangeRateSnapshot memory snapshot = snapshots[center];\n        if (snapshot.blockNumber == blockNumber) {\n          return snapshot.value;\n        } else if (snapshot.blockNumber < blockNumber) {\n          lower = center;\n        } else {\n          upper = center - 1;\n        }\n      }\n      return snapshots[lower].value;\n    }\n  }\n}\n"}},"settings":{"optimizer":{"enabled":true,"runs":200},"evmVersion":"paris","outputSelection":{"*":{"*":["abi","evm.bytecode","evm.deployedBytecode","evm.methodIdentifiers","metadata"],"":["ast"]}}}},"output":{"errors":[{"component":"general","errorCode":"5667","formattedMessage":"Warning: Unused function parameter. Remove or comment out the variable name to silence this warning.\n    --> contracts/flatten/StakedPSYSV3-flatten.sol:1293:5:\n     |\n1293 |     uint128 oldValue,\n     |     ^^^^^^^^^^^^^^^^\n\n","message":"Unused function parameter. Remove or comment out the variable name to silence this warning.","severity":"warning","sourceLocation":{"end":40633,"file":"contracts/flatten/StakedPSYSV3-flatten.sol","start":40617},"type":"Warning"}],"sources":{"contracts/flatten/StakedPSYSV3-flatten.sol":{"ast":{"absolutePath":"contracts/flatten/StakedPSYSV3-flatten.sol","exportedSymbols":{"Address":[2235],"Context":[511],"DistributionTypes":[137],"ERC20":[1084],"GovernancePowerDelegationERC20":[1874],"GovernancePowerWithSnapshot":[1906],"IERC20":[77],"IERC20Metadata":[100],"IERC20WithPermit":[121],"IGhoVariableDebtTokenTransferHook":[162],"IGovernancePowerDelegationToken":[1167],"IPegasysDistributionManager":[146],"IStakedPSYSV3":[490],"IStakedTokenV2":[243],"IStakedTokenV3":[417],"ITransferHook":[1885],"PegasysDistributionManager":[2972],"PercentageMath":[4604],"RoleManager":[5419],"SafeCast":[4512],"SafeERC20":[2456],"StakedPSYSV3":[7297],"StakedTokenV2":[5209],"StakedTokenV3":[6760],"VersionedInitializable":[4642]},"id":7298,"license":"MIT AND agpl-3.0","nodeType":"SourceUnit","nodes":[{"id":1,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"275:23:0"},{"abstract":false,"baseContracts":[],"canonicalName":"IERC20","contractDependencies":[],"contractKind":"interface","documentation":{"id":2,"nodeType":"StructuredDocumentation","src":"300:70:0","text":" @dev Interface of the ERC20 standard as defined in the EIP."},"fullyImplemented":false,"id":77,"linearizedBaseContracts":[77],"name":"IERC20","nameLocation":"381:6:0","nodeType":"ContractDefinition","nodes":[{"anonymous":false,"documentation":{"id":3,"nodeType":"StructuredDocumentation","src":"392:148:0","text":" @dev Emitted when `value` tokens are moved from one account (`from`) to\n another (`to`).\n Note that `value` may be zero."},"eventSelector":"ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef","id":11,"name":"Transfer","nameLocation":"549:8:0","nodeType":"EventDefinition","parameters":{"id":10,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5,"indexed":true,"mutability":"mutable","name":"from","nameLocation":"574:4:0","nodeType":"VariableDeclaration","scope":11,"src":"558:20:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4,"name":"address","nodeType":"ElementaryTypeName","src":"558:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":7,"indexed":true,"mutability":"mutable","name":"to","nameLocation":"596:2:0","nodeType":"VariableDeclaration","scope":11,"src":"580:18:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6,"name":"address","nodeType":"ElementaryTypeName","src":"580:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":9,"indexed":false,"mutability":"mutable","name":"value","nameLocation":"608:5:0","nodeType":"VariableDeclaration","scope":11,"src":"600:13:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":8,"name":"uint256","nodeType":"ElementaryTypeName","src":"600:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"557:57:0"},"src":"543:72:0"},{"anonymous":false,"documentation":{"id":12,"nodeType":"StructuredDocumentation","src":"619:142:0","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."},"eventSelector":"8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925","id":20,"name":"Approval","nameLocation":"770:8:0","nodeType":"EventDefinition","parameters":{"id":19,"nodeType":"ParameterList","parameters":[{"constant":false,"id":14,"indexed":true,"mutability":"mutable","name":"owner","nameLocation":"795:5:0","nodeType":"VariableDeclaration","scope":20,"src":"779:21:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":13,"name":"address","nodeType":"ElementaryTypeName","src":"779:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":16,"indexed":true,"mutability":"mutable","name":"spender","nameLocation":"818:7:0","nodeType":"VariableDeclaration","scope":20,"src":"802:23:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":15,"name":"address","nodeType":"ElementaryTypeName","src":"802:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":18,"indexed":false,"mutability":"mutable","name":"value","nameLocation":"835:5:0","nodeType":"VariableDeclaration","scope":20,"src":"827:13:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":17,"name":"uint256","nodeType":"ElementaryTypeName","src":"827:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"778:63:0"},"src":"764:78:0"},{"documentation":{"id":21,"nodeType":"StructuredDocumentation","src":"846:62:0","text":" @dev Returns the amount of tokens in existence."},"functionSelector":"18160ddd","id":26,"implemented":false,"kind":"function","modifiers":[],"name":"totalSupply","nameLocation":"920:11:0","nodeType":"FunctionDefinition","parameters":{"id":22,"nodeType":"ParameterList","parameters":[],"src":"931:2:0"},"returnParameters":{"id":25,"nodeType":"ParameterList","parameters":[{"constant":false,"id":24,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":26,"src":"957:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":23,"name":"uint256","nodeType":"ElementaryTypeName","src":"957:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"956:9:0"},"scope":77,"src":"911:55:0","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":27,"nodeType":"StructuredDocumentation","src":"970:68:0","text":" @dev Returns the amount of tokens owned by `account`."},"functionSelector":"70a08231","id":34,"implemented":false,"kind":"function","modifiers":[],"name":"balanceOf","nameLocation":"1050:9:0","nodeType":"FunctionDefinition","parameters":{"id":30,"nodeType":"ParameterList","parameters":[{"constant":false,"id":29,"mutability":"mutable","name":"account","nameLocation":"1068:7:0","nodeType":"VariableDeclaration","scope":34,"src":"1060:15:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":28,"name":"address","nodeType":"ElementaryTypeName","src":"1060:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1059:17:0"},"returnParameters":{"id":33,"nodeType":"ParameterList","parameters":[{"constant":false,"id":32,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":34,"src":"1100:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":31,"name":"uint256","nodeType":"ElementaryTypeName","src":"1100:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1099:9:0"},"scope":77,"src":"1041:68:0","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":35,"nodeType":"StructuredDocumentation","src":"1113:190:0","text":" @dev Moves `amount` tokens from the caller's account to `to`.\n Returns a boolean value indicating whether the operation succeeded.\n Emits a {Transfer} event."},"functionSelector":"a9059cbb","id":44,"implemented":false,"kind":"function","modifiers":[],"name":"transfer","nameLocation":"1315:8:0","nodeType":"FunctionDefinition","parameters":{"id":40,"nodeType":"ParameterList","parameters":[{"constant":false,"id":37,"mutability":"mutable","name":"to","nameLocation":"1332:2:0","nodeType":"VariableDeclaration","scope":44,"src":"1324:10:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":36,"name":"address","nodeType":"ElementaryTypeName","src":"1324:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":39,"mutability":"mutable","name":"amount","nameLocation":"1344:6:0","nodeType":"VariableDeclaration","scope":44,"src":"1336:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":38,"name":"uint256","nodeType":"ElementaryTypeName","src":"1336:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1323:28:0"},"returnParameters":{"id":43,"nodeType":"ParameterList","parameters":[{"constant":false,"id":42,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":44,"src":"1370:4:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":41,"name":"bool","nodeType":"ElementaryTypeName","src":"1370:4:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"1369:6:0"},"scope":77,"src":"1306:70:0","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":45,"nodeType":"StructuredDocumentation","src":"1380:252:0","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":54,"implemented":false,"kind":"function","modifiers":[],"name":"allowance","nameLocation":"1644:9:0","nodeType":"FunctionDefinition","parameters":{"id":50,"nodeType":"ParameterList","parameters":[{"constant":false,"id":47,"mutability":"mutable","name":"owner","nameLocation":"1662:5:0","nodeType":"VariableDeclaration","scope":54,"src":"1654:13:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":46,"name":"address","nodeType":"ElementaryTypeName","src":"1654:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":49,"mutability":"mutable","name":"spender","nameLocation":"1677:7:0","nodeType":"VariableDeclaration","scope":54,"src":"1669:15:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":48,"name":"address","nodeType":"ElementaryTypeName","src":"1669:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"1653:32:0"},"returnParameters":{"id":53,"nodeType":"ParameterList","parameters":[{"constant":false,"id":52,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":54,"src":"1721:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":51,"name":"uint256","nodeType":"ElementaryTypeName","src":"1721:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"1720:9:0"},"scope":77,"src":"1635:95:0","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":55,"nodeType":"StructuredDocumentation","src":"1734:616:0","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":64,"implemented":false,"kind":"function","modifiers":[],"name":"approve","nameLocation":"2362:7:0","nodeType":"FunctionDefinition","parameters":{"id":60,"nodeType":"ParameterList","parameters":[{"constant":false,"id":57,"mutability":"mutable","name":"spender","nameLocation":"2378:7:0","nodeType":"VariableDeclaration","scope":64,"src":"2370:15:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":56,"name":"address","nodeType":"ElementaryTypeName","src":"2370:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":59,"mutability":"mutable","name":"amount","nameLocation":"2395:6:0","nodeType":"VariableDeclaration","scope":64,"src":"2387:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":58,"name":"uint256","nodeType":"ElementaryTypeName","src":"2387:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2369:33:0"},"returnParameters":{"id":63,"nodeType":"ParameterList","parameters":[{"constant":false,"id":62,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":64,"src":"2421:4:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":61,"name":"bool","nodeType":"ElementaryTypeName","src":"2421:4:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"2420:6:0"},"scope":77,"src":"2353:74:0","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":65,"nodeType":"StructuredDocumentation","src":"2431:271:0","text":" @dev Moves `amount` tokens from `from` to `to` 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":76,"implemented":false,"kind":"function","modifiers":[],"name":"transferFrom","nameLocation":"2714:12:0","nodeType":"FunctionDefinition","parameters":{"id":72,"nodeType":"ParameterList","parameters":[{"constant":false,"id":67,"mutability":"mutable","name":"from","nameLocation":"2740:4:0","nodeType":"VariableDeclaration","scope":76,"src":"2732:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":66,"name":"address","nodeType":"ElementaryTypeName","src":"2732:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":69,"mutability":"mutable","name":"to","nameLocation":"2758:2:0","nodeType":"VariableDeclaration","scope":76,"src":"2750:10:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":68,"name":"address","nodeType":"ElementaryTypeName","src":"2750:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":71,"mutability":"mutable","name":"amount","nameLocation":"2774:6:0","nodeType":"VariableDeclaration","scope":76,"src":"2766:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":70,"name":"uint256","nodeType":"ElementaryTypeName","src":"2766:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"2726:58:0"},"returnParameters":{"id":75,"nodeType":"ParameterList","parameters":[{"constant":false,"id":74,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":76,"src":"2803:4:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":73,"name":"bool","nodeType":"ElementaryTypeName","src":"2803:4:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"2802:6:0"},"scope":77,"src":"2705:104:0","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":7298,"src":"371:2440:0","usedErrors":[],"usedEvents":[11,20]},{"id":78,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"2991:23:0"},{"abstract":false,"baseContracts":[{"baseName":{"id":80,"name":"IERC20","nameLocations":["3161:6:0"],"nodeType":"IdentifierPath","referencedDeclaration":77,"src":"3161:6:0"},"id":81,"nodeType":"InheritanceSpecifier","src":"3161:6:0"}],"canonicalName":"IERC20Metadata","contractDependencies":[],"contractKind":"interface","documentation":{"id":79,"nodeType":"StructuredDocumentation","src":"3016:116:0","text":" @dev Interface for the optional metadata functions from the ERC20 standard.\n _Available since v4.1._"},"fullyImplemented":false,"id":100,"linearizedBaseContracts":[100,77],"name":"IERC20Metadata","nameLocation":"3143:14:0","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":82,"nodeType":"StructuredDocumentation","src":"3172:50:0","text":" @dev Returns the name of the token."},"functionSelector":"06fdde03","id":87,"implemented":false,"kind":"function","modifiers":[],"name":"name","nameLocation":"3234:4:0","nodeType":"FunctionDefinition","parameters":{"id":83,"nodeType":"ParameterList","parameters":[],"src":"3238:2:0"},"returnParameters":{"id":86,"nodeType":"ParameterList","parameters":[{"constant":false,"id":85,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":87,"src":"3264:13:0","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":84,"name":"string","nodeType":"ElementaryTypeName","src":"3264:6:0","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"3263:15:0"},"scope":100,"src":"3225:54:0","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":88,"nodeType":"StructuredDocumentation","src":"3283:52:0","text":" @dev Returns the symbol of the token."},"functionSelector":"95d89b41","id":93,"implemented":false,"kind":"function","modifiers":[],"name":"symbol","nameLocation":"3347:6:0","nodeType":"FunctionDefinition","parameters":{"id":89,"nodeType":"ParameterList","parameters":[],"src":"3353:2:0"},"returnParameters":{"id":92,"nodeType":"ParameterList","parameters":[{"constant":false,"id":91,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":93,"src":"3379:13:0","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":90,"name":"string","nodeType":"ElementaryTypeName","src":"3379:6:0","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"3378:15:0"},"scope":100,"src":"3338:56:0","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":94,"nodeType":"StructuredDocumentation","src":"3398:61:0","text":" @dev Returns the decimals places of the token."},"functionSelector":"313ce567","id":99,"implemented":false,"kind":"function","modifiers":[],"name":"decimals","nameLocation":"3471:8:0","nodeType":"FunctionDefinition","parameters":{"id":95,"nodeType":"ParameterList","parameters":[],"src":"3479:2:0"},"returnParameters":{"id":98,"nodeType":"ParameterList","parameters":[{"constant":false,"id":97,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":99,"src":"3505:5:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":96,"name":"uint8","nodeType":"ElementaryTypeName","src":"3505:5:0","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"3504:7:0"},"scope":100,"src":"3462:50:0","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":7298,"src":"3133:381:0","usedErrors":[],"usedEvents":[11,20]},{"id":101,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"3623:23:0"},{"abstract":false,"baseContracts":[{"baseName":{"id":102,"name":"IERC20","nameLocations":["3678:6:0"],"nodeType":"IdentifierPath","referencedDeclaration":77,"src":"3678:6:0"},"id":103,"nodeType":"InheritanceSpecifier","src":"3678:6:0"}],"canonicalName":"IERC20WithPermit","contractDependencies":[],"contractKind":"interface","fullyImplemented":false,"id":121,"linearizedBaseContracts":[121,77],"name":"IERC20WithPermit","nameLocation":"3658:16:0","nodeType":"ContractDefinition","nodes":[{"functionSelector":"d505accf","id":120,"implemented":false,"kind":"function","modifiers":[],"name":"permit","nameLocation":"3698:6:0","nodeType":"FunctionDefinition","parameters":{"id":118,"nodeType":"ParameterList","parameters":[{"constant":false,"id":105,"mutability":"mutable","name":"owner","nameLocation":"3718:5:0","nodeType":"VariableDeclaration","scope":120,"src":"3710:13:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":104,"name":"address","nodeType":"ElementaryTypeName","src":"3710:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":107,"mutability":"mutable","name":"spender","nameLocation":"3737:7:0","nodeType":"VariableDeclaration","scope":120,"src":"3729:15:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":106,"name":"address","nodeType":"ElementaryTypeName","src":"3729:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":109,"mutability":"mutable","name":"value","nameLocation":"3758:5:0","nodeType":"VariableDeclaration","scope":120,"src":"3750:13:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":108,"name":"uint256","nodeType":"ElementaryTypeName","src":"3750:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":111,"mutability":"mutable","name":"deadline","nameLocation":"3777:8:0","nodeType":"VariableDeclaration","scope":120,"src":"3769:16:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":110,"name":"uint256","nodeType":"ElementaryTypeName","src":"3769:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":113,"mutability":"mutable","name":"v","nameLocation":"3797:1:0","nodeType":"VariableDeclaration","scope":120,"src":"3791:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":112,"name":"uint8","nodeType":"ElementaryTypeName","src":"3791:5:0","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":115,"mutability":"mutable","name":"r","nameLocation":"3812:1:0","nodeType":"VariableDeclaration","scope":120,"src":"3804:9:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":114,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3804:7:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":117,"mutability":"mutable","name":"s","nameLocation":"3827:1:0","nodeType":"VariableDeclaration","scope":120,"src":"3819:9:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":116,"name":"bytes32","nodeType":"ElementaryTypeName","src":"3819:7:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"3704:128:0"},"returnParameters":{"id":119,"nodeType":"ParameterList","parameters":[],"src":"3841:0:0"},"scope":121,"src":"3689:153:0","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":7298,"src":"3648:196:0","usedErrors":[],"usedEvents":[11,20]},{"id":122,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"3947:23:0"},{"abstract":false,"baseContracts":[],"canonicalName":"DistributionTypes","contractDependencies":[],"contractKind":"library","fullyImplemented":true,"id":137,"linearizedBaseContracts":[137],"name":"DistributionTypes","nameLocation":"3980:17:0","nodeType":"ContractDefinition","nodes":[{"canonicalName":"DistributionTypes.AssetConfigInput","id":129,"members":[{"constant":false,"id":124,"mutability":"mutable","name":"emissionPerSecond","nameLocation":"4046:17:0","nodeType":"VariableDeclaration","scope":129,"src":"4038:25:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"},"typeName":{"id":123,"name":"uint128","nodeType":"ElementaryTypeName","src":"4038:7:0","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"visibility":"internal"},{"constant":false,"id":126,"mutability":"mutable","name":"totalStaked","nameLocation":"4081:11:0","nodeType":"VariableDeclaration","scope":129,"src":"4073:19:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":125,"name":"uint256","nodeType":"ElementaryTypeName","src":"4073:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":128,"mutability":"mutable","name":"underlyingAsset","nameLocation":"4110:15:0","nodeType":"VariableDeclaration","scope":129,"src":"4102:23:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":127,"name":"address","nodeType":"ElementaryTypeName","src":"4102:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"name":"AssetConfigInput","nameLocation":"4011:16:0","nodeType":"StructDefinition","scope":137,"src":"4004:128:0","visibility":"public"},{"canonicalName":"DistributionTypes.UserStakeInput","id":136,"members":[{"constant":false,"id":131,"mutability":"mutable","name":"underlyingAsset","nameLocation":"4178:15:0","nodeType":"VariableDeclaration","scope":136,"src":"4170:23:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":130,"name":"address","nodeType":"ElementaryTypeName","src":"4170:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":133,"mutability":"mutable","name":"stakedByUser","nameLocation":"4211:12:0","nodeType":"VariableDeclaration","scope":136,"src":"4203:20:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":132,"name":"uint256","nodeType":"ElementaryTypeName","src":"4203:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":135,"mutability":"mutable","name":"totalStaked","nameLocation":"4241:11:0","nodeType":"VariableDeclaration","scope":136,"src":"4233:19:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":134,"name":"uint256","nodeType":"ElementaryTypeName","src":"4233:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"name":"UserStakeInput","nameLocation":"4145:14:0","nodeType":"StructDefinition","scope":137,"src":"4138:121:0","visibility":"public"}],"scope":7298,"src":"3972:289:0","usedErrors":[],"usedEvents":[]},{"id":138,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"4381:23:0"},{"abstract":false,"baseContracts":[],"canonicalName":"IPegasysDistributionManager","contractDependencies":[],"contractKind":"interface","fullyImplemented":false,"id":146,"linearizedBaseContracts":[146],"name":"IPegasysDistributionManager","nameLocation":"4416:27:0","nodeType":"ContractDefinition","nodes":[{"functionSelector":"b2a5dbfa","id":145,"implemented":false,"kind":"function","modifiers":[],"name":"configureAssets","nameLocation":"4457:15:0","nodeType":"FunctionDefinition","parameters":{"id":143,"nodeType":"ParameterList","parameters":[{"constant":false,"id":142,"mutability":"mutable","name":"assetsConfigInput","nameLocation":"4522:17:0","nodeType":"VariableDeclaration","scope":145,"src":"4478:61:0","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_AssetConfigInput_$129_memory_ptr_$dyn_memory_ptr","typeString":"struct DistributionTypes.AssetConfigInput[]"},"typeName":{"baseType":{"id":140,"nodeType":"UserDefinedTypeName","pathNode":{"id":139,"name":"DistributionTypes.AssetConfigInput","nameLocations":["4478:17:0","4496:16:0"],"nodeType":"IdentifierPath","referencedDeclaration":129,"src":"4478:34:0"},"referencedDeclaration":129,"src":"4478:34:0","typeDescriptions":{"typeIdentifier":"t_struct$_AssetConfigInput_$129_storage_ptr","typeString":"struct DistributionTypes.AssetConfigInput"}},"id":141,"nodeType":"ArrayTypeName","src":"4478:36:0","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_AssetConfigInput_$129_storage_$dyn_storage_ptr","typeString":"struct DistributionTypes.AssetConfigInput[]"}},"visibility":"internal"}],"src":"4472:71:0"},"returnParameters":{"id":144,"nodeType":"ParameterList","parameters":[],"src":"4552:0:0"},"scope":146,"src":"4448:105:0","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":7298,"src":"4406:149:0","usedErrors":[],"usedEvents":[]},{"id":147,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"4681:23:0"},{"abstract":false,"baseContracts":[],"canonicalName":"IGhoVariableDebtTokenTransferHook","contractDependencies":[],"contractKind":"interface","fullyImplemented":false,"id":162,"linearizedBaseContracts":[162],"name":"IGhoVariableDebtTokenTransferHook","nameLocation":"4716:33:0","nodeType":"ContractDefinition","nodes":[{"documentation":{"id":148,"nodeType":"StructuredDocumentation","src":"4754:404:0","text":" @dev updates the discount when discount token is transferred\n @dev Only callable by discount token\n @param sender address of sender\n @param recipient address of recipient\n @param senderDiscountTokenBalance sender discount token balance\n @param recipientDiscountTokenBalance recipient discount token balance\n @param amount amount of discount token being transferred*"},"functionSelector":"5b9c4cf1","id":161,"implemented":false,"kind":"function","modifiers":[],"name":"updateDiscountDistribution","nameLocation":"5170:26:0","nodeType":"FunctionDefinition","parameters":{"id":159,"nodeType":"ParameterList","parameters":[{"constant":false,"id":150,"mutability":"mutable","name":"sender","nameLocation":"5210:6:0","nodeType":"VariableDeclaration","scope":161,"src":"5202:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":149,"name":"address","nodeType":"ElementaryTypeName","src":"5202:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":152,"mutability":"mutable","name":"recipient","nameLocation":"5230:9:0","nodeType":"VariableDeclaration","scope":161,"src":"5222:17:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":151,"name":"address","nodeType":"ElementaryTypeName","src":"5222:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":154,"mutability":"mutable","name":"senderDiscountTokenBalance","nameLocation":"5253:26:0","nodeType":"VariableDeclaration","scope":161,"src":"5245:34:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":153,"name":"uint256","nodeType":"ElementaryTypeName","src":"5245:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":156,"mutability":"mutable","name":"recipientDiscountTokenBalance","nameLocation":"5293:29:0","nodeType":"VariableDeclaration","scope":161,"src":"5285:37:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":155,"name":"uint256","nodeType":"ElementaryTypeName","src":"5285:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":158,"mutability":"mutable","name":"amount","nameLocation":"5336:6:0","nodeType":"VariableDeclaration","scope":161,"src":"5328:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":157,"name":"uint256","nodeType":"ElementaryTypeName","src":"5328:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5196:150:0"},"returnParameters":{"id":160,"nodeType":"ParameterList","parameters":[],"src":"5355:0:0"},"scope":162,"src":"5161:195:0","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":7298,"src":"4706:652:0","usedErrors":[],"usedEvents":[]},{"id":163,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"5465:23:0"},{"abstract":false,"baseContracts":[],"canonicalName":"IStakedTokenV2","contractDependencies":[],"contractKind":"interface","fullyImplemented":false,"id":243,"linearizedBaseContracts":[243],"name":"IStakedTokenV2","nameLocation":"5500:14:0","nodeType":"ContractDefinition","nodes":[{"canonicalName":"IStakedTokenV2.CooldownSnapshot","id":168,"members":[{"constant":false,"id":165,"mutability":"mutable","name":"timestamp","nameLocation":"5556:9:0","nodeType":"VariableDeclaration","scope":168,"src":"5549:16:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"},"typeName":{"id":164,"name":"uint40","nodeType":"ElementaryTypeName","src":"5549:6:0","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"visibility":"internal"},{"constant":false,"id":167,"mutability":"mutable","name":"amount","nameLocation":"5579:6:0","nodeType":"VariableDeclaration","scope":168,"src":"5571:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint216","typeString":"uint216"},"typeName":{"id":166,"name":"uint216","nodeType":"ElementaryTypeName","src":"5571:7:0","typeDescriptions":{"typeIdentifier":"t_uint216","typeString":"uint216"}},"visibility":"internal"}],"name":"CooldownSnapshot","nameLocation":"5526:16:0","nodeType":"StructDefinition","scope":243,"src":"5519:71:0","visibility":"public"},{"anonymous":false,"eventSelector":"2468f9268c60ad90e2d49edb0032c8a001e733ae888b3ab8e982edf535be1a76","id":174,"name":"RewardsAccrued","nameLocation":"5600:14:0","nodeType":"EventDefinition","parameters":{"id":173,"nodeType":"ParameterList","parameters":[{"constant":false,"id":170,"indexed":false,"mutability":"mutable","name":"user","nameLocation":"5623:4:0","nodeType":"VariableDeclaration","scope":174,"src":"5615:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":169,"name":"address","nodeType":"ElementaryTypeName","src":"5615:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":172,"indexed":false,"mutability":"mutable","name":"amount","nameLocation":"5637:6:0","nodeType":"VariableDeclaration","scope":174,"src":"5629:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":171,"name":"uint256","nodeType":"ElementaryTypeName","src":"5629:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5614:30:0"},"src":"5594:51:0"},{"anonymous":false,"eventSelector":"9310ccfcb8de723f578a9e4282ea9f521f05ae40dc08f3068dfad528a65ee3c7","id":182,"name":"RewardsClaimed","nameLocation":"5654:14:0","nodeType":"EventDefinition","parameters":{"id":181,"nodeType":"ParameterList","parameters":[{"constant":false,"id":176,"indexed":true,"mutability":"mutable","name":"from","nameLocation":"5690:4:0","nodeType":"VariableDeclaration","scope":182,"src":"5674:20:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":175,"name":"address","nodeType":"ElementaryTypeName","src":"5674:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":178,"indexed":true,"mutability":"mutable","name":"to","nameLocation":"5716:2:0","nodeType":"VariableDeclaration","scope":182,"src":"5700:18:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":177,"name":"address","nodeType":"ElementaryTypeName","src":"5700:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":180,"indexed":false,"mutability":"mutable","name":"amount","nameLocation":"5732:6:0","nodeType":"VariableDeclaration","scope":182,"src":"5724:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":179,"name":"uint256","nodeType":"ElementaryTypeName","src":"5724:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5668:74:0"},"src":"5648:95:0"},{"anonymous":false,"eventSelector":"8a05f911d8ab7fc50fec37ef4ba7f9bfcb1a3c191c81dcd824ad0946c4e20d65","id":188,"name":"Cooldown","nameLocation":"5752:8:0","nodeType":"EventDefinition","parameters":{"id":187,"nodeType":"ParameterList","parameters":[{"constant":false,"id":184,"indexed":true,"mutability":"mutable","name":"user","nameLocation":"5777:4:0","nodeType":"VariableDeclaration","scope":188,"src":"5761:20:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":183,"name":"address","nodeType":"ElementaryTypeName","src":"5761:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":186,"indexed":false,"mutability":"mutable","name":"amount","nameLocation":"5791:6:0","nodeType":"VariableDeclaration","scope":188,"src":"5783:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":185,"name":"uint256","nodeType":"ElementaryTypeName","src":"5783:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5760:38:0"},"src":"5746:53:0"},{"documentation":{"id":189,"nodeType":"StructuredDocumentation","src":"5803:173:0","text":" @dev Allows staking a specified amount of STAKED_TOKEN\n @param to The address to receiving the shares\n @param amount The amount of assets to be staked"},"functionSelector":"adc9772e","id":196,"implemented":false,"kind":"function","modifiers":[],"name":"stake","nameLocation":"5988:5:0","nodeType":"FunctionDefinition","parameters":{"id":194,"nodeType":"ParameterList","parameters":[{"constant":false,"id":191,"mutability":"mutable","name":"to","nameLocation":"6002:2:0","nodeType":"VariableDeclaration","scope":196,"src":"5994:10:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":190,"name":"address","nodeType":"ElementaryTypeName","src":"5994:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":193,"mutability":"mutable","name":"amount","nameLocation":"6014:6:0","nodeType":"VariableDeclaration","scope":196,"src":"6006:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":192,"name":"uint256","nodeType":"ElementaryTypeName","src":"6006:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"5993:28:0"},"returnParameters":{"id":195,"nodeType":"ParameterList","parameters":[],"src":"6030:0:0"},"scope":243,"src":"5979:52:0","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":197,"nodeType":"StructuredDocumentation","src":"6035:142:0","text":" @dev Redeems shares, and stop earning rewards\n @param to Address to redeem to\n @param amount Amount of shares to redeem"},"functionSelector":"1e9a6950","id":204,"implemented":false,"kind":"function","modifiers":[],"name":"redeem","nameLocation":"6189:6:0","nodeType":"FunctionDefinition","parameters":{"id":202,"nodeType":"ParameterList","parameters":[{"constant":false,"id":199,"mutability":"mutable","name":"to","nameLocation":"6204:2:0","nodeType":"VariableDeclaration","scope":204,"src":"6196:10:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":198,"name":"address","nodeType":"ElementaryTypeName","src":"6196:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":201,"mutability":"mutable","name":"amount","nameLocation":"6216:6:0","nodeType":"VariableDeclaration","scope":204,"src":"6208:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":200,"name":"uint256","nodeType":"ElementaryTypeName","src":"6208:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6195:28:0"},"returnParameters":{"id":203,"nodeType":"ParameterList","parameters":[],"src":"6232:0:0"},"scope":243,"src":"6180:53:0","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":205,"nodeType":"StructuredDocumentation","src":"6237:113:0","text":" @dev Activates the cooldown period to unstake\n - It can't be called if the user is not staking"},"functionSelector":"787a08a6","id":208,"implemented":false,"kind":"function","modifiers":[],"name":"cooldown","nameLocation":"6362:8:0","nodeType":"FunctionDefinition","parameters":{"id":206,"nodeType":"ParameterList","parameters":[],"src":"6370:2:0"},"returnParameters":{"id":207,"nodeType":"ParameterList","parameters":[],"src":"6381:0:0"},"scope":243,"src":"6353:29:0","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":209,"nodeType":"StructuredDocumentation","src":"6386:162:0","text":" @dev Claims an `amount` of `REWARD_TOKEN` to the address `to`\n @param to Address to send the claimed rewards\n @param amount Amount to stake"},"functionSelector":"9a99b4f0","id":216,"implemented":false,"kind":"function","modifiers":[],"name":"claimRewards","nameLocation":"6560:12:0","nodeType":"FunctionDefinition","parameters":{"id":214,"nodeType":"ParameterList","parameters":[{"constant":false,"id":211,"mutability":"mutable","name":"to","nameLocation":"6581:2:0","nodeType":"VariableDeclaration","scope":216,"src":"6573:10:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":210,"name":"address","nodeType":"ElementaryTypeName","src":"6573:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":213,"mutability":"mutable","name":"amount","nameLocation":"6593:6:0","nodeType":"VariableDeclaration","scope":216,"src":"6585:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":212,"name":"uint256","nodeType":"ElementaryTypeName","src":"6585:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6572:28:0"},"returnParameters":{"id":215,"nodeType":"ParameterList","parameters":[],"src":"6609:0:0"},"scope":243,"src":"6551:59:0","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":217,"nodeType":"StructuredDocumentation","src":"6614:137:0","text":" @dev Return the total rewards pending to claim by an staker\n @param staker The staker address\n @return The rewards"},"functionSelector":"8dbefee2","id":224,"implemented":false,"kind":"function","modifiers":[],"name":"getTotalRewardsBalance","nameLocation":"6763:22:0","nodeType":"FunctionDefinition","parameters":{"id":220,"nodeType":"ParameterList","parameters":[{"constant":false,"id":219,"mutability":"mutable","name":"staker","nameLocation":"6794:6:0","nodeType":"VariableDeclaration","scope":224,"src":"6786:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":218,"name":"address","nodeType":"ElementaryTypeName","src":"6786:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"6785:16:0"},"returnParameters":{"id":223,"nodeType":"ParameterList","parameters":[{"constant":false,"id":222,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":224,"src":"6837:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":221,"name":"uint256","nodeType":"ElementaryTypeName","src":"6837:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"6836:9:0"},"scope":243,"src":"6754:92:0","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":225,"nodeType":"StructuredDocumentation","src":"6850:424:0","text":" @dev implements the permit function as for https://github.com/ethereum/EIPs/blob/8a34d644aacf0f9f8f00815307fd7dd5da07655f/EIPS/eip-2612.md\n @param owner the owner of the funds\n @param spender the spender\n @param value the amount\n @param deadline the deadline timestamp, type(uint256).max for no deadline\n @param v signature param\n @param s signature param\n @param r signature param"},"functionSelector":"d505accf","id":242,"implemented":false,"kind":"function","modifiers":[],"name":"permit","nameLocation":"7286:6:0","nodeType":"FunctionDefinition","parameters":{"id":240,"nodeType":"ParameterList","parameters":[{"constant":false,"id":227,"mutability":"mutable","name":"owner","nameLocation":"7306:5:0","nodeType":"VariableDeclaration","scope":242,"src":"7298:13:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":226,"name":"address","nodeType":"ElementaryTypeName","src":"7298:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":229,"mutability":"mutable","name":"spender","nameLocation":"7325:7:0","nodeType":"VariableDeclaration","scope":242,"src":"7317:15:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":228,"name":"address","nodeType":"ElementaryTypeName","src":"7317:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":231,"mutability":"mutable","name":"value","nameLocation":"7346:5:0","nodeType":"VariableDeclaration","scope":242,"src":"7338:13:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":230,"name":"uint256","nodeType":"ElementaryTypeName","src":"7338:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":233,"mutability":"mutable","name":"deadline","nameLocation":"7365:8:0","nodeType":"VariableDeclaration","scope":242,"src":"7357:16:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":232,"name":"uint256","nodeType":"ElementaryTypeName","src":"7357:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":235,"mutability":"mutable","name":"v","nameLocation":"7385:1:0","nodeType":"VariableDeclaration","scope":242,"src":"7379:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":234,"name":"uint8","nodeType":"ElementaryTypeName","src":"7379:5:0","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":237,"mutability":"mutable","name":"r","nameLocation":"7400:1:0","nodeType":"VariableDeclaration","scope":242,"src":"7392:9:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":236,"name":"bytes32","nodeType":"ElementaryTypeName","src":"7392:7:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":239,"mutability":"mutable","name":"s","nameLocation":"7415:1:0","nodeType":"VariableDeclaration","scope":242,"src":"7407:9:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":238,"name":"bytes32","nodeType":"ElementaryTypeName","src":"7407:7:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"7292:128:0"},"returnParameters":{"id":241,"nodeType":"ParameterList","parameters":[],"src":"7429:0:0"},"scope":243,"src":"7277:153:0","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":7298,"src":"5490:1943:0","usedErrors":[],"usedEvents":[174,182,188]},{"id":244,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"7540:23:0"},{"abstract":false,"baseContracts":[{"baseName":{"id":245,"name":"IStakedTokenV2","nameLocations":["7593:14:0"],"nodeType":"IdentifierPath","referencedDeclaration":243,"src":"7593:14:0"},"id":246,"nodeType":"InheritanceSpecifier","src":"7593:14:0"}],"canonicalName":"IStakedTokenV3","contractDependencies":[],"contractKind":"interface","fullyImplemented":false,"id":417,"linearizedBaseContracts":[417,243],"name":"IStakedTokenV3","nameLocation":"7575:14:0","nodeType":"ContractDefinition","nodes":[{"anonymous":false,"eventSelector":"6c86f3fd5118b3aa8bb4f389a617046de0a3d3d477de1a1673d227f802f616dc","id":256,"name":"Staked","nameLocation":"7618:6:0","nodeType":"EventDefinition","parameters":{"id":255,"nodeType":"ParameterList","parameters":[{"constant":false,"id":248,"indexed":true,"mutability":"mutable","name":"from","nameLocation":"7646:4:0","nodeType":"VariableDeclaration","scope":256,"src":"7630:20:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":247,"name":"address","nodeType":"ElementaryTypeName","src":"7630:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":250,"indexed":true,"mutability":"mutable","name":"to","nameLocation":"7672:2:0","nodeType":"VariableDeclaration","scope":256,"src":"7656:18:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":249,"name":"address","nodeType":"ElementaryTypeName","src":"7656:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":252,"indexed":false,"mutability":"mutable","name":"assets","nameLocation":"7688:6:0","nodeType":"VariableDeclaration","scope":256,"src":"7680:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":251,"name":"uint256","nodeType":"ElementaryTypeName","src":"7680:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":254,"indexed":false,"mutability":"mutable","name":"shares","nameLocation":"7708:6:0","nodeType":"VariableDeclaration","scope":256,"src":"7700:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":253,"name":"uint256","nodeType":"ElementaryTypeName","src":"7700:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7624:94:0"},"src":"7612:107:0"},{"anonymous":false,"eventSelector":"3f693fff038bb8a046aa76d9516190ac7444f7d69cf952c4cbdc086fdef2d6fc","id":266,"name":"Redeem","nameLocation":"7728:6:0","nodeType":"EventDefinition","parameters":{"id":265,"nodeType":"ParameterList","parameters":[{"constant":false,"id":258,"indexed":true,"mutability":"mutable","name":"from","nameLocation":"7756:4:0","nodeType":"VariableDeclaration","scope":266,"src":"7740:20:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":257,"name":"address","nodeType":"ElementaryTypeName","src":"7740:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":260,"indexed":true,"mutability":"mutable","name":"to","nameLocation":"7782:2:0","nodeType":"VariableDeclaration","scope":266,"src":"7766:18:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":259,"name":"address","nodeType":"ElementaryTypeName","src":"7766:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":262,"indexed":false,"mutability":"mutable","name":"assets","nameLocation":"7798:6:0","nodeType":"VariableDeclaration","scope":266,"src":"7790:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":261,"name":"uint256","nodeType":"ElementaryTypeName","src":"7790:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":264,"indexed":false,"mutability":"mutable","name":"shares","nameLocation":"7818:6:0","nodeType":"VariableDeclaration","scope":266,"src":"7810:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":263,"name":"uint256","nodeType":"ElementaryTypeName","src":"7810:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7734:94:0"},"src":"7722:107:0"},{"anonymous":false,"eventSelector":"b79c2d6c7f5c95eec9dc05affc0ed002620a4ec6d72b7b0744cc8638168c600a","id":270,"name":"MaxSlashablePercentageChanged","nameLocation":"7838:29:0","nodeType":"EventDefinition","parameters":{"id":269,"nodeType":"ParameterList","parameters":[{"constant":false,"id":268,"indexed":false,"mutability":"mutable","name":"newPercentage","nameLocation":"7876:13:0","nodeType":"VariableDeclaration","scope":270,"src":"7868:21:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":267,"name":"uint256","nodeType":"ElementaryTypeName","src":"7868:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7867:23:0"},"src":"7832:59:0"},{"anonymous":false,"eventSelector":"4ed05e9673c26d2ed44f7ef6a7f2942df0ee3b5e1e17db4b99f9dcd261a339cd","id":276,"name":"Slashed","nameLocation":"7900:7:0","nodeType":"EventDefinition","parameters":{"id":275,"nodeType":"ParameterList","parameters":[{"constant":false,"id":272,"indexed":true,"mutability":"mutable","name":"destination","nameLocation":"7924:11:0","nodeType":"VariableDeclaration","scope":276,"src":"7908:27:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":271,"name":"address","nodeType":"ElementaryTypeName","src":"7908:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":274,"indexed":false,"mutability":"mutable","name":"amount","nameLocation":"7945:6:0","nodeType":"VariableDeclaration","scope":276,"src":"7937:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":273,"name":"uint256","nodeType":"ElementaryTypeName","src":"7937:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7907:45:0"},"src":"7894:59:0"},{"anonymous":false,"eventSelector":"6b55165a8dae04eeace47372de7a71df552116e1e9ceb87df7ffc9b10c83302a","id":280,"name":"SlashingExitWindowDurationChanged","nameLocation":"7962:33:0","nodeType":"EventDefinition","parameters":{"id":279,"nodeType":"ParameterList","parameters":[{"constant":false,"id":278,"indexed":false,"mutability":"mutable","name":"windowSeconds","nameLocation":"8004:13:0","nodeType":"VariableDeclaration","scope":280,"src":"7996:21:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":277,"name":"uint256","nodeType":"ElementaryTypeName","src":"7996:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"7995:23:0"},"src":"7956:63:0"},{"anonymous":false,"eventSelector":"bbf67247b5c97564e30ffc0a355e71c006836de7b9149e09e3d5d6054cb03355","id":284,"name":"CooldownSecondsChanged","nameLocation":"8028:22:0","nodeType":"EventDefinition","parameters":{"id":283,"nodeType":"ParameterList","parameters":[{"constant":false,"id":282,"indexed":false,"mutability":"mutable","name":"cooldownSeconds","nameLocation":"8059:15:0","nodeType":"VariableDeclaration","scope":284,"src":"8051:23:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":281,"name":"uint256","nodeType":"ElementaryTypeName","src":"8051:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8050:25:0"},"src":"8022:54:0"},{"anonymous":false,"eventSelector":"a9c433f9734baa3cf48b209454bb0ace054e191f677ba50e74b696c0d35ef262","id":288,"name":"ExchangeRateChanged","nameLocation":"8085:19:0","nodeType":"EventDefinition","parameters":{"id":287,"nodeType":"ParameterList","parameters":[{"constant":false,"id":286,"indexed":false,"mutability":"mutable","name":"exchangeRate","nameLocation":"8113:12:0","nodeType":"VariableDeclaration","scope":288,"src":"8105:20:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint216","typeString":"uint216"},"typeName":{"id":285,"name":"uint216","nodeType":"ElementaryTypeName","src":"8105:7:0","typeDescriptions":{"typeIdentifier":"t_uint216","typeString":"uint216"}},"visibility":"internal"}],"src":"8104:22:0"},"src":"8079:48:0"},{"anonymous":false,"eventSelector":"278e51d3323fbf18b9fb8df3f8b97e31b145bc1146c52e764cf4aa1bfc4ba17d","id":292,"name":"FundsReturned","nameLocation":"8136:13:0","nodeType":"EventDefinition","parameters":{"id":291,"nodeType":"ParameterList","parameters":[{"constant":false,"id":290,"indexed":false,"mutability":"mutable","name":"amount","nameLocation":"8158:6:0","nodeType":"VariableDeclaration","scope":292,"src":"8150:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":289,"name":"uint256","nodeType":"ElementaryTypeName","src":"8150:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"8149:16:0"},"src":"8130:36:0"},{"anonymous":false,"eventSelector":"cdee157e87ba915be681d4fa3f3d511afe7348eca06448a3accd6ac227fa40af","id":294,"name":"SlashingSettled","nameLocation":"8175:15:0","nodeType":"EventDefinition","parameters":{"id":293,"nodeType":"ParameterList","parameters":[],"src":"8190:2:0"},"src":"8169:24:0"},{"documentation":{"id":295,"nodeType":"StructuredDocumentation","src":"8197:111:0","text":" @dev Returns the current exchange rate\n @return exchangeRate as 18 decimal precision uint216"},"functionSelector":"e6aa216c","id":300,"implemented":false,"kind":"function","modifiers":[],"name":"getExchangeRate","nameLocation":"8320:15:0","nodeType":"FunctionDefinition","parameters":{"id":296,"nodeType":"ParameterList","parameters":[],"src":"8335:2:0"},"returnParameters":{"id":299,"nodeType":"ParameterList","parameters":[{"constant":false,"id":298,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":300,"src":"8361:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint216","typeString":"uint216"},"typeName":{"id":297,"name":"uint216","nodeType":"ElementaryTypeName","src":"8361:7:0","typeDescriptions":{"typeIdentifier":"t_uint216","typeString":"uint216"}},"visibility":"internal"}],"src":"8360:9:0"},"scope":417,"src":"8311:59:0","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":301,"nodeType":"StructuredDocumentation","src":"8374:700:0","text":" @dev Executes a slashing of the underlying of a certain amount, transferring the seized funds\n to destination. Decreasing the amount of underlying will automatically adjust the exchange rate.\n A call to `slash` will start a slashing event which has to be settled via `settleSlashing`.\n As long as the slashing event is ongoing, stake and slash are deactivated.\n - MUST NOT be called when a previous slashing is still ongoing\n @param destination the address where seized funds will be transferred\n @param amount the amount to be slashed\n - if the amount bigger than maximum allowed, the maximum will be slashed instead.\n @return amount the amount slashed"},"functionSelector":"02fb4d85","id":310,"implemented":false,"kind":"function","modifiers":[],"name":"slash","nameLocation":"9086:5:0","nodeType":"FunctionDefinition","parameters":{"id":306,"nodeType":"ParameterList","parameters":[{"constant":false,"id":303,"mutability":"mutable","name":"destination","nameLocation":"9100:11:0","nodeType":"VariableDeclaration","scope":310,"src":"9092:19:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":302,"name":"address","nodeType":"ElementaryTypeName","src":"9092:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":305,"mutability":"mutable","name":"amount","nameLocation":"9121:6:0","nodeType":"VariableDeclaration","scope":310,"src":"9113:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":304,"name":"uint256","nodeType":"ElementaryTypeName","src":"9113:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9091:37:0"},"returnParameters":{"id":309,"nodeType":"ParameterList","parameters":[{"constant":false,"id":308,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":310,"src":"9155:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":307,"name":"uint256","nodeType":"ElementaryTypeName","src":"9155:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9154:9:0"},"scope":417,"src":"9077:87:0","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":311,"nodeType":"StructuredDocumentation","src":"9168:53:0","text":" @dev Settles an ongoing slashing event"},"functionSelector":"aff05aa9","id":314,"implemented":false,"kind":"function","modifiers":[],"name":"settleSlashing","nameLocation":"9233:14:0","nodeType":"FunctionDefinition","parameters":{"id":312,"nodeType":"ParameterList","parameters":[],"src":"9247:2:0"},"returnParameters":{"id":313,"nodeType":"ParameterList","parameters":[],"src":"9258:0:0"},"scope":417,"src":"9224:35:0","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":315,"nodeType":"StructuredDocumentation","src":"9263:279:0","text":" @dev Pulls STAKE_TOKEN and distributes them amongst current stakers by altering the exchange rate.\n This method is permissionless and intended to be used after a slashing event to return potential excess funds.\n @param amount amount of STAKE_TOKEN to pull."},"functionSelector":"45755dd6","id":320,"implemented":false,"kind":"function","modifiers":[],"name":"returnFunds","nameLocation":"9554:11:0","nodeType":"FunctionDefinition","parameters":{"id":318,"nodeType":"ParameterList","parameters":[{"constant":false,"id":317,"mutability":"mutable","name":"amount","nameLocation":"9574:6:0","nodeType":"VariableDeclaration","scope":320,"src":"9566:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":316,"name":"uint256","nodeType":"ElementaryTypeName","src":"9566:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9565:16:0"},"returnParameters":{"id":319,"nodeType":"ParameterList","parameters":[],"src":"9590:0:0"},"scope":417,"src":"9545:46:0","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":321,"nodeType":"StructuredDocumentation","src":"9595:156:0","text":" @dev Getter of the cooldown seconds\n @return cooldownSeconds the amount of seconds between starting the cooldown and being able to redeem"},"functionSelector":"616e0bf9","id":326,"implemented":false,"kind":"function","modifiers":[],"name":"getCooldownSeconds","nameLocation":"9763:18:0","nodeType":"FunctionDefinition","parameters":{"id":322,"nodeType":"ParameterList","parameters":[],"src":"9781:2:0"},"returnParameters":{"id":325,"nodeType":"ParameterList","parameters":[{"constant":false,"id":324,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":326,"src":"9807:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":323,"name":"uint256","nodeType":"ElementaryTypeName","src":"9807:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"9806:9:0"},"scope":417,"src":"9754:62:0","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":327,"nodeType":"StructuredDocumentation","src":"9820:156:0","text":" @dev Getter of the cooldown seconds\n @return cooldownSeconds the amount of seconds between starting the cooldown and being able to redeem"},"functionSelector":"72b49d63","id":332,"implemented":false,"kind":"function","modifiers":[],"name":"COOLDOWN_SECONDS","nameLocation":"9988:16:0","nodeType":"FunctionDefinition","parameters":{"id":328,"nodeType":"ParameterList","parameters":[],"src":"10004:2:0"},"returnParameters":{"id":331,"nodeType":"ParameterList","parameters":[{"constant":false,"id":330,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":332,"src":"10030:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":329,"name":"uint256","nodeType":"ElementaryTypeName","src":"10030:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10029:9:0"},"scope":417,"src":"9979:60:0","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":333,"nodeType":"StructuredDocumentation","src":"10058:218:0","text":" @dev Setter of cooldown seconds\n Can only be called by the cooldown admin\n @param cooldownSeconds the new amount of seconds you have to wait between starting the cooldown and being able to redeem"},"functionSelector":"7b5b1157","id":338,"implemented":false,"kind":"function","modifiers":[],"name":"setCooldownSeconds","nameLocation":"10288:18:0","nodeType":"FunctionDefinition","parameters":{"id":336,"nodeType":"ParameterList","parameters":[{"constant":false,"id":335,"mutability":"mutable","name":"cooldownSeconds","nameLocation":"10315:15:0","nodeType":"VariableDeclaration","scope":338,"src":"10307:23:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":334,"name":"uint256","nodeType":"ElementaryTypeName","src":"10307:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10306:25:0"},"returnParameters":{"id":337,"nodeType":"ParameterList","parameters":[],"src":"10340:0:0"},"scope":417,"src":"10279:62:0","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":339,"nodeType":"StructuredDocumentation","src":"10345:143:0","text":" @dev Getter of the max slashable percentage of the total staked amount.\n @return percentage the maximum slashable percentage"},"functionSelector":"f34d96da","id":344,"implemented":false,"kind":"function","modifiers":[],"name":"getMaxSlashablePercentage","nameLocation":"10500:25:0","nodeType":"FunctionDefinition","parameters":{"id":340,"nodeType":"ParameterList","parameters":[],"src":"10525:2:0"},"returnParameters":{"id":343,"nodeType":"ParameterList","parameters":[{"constant":false,"id":342,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":344,"src":"10551:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":341,"name":"uint256","nodeType":"ElementaryTypeName","src":"10551:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10550:9:0"},"scope":417,"src":"10491:69:0","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":345,"nodeType":"StructuredDocumentation","src":"10564:188:0","text":" @dev Setter of max slashable percentage of the total staked amount.\n Can only be called by the slashing admin\n @param percentage the new maximum slashable percentage"},"functionSelector":"74011f56","id":350,"implemented":false,"kind":"function","modifiers":[],"name":"setMaxSlashablePercentage","nameLocation":"10764:25:0","nodeType":"FunctionDefinition","parameters":{"id":348,"nodeType":"ParameterList","parameters":[{"constant":false,"id":347,"mutability":"mutable","name":"percentage","nameLocation":"10798:10:0","nodeType":"VariableDeclaration","scope":350,"src":"10790:18:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":346,"name":"uint256","nodeType":"ElementaryTypeName","src":"10790:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"10789:20:0"},"returnParameters":{"id":349,"nodeType":"ParameterList","parameters":[],"src":"10818:0:0"},"scope":417,"src":"10755:64:0","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":351,"nodeType":"StructuredDocumentation","src":"10823:232:0","text":" @dev returns the exact amount of shares that would be received for the provided number of assets\n @param assets the number of assets to stake\n @return uint256 shares the number of shares that would be received"},"functionSelector":"727a5d57","id":358,"implemented":false,"kind":"function","modifiers":[],"name":"previewStake","nameLocation":"11067:12:0","nodeType":"FunctionDefinition","parameters":{"id":354,"nodeType":"ParameterList","parameters":[{"constant":false,"id":353,"mutability":"mutable","name":"assets","nameLocation":"11088:6:0","nodeType":"VariableDeclaration","scope":358,"src":"11080:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":352,"name":"uint256","nodeType":"ElementaryTypeName","src":"11080:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11079:16:0"},"returnParameters":{"id":357,"nodeType":"ParameterList","parameters":[{"constant":false,"id":356,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":358,"src":"11119:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":355,"name":"uint256","nodeType":"ElementaryTypeName","src":"11119:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11118:9:0"},"scope":417,"src":"11058:70:0","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":359,"nodeType":"StructuredDocumentation","src":"11132:113:0","text":" @dev Activates the cooldown period to unstake\n - It can't be called if the user is not staking"},"functionSelector":"250201db","id":364,"implemented":false,"kind":"function","modifiers":[],"name":"cooldownOnBehalfOf","nameLocation":"11257:18:0","nodeType":"FunctionDefinition","parameters":{"id":362,"nodeType":"ParameterList","parameters":[{"constant":false,"id":361,"mutability":"mutable","name":"from","nameLocation":"11284:4:0","nodeType":"VariableDeclaration","scope":364,"src":"11276:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":360,"name":"address","nodeType":"ElementaryTypeName","src":"11276:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"11275:14:0"},"returnParameters":{"id":363,"nodeType":"ParameterList","parameters":[],"src":"11298:0:0"},"scope":417,"src":"11248:51:0","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":365,"nodeType":"StructuredDocumentation","src":"11303:304:0","text":" @dev Claims an `amount` of `REWARD_TOKEN` to the address `to` on behalf of the user. Only the claim helper contract is allowed to call this function\n @param from The address of the user from to claim\n @param to Address to send the claimed rewards\n @param amount Amount to claim"},"functionSelector":"20fb80b5","id":376,"implemented":false,"kind":"function","modifiers":[],"name":"claimRewardsOnBehalf","nameLocation":"11619:20:0","nodeType":"FunctionDefinition","parameters":{"id":372,"nodeType":"ParameterList","parameters":[{"constant":false,"id":367,"mutability":"mutable","name":"from","nameLocation":"11653:4:0","nodeType":"VariableDeclaration","scope":376,"src":"11645:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":366,"name":"address","nodeType":"ElementaryTypeName","src":"11645:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":369,"mutability":"mutable","name":"to","nameLocation":"11671:2:0","nodeType":"VariableDeclaration","scope":376,"src":"11663:10:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":368,"name":"address","nodeType":"ElementaryTypeName","src":"11663:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":371,"mutability":"mutable","name":"amount","nameLocation":"11687:6:0","nodeType":"VariableDeclaration","scope":376,"src":"11679:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":370,"name":"uint256","nodeType":"ElementaryTypeName","src":"11679:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11639:58:0"},"returnParameters":{"id":375,"nodeType":"ParameterList","parameters":[{"constant":false,"id":374,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":376,"src":"11716:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":373,"name":"uint256","nodeType":"ElementaryTypeName","src":"11716:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11715:9:0"},"scope":417,"src":"11610:115:0","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":377,"nodeType":"StructuredDocumentation","src":"11729:233:0","text":" @dev returns the exact amount of assets that would be redeemed for the provided number of shares\n @param shares the number of shares to redeem\n @return uint256 assets the number of assets that would be redeemed"},"functionSelector":"4cdad506","id":384,"implemented":false,"kind":"function","modifiers":[],"name":"previewRedeem","nameLocation":"11974:13:0","nodeType":"FunctionDefinition","parameters":{"id":380,"nodeType":"ParameterList","parameters":[{"constant":false,"id":379,"mutability":"mutable","name":"shares","nameLocation":"11996:6:0","nodeType":"VariableDeclaration","scope":384,"src":"11988:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":378,"name":"uint256","nodeType":"ElementaryTypeName","src":"11988:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"11987:16:0"},"returnParameters":{"id":383,"nodeType":"ParameterList","parameters":[{"constant":false,"id":382,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":384,"src":"12027:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":381,"name":"uint256","nodeType":"ElementaryTypeName","src":"12027:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"12026:9:0"},"scope":417,"src":"11965:71:0","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":385,"nodeType":"StructuredDocumentation","src":"12040:232:0","text":" @dev Redeems shares for a user. Only the claim helper contract is allowed to call this function\n @param from Address to redeem from\n @param to Address to redeem to\n @param amount Amount of shares to redeem"},"functionSelector":"112d037c","id":394,"implemented":false,"kind":"function","modifiers":[],"name":"redeemOnBehalf","nameLocation":"12284:14:0","nodeType":"FunctionDefinition","parameters":{"id":392,"nodeType":"ParameterList","parameters":[{"constant":false,"id":387,"mutability":"mutable","name":"from","nameLocation":"12312:4:0","nodeType":"VariableDeclaration","scope":394,"src":"12304:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":386,"name":"address","nodeType":"ElementaryTypeName","src":"12304:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":389,"mutability":"mutable","name":"to","nameLocation":"12330:2:0","nodeType":"VariableDeclaration","scope":394,"src":"12322:10:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":388,"name":"address","nodeType":"ElementaryTypeName","src":"12322:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":391,"mutability":"mutable","name":"amount","nameLocation":"12346:6:0","nodeType":"VariableDeclaration","scope":394,"src":"12338:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":390,"name":"uint256","nodeType":"ElementaryTypeName","src":"12338:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"12298:58:0"},"returnParameters":{"id":393,"nodeType":"ParameterList","parameters":[],"src":"12365:0:0"},"scope":417,"src":"12275:91:0","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":395,"nodeType":"StructuredDocumentation","src":"12370:220:0","text":" @dev Claims an `amount` of `REWARD_TOKEN` and redeems to the provided address\n @param to Address to claim and redeem to\n @param claimAmount Amount to claim\n @param redeemAmount Amount to redeem"},"functionSelector":"eab52318","id":404,"implemented":false,"kind":"function","modifiers":[],"name":"claimRewardsAndRedeem","nameLocation":"12602:21:0","nodeType":"FunctionDefinition","parameters":{"id":402,"nodeType":"ParameterList","parameters":[{"constant":false,"id":397,"mutability":"mutable","name":"to","nameLocation":"12637:2:0","nodeType":"VariableDeclaration","scope":404,"src":"12629:10:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":396,"name":"address","nodeType":"ElementaryTypeName","src":"12629:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":399,"mutability":"mutable","name":"claimAmount","nameLocation":"12653:11:0","nodeType":"VariableDeclaration","scope":404,"src":"12645:19:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":398,"name":"uint256","nodeType":"ElementaryTypeName","src":"12645:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":401,"mutability":"mutable","name":"redeemAmount","nameLocation":"12678:12:0","nodeType":"VariableDeclaration","scope":404,"src":"12670:20:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":400,"name":"uint256","nodeType":"ElementaryTypeName","src":"12670:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"12623:71:0"},"returnParameters":{"id":403,"nodeType":"ParameterList","parameters":[],"src":"12703:0:0"},"scope":417,"src":"12593:111:0","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":405,"nodeType":"StructuredDocumentation","src":"12708:335:0","text":" @dev Claims an `amount` of `REWARD_TOKEN` and redeems the `redeemAmount` to an address. Only the claim helper contract is allowed to call this function\n @param from The address of the from\n @param to Address to claim and redeem to\n @param claimAmount Amount to claim\n @param redeemAmount Amount to redeem"},"functionSelector":"9c9b5154","id":416,"implemented":false,"kind":"function","modifiers":[],"name":"claimRewardsAndRedeemOnBehalf","nameLocation":"13055:29:0","nodeType":"FunctionDefinition","parameters":{"id":414,"nodeType":"ParameterList","parameters":[{"constant":false,"id":407,"mutability":"mutable","name":"from","nameLocation":"13098:4:0","nodeType":"VariableDeclaration","scope":416,"src":"13090:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":406,"name":"address","nodeType":"ElementaryTypeName","src":"13090:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":409,"mutability":"mutable","name":"to","nameLocation":"13116:2:0","nodeType":"VariableDeclaration","scope":416,"src":"13108:10:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":408,"name":"address","nodeType":"ElementaryTypeName","src":"13108:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":411,"mutability":"mutable","name":"claimAmount","nameLocation":"13132:11:0","nodeType":"VariableDeclaration","scope":416,"src":"13124:19:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":410,"name":"uint256","nodeType":"ElementaryTypeName","src":"13124:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":413,"mutability":"mutable","name":"redeemAmount","nameLocation":"13157:12:0","nodeType":"VariableDeclaration","scope":416,"src":"13149:20:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":412,"name":"uint256","nodeType":"ElementaryTypeName","src":"13149:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"13084:89:0"},"returnParameters":{"id":415,"nodeType":"ParameterList","parameters":[],"src":"13182:0:0"},"scope":417,"src":"13046:137:0","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":7298,"src":"7565:5620:0","usedErrors":[],"usedEvents":[174,182,188,256,266,270,276,280,284,288,292,294]},{"id":418,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"13291:23:0"},{"abstract":false,"baseContracts":[{"baseName":{"id":419,"name":"IStakedTokenV3","nameLocations":["13344:14:0"],"nodeType":"IdentifierPath","referencedDeclaration":417,"src":"13344:14:0"},"id":420,"nodeType":"InheritanceSpecifier","src":"13344:14:0"}],"canonicalName":"IStakedPSYSV3","contractDependencies":[],"contractKind":"interface","fullyImplemented":false,"id":490,"linearizedBaseContracts":[490,417,243],"name":"IStakedPSYSV3","nameLocation":"13327:13:0","nodeType":"ContractDefinition","nodes":[{"canonicalName":"IStakedPSYSV3.ExchangeRateSnapshot","id":425,"members":[{"constant":false,"id":422,"mutability":"mutable","name":"blockNumber","nameLocation":"13404:11:0","nodeType":"VariableDeclaration","scope":425,"src":"13397:18:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"},"typeName":{"id":421,"name":"uint40","nodeType":"ElementaryTypeName","src":"13397:6:0","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"visibility":"internal"},{"constant":false,"id":424,"mutability":"mutable","name":"value","nameLocation":"13429:5:0","nodeType":"VariableDeclaration","scope":425,"src":"13421:13:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint216","typeString":"uint216"},"typeName":{"id":423,"name":"uint216","nodeType":"ElementaryTypeName","src":"13421:7:0","typeDescriptions":{"typeIdentifier":"t_uint216","typeString":"uint216"}},"visibility":"internal"}],"name":"ExchangeRateSnapshot","nameLocation":"13370:20:0","nodeType":"StructDefinition","scope":490,"src":"13363:76:0","visibility":"public"},{"anonymous":false,"eventSelector":"62bbced765bccc9ed93d0bae1b2a8c86e13b4663f8bf27d5936d9d619194c8a9","id":429,"name":"GHODebtTokenChanged","nameLocation":"13449:19:0","nodeType":"EventDefinition","parameters":{"id":428,"nodeType":"ParameterList","parameters":[{"constant":false,"id":427,"indexed":true,"mutability":"mutable","name":"newDebtToken","nameLocation":"13485:12:0","nodeType":"VariableDeclaration","scope":429,"src":"13469:28:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":426,"name":"address","nodeType":"ElementaryTypeName","src":"13469:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"13468:30:0"},"src":"13443:56:0"},{"documentation":{"id":430,"nodeType":"StructuredDocumentation","src":"13503:65:0","text":" @dev Returnes the number of excahngeRate snapshots"},"functionSelector":"60ba192b","id":435,"implemented":false,"kind":"function","modifiers":[],"name":"getExchangeRateSnapshotsCount","nameLocation":"13580:29:0","nodeType":"FunctionDefinition","parameters":{"id":431,"nodeType":"ParameterList","parameters":[],"src":"13609:2:0"},"returnParameters":{"id":434,"nodeType":"ParameterList","parameters":[{"constant":false,"id":433,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":435,"src":"13635:6:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":432,"name":"uint32","nodeType":"ElementaryTypeName","src":"13635:6:0","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"13634:8:0"},"scope":490,"src":"13571:72:0","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":436,"nodeType":"StructuredDocumentation","src":"13647:110:0","text":" @dev Returns the exchangeRate for a specified index\n @param index Index of the exchangeRate"},"functionSelector":"8ef98e0e","id":444,"implemented":false,"kind":"function","modifiers":[],"name":"getExchangeRateSnapshot","nameLocation":"13769:23:0","nodeType":"FunctionDefinition","parameters":{"id":439,"nodeType":"ParameterList","parameters":[{"constant":false,"id":438,"mutability":"mutable","name":"index","nameLocation":"13800:5:0","nodeType":"VariableDeclaration","scope":444,"src":"13793:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":437,"name":"uint32","nodeType":"ElementaryTypeName","src":"13793:6:0","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"13792:14:0"},"returnParameters":{"id":443,"nodeType":"ParameterList","parameters":[{"constant":false,"id":442,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":444,"src":"13842:27:0","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_ExchangeRateSnapshot_$425_memory_ptr","typeString":"struct IStakedPSYSV3.ExchangeRateSnapshot"},"typeName":{"id":441,"nodeType":"UserDefinedTypeName","pathNode":{"id":440,"name":"ExchangeRateSnapshot","nameLocations":["13842:20:0"],"nodeType":"IdentifierPath","referencedDeclaration":425,"src":"13842:20:0"},"referencedDeclaration":425,"src":"13842:20:0","typeDescriptions":{"typeIdentifier":"t_struct$_ExchangeRateSnapshot_$425_storage_ptr","typeString":"struct IStakedPSYSV3.ExchangeRateSnapshot"}},"visibility":"internal"}],"src":"13841:29:0"},"scope":490,"src":"13760:111:0","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":445,"nodeType":"StructuredDocumentation","src":"13875:131:0","text":" @dev Sets the GHO debt token (only callable by SHORT_EXECUTOR)\n @param newGHODebtToken Address to GHO debt token"},"functionSelector":"4998fffd","id":451,"implemented":false,"kind":"function","modifiers":[],"name":"setGHODebtToken","nameLocation":"14018:15:0","nodeType":"FunctionDefinition","parameters":{"id":449,"nodeType":"ParameterList","parameters":[{"constant":false,"id":448,"mutability":"mutable","name":"newGHODebtToken","nameLocation":"14068:15:0","nodeType":"VariableDeclaration","scope":451,"src":"14034:49:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IGhoVariableDebtTokenTransferHook_$162","typeString":"contract IGhoVariableDebtTokenTransferHook"},"typeName":{"id":447,"nodeType":"UserDefinedTypeName","pathNode":{"id":446,"name":"IGhoVariableDebtTokenTransferHook","nameLocations":["14034:33:0"],"nodeType":"IdentifierPath","referencedDeclaration":162,"src":"14034:33:0"},"referencedDeclaration":162,"src":"14034:33:0","typeDescriptions":{"typeIdentifier":"t_contract$_IGhoVariableDebtTokenTransferHook_$162","typeString":"contract IGhoVariableDebtTokenTransferHook"}},"visibility":"internal"}],"src":"14033:51:0"},"returnParameters":{"id":450,"nodeType":"ParameterList","parameters":[],"src":"14097:0:0"},"scope":490,"src":"14009:89:0","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":452,"nodeType":"StructuredDocumentation","src":"14102:138:0","text":" @dev Claims an `amount` of `REWARD_TOKEN` and stakes.\n @param to Address to stake to\n @param amount Amount to claim"},"functionSelector":"955e18af","id":461,"implemented":false,"kind":"function","modifiers":[],"name":"claimRewardsAndStake","nameLocation":"14252:20:0","nodeType":"FunctionDefinition","parameters":{"id":457,"nodeType":"ParameterList","parameters":[{"constant":false,"id":454,"mutability":"mutable","name":"to","nameLocation":"14281:2:0","nodeType":"VariableDeclaration","scope":461,"src":"14273:10:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":453,"name":"address","nodeType":"ElementaryTypeName","src":"14273:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":456,"mutability":"mutable","name":"amount","nameLocation":"14293:6:0","nodeType":"VariableDeclaration","scope":461,"src":"14285:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":455,"name":"uint256","nodeType":"ElementaryTypeName","src":"14285:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"14272:28:0"},"returnParameters":{"id":460,"nodeType":"ParameterList","parameters":[{"constant":false,"id":459,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":461,"src":"14327:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":458,"name":"uint256","nodeType":"ElementaryTypeName","src":"14327:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"14326:9:0"},"scope":490,"src":"14243:93:0","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":462,"nodeType":"StructuredDocumentation","src":"14340:263:0","text":" @dev Claims an `amount` of `REWARD_TOKEN` and stakes. Only the claim helper contract is allowed to call this function\n @param from The address of the from from which to claim\n @param to Address to stake to\n @param amount Amount to claim"},"functionSelector":"c18f539a","id":473,"implemented":false,"kind":"function","modifiers":[],"name":"claimRewardsAndStakeOnBehalf","nameLocation":"14615:28:0","nodeType":"FunctionDefinition","parameters":{"id":469,"nodeType":"ParameterList","parameters":[{"constant":false,"id":464,"mutability":"mutable","name":"from","nameLocation":"14657:4:0","nodeType":"VariableDeclaration","scope":473,"src":"14649:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":463,"name":"address","nodeType":"ElementaryTypeName","src":"14649:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":466,"mutability":"mutable","name":"to","nameLocation":"14675:2:0","nodeType":"VariableDeclaration","scope":473,"src":"14667:10:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":465,"name":"address","nodeType":"ElementaryTypeName","src":"14667:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":468,"mutability":"mutable","name":"amount","nameLocation":"14691:6:0","nodeType":"VariableDeclaration","scope":473,"src":"14683:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":467,"name":"uint256","nodeType":"ElementaryTypeName","src":"14683:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"14643:58:0"},"returnParameters":{"id":472,"nodeType":"ParameterList","parameters":[{"constant":false,"id":471,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":473,"src":"14720:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":470,"name":"uint256","nodeType":"ElementaryTypeName","src":"14720:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"14719:9:0"},"scope":490,"src":"14606:123:0","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":474,"nodeType":"StructuredDocumentation","src":"14733:396:0","text":" @dev Allows staking a certain amount of STAKED_TOKEN with gasless approvals (permit)\n @param from The address staking the token\n @param amount The amount to be staked\n @param deadline The permit execution deadline\n @param v The v component of the signed message\n @param r The r component of the signed message\n @param s The s component of the signed message"},"functionSelector":"73d6a889","id":489,"implemented":false,"kind":"function","modifiers":[],"name":"stakeWithPermit","nameLocation":"15141:15:0","nodeType":"FunctionDefinition","parameters":{"id":487,"nodeType":"ParameterList","parameters":[{"constant":false,"id":476,"mutability":"mutable","name":"from","nameLocation":"15170:4:0","nodeType":"VariableDeclaration","scope":489,"src":"15162:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":475,"name":"address","nodeType":"ElementaryTypeName","src":"15162:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":478,"mutability":"mutable","name":"amount","nameLocation":"15188:6:0","nodeType":"VariableDeclaration","scope":489,"src":"15180:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":477,"name":"uint256","nodeType":"ElementaryTypeName","src":"15180:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":480,"mutability":"mutable","name":"deadline","nameLocation":"15208:8:0","nodeType":"VariableDeclaration","scope":489,"src":"15200:16:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":479,"name":"uint256","nodeType":"ElementaryTypeName","src":"15200:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":482,"mutability":"mutable","name":"v","nameLocation":"15228:1:0","nodeType":"VariableDeclaration","scope":489,"src":"15222:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":481,"name":"uint8","nodeType":"ElementaryTypeName","src":"15222:5:0","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":484,"mutability":"mutable","name":"r","nameLocation":"15243:1:0","nodeType":"VariableDeclaration","scope":489,"src":"15235:9:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":483,"name":"bytes32","nodeType":"ElementaryTypeName","src":"15235:7:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":486,"mutability":"mutable","name":"s","nameLocation":"15258:1:0","nodeType":"VariableDeclaration","scope":489,"src":"15250:9:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":485,"name":"bytes32","nodeType":"ElementaryTypeName","src":"15250:7:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"15156:107:0"},"returnParameters":{"id":488,"nodeType":"ParameterList","parameters":[],"src":"15272:0:0"},"scope":490,"src":"15132:141:0","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":7298,"src":"13317:1958:0","usedErrors":[],"usedEvents":[174,182,188,256,266,270,276,280,284,288,292,294,429]},{"id":491,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"15417:23:0"},{"abstract":true,"baseContracts":[],"canonicalName":"Context","contractDependencies":[],"contractKind":"contract","documentation":{"id":492,"nodeType":"StructuredDocumentation","src":"15442:496:0","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":511,"linearizedBaseContracts":[511],"name":"Context","nameLocation":"15957:7:0","nodeType":"ContractDefinition","nodes":[{"body":{"id":500,"nodeType":"Block","src":"16033:34:0","statements":[{"expression":{"expression":{"id":497,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"16050:3:0","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":498,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"16054:6:0","memberName":"sender","nodeType":"MemberAccess","src":"16050:10:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":496,"id":499,"nodeType":"Return","src":"16043:17:0"}]},"id":501,"implemented":true,"kind":"function","modifiers":[],"name":"_msgSender","nameLocation":"15980:10:0","nodeType":"FunctionDefinition","parameters":{"id":493,"nodeType":"ParameterList","parameters":[],"src":"15990:2:0"},"returnParameters":{"id":496,"nodeType":"ParameterList","parameters":[{"constant":false,"id":495,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":501,"src":"16024:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":494,"name":"address","nodeType":"ElementaryTypeName","src":"16024:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"16023:9:0"},"scope":511,"src":"15971:96:0","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":509,"nodeType":"Block","src":"16140:32:0","statements":[{"expression":{"expression":{"id":506,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"16157:3:0","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":507,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"16161:4:0","memberName":"data","nodeType":"MemberAccess","src":"16157:8:0","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes calldata"}},"functionReturnParameters":505,"id":508,"nodeType":"Return","src":"16150:15:0"}]},"id":510,"implemented":true,"kind":"function","modifiers":[],"name":"_msgData","nameLocation":"16082:8:0","nodeType":"FunctionDefinition","parameters":{"id":502,"nodeType":"ParameterList","parameters":[],"src":"16090:2:0"},"returnParameters":{"id":505,"nodeType":"ParameterList","parameters":[{"constant":false,"id":504,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":510,"src":"16124:14:0","stateVariable":false,"storageLocation":"calldata","typeDescriptions":{"typeIdentifier":"t_bytes_calldata_ptr","typeString":"bytes"},"typeName":{"id":503,"name":"bytes","nodeType":"ElementaryTypeName","src":"16124:5:0","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"16123:16:0"},"scope":511,"src":"16073:99:0","stateMutability":"view","virtual":true,"visibility":"internal"}],"scope":7298,"src":"15939:235:0","usedErrors":[],"usedEvents":[]},{"id":512,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"16333:23:0"},{"abstract":false,"baseContracts":[{"baseName":{"id":514,"name":"Context","nameLocations":["17549:7:0"],"nodeType":"IdentifierPath","referencedDeclaration":511,"src":"17549:7:0"},"id":515,"nodeType":"InheritanceSpecifier","src":"17549:7:0"},{"baseName":{"id":516,"name":"IERC20","nameLocations":["17558:6:0"],"nodeType":"IdentifierPath","referencedDeclaration":77,"src":"17558:6:0"},"id":517,"nodeType":"InheritanceSpecifier","src":"17558:6:0"},{"baseName":{"id":518,"name":"IERC20Metadata","nameLocations":["17566:14:0"],"nodeType":"IdentifierPath","referencedDeclaration":100,"src":"17566:14:0"},"id":519,"nodeType":"InheritanceSpecifier","src":"17566:14:0"}],"canonicalName":"ERC20","contractDependencies":[],"contractKind":"contract","documentation":{"id":513,"nodeType":"StructuredDocumentation","src":"16360:1170:0","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.openzeppelin.com/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":1084,"linearizedBaseContracts":[1084,100,77,511],"name":"ERC20","nameLocation":"17540:5:0","nodeType":"ContractDefinition","nodes":[{"constant":false,"id":523,"mutability":"mutable","name":"_balances","nameLocation":"17624:9:0","nodeType":"VariableDeclaration","scope":1084,"src":"17587:46:0","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"typeName":{"id":522,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":520,"name":"address","nodeType":"ElementaryTypeName","src":"17595:7:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"17587:27:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":521,"name":"uint256","nodeType":"ElementaryTypeName","src":"17606:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}},"visibility":"internal"},{"constant":false,"id":529,"mutability":"mutable","name":"_allowances","nameLocation":"17696:11:0","nodeType":"VariableDeclaration","scope":1084,"src":"17640:67:0","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_address_$_t_uint256_$_$","typeString":"mapping(address => mapping(address => uint256))"},"typeName":{"id":528,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":524,"name":"address","nodeType":"ElementaryTypeName","src":"17648:7:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"17640:47:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_address_$_t_uint256_$_$","typeString":"mapping(address => mapping(address => uint256))"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":527,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":525,"name":"address","nodeType":"ElementaryTypeName","src":"17667:7:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"17659:27:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":526,"name":"uint256","nodeType":"ElementaryTypeName","src":"17678:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}}},"visibility":"private"},{"constant":false,"id":531,"mutability":"mutable","name":"_totalSupply","nameLocation":"17731:12:0","nodeType":"VariableDeclaration","scope":1084,"src":"17714:29:0","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":530,"name":"uint256","nodeType":"ElementaryTypeName","src":"17714:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":533,"mutability":"mutable","name":"_name","nameLocation":"17765:5:0","nodeType":"VariableDeclaration","scope":1084,"src":"17750:20:0","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string"},"typeName":{"id":532,"name":"string","nodeType":"ElementaryTypeName","src":"17750:6:0","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"private"},{"constant":false,"id":535,"mutability":"mutable","name":"_symbol","nameLocation":"17791:7:0","nodeType":"VariableDeclaration","scope":1084,"src":"17776:22:0","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string"},"typeName":{"id":534,"name":"string","nodeType":"ElementaryTypeName","src":"17776:6:0","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"private"},{"constant":false,"id":537,"mutability":"mutable","name":"_decimals","nameLocation":"17818:9:0","nodeType":"VariableDeclaration","scope":1084,"src":"17804:23:0","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":536,"name":"uint8","nodeType":"ElementaryTypeName","src":"17804:5:0","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"private"},{"body":{"id":541,"nodeType":"Block","src":"18165:2:0","statements":[]},"documentation":{"id":538,"nodeType":"StructuredDocumentation","src":"17848:298:0","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":542,"implemented":true,"kind":"constructor","modifiers":[],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":539,"nodeType":"ParameterList","parameters":[],"src":"18162:2:0"},"returnParameters":{"id":540,"nodeType":"ParameterList","parameters":[],"src":"18165:0:0"},"scope":1084,"src":"18151:16:0","stateMutability":"nonpayable","virtual":false,"visibility":"public"},{"baseFunctions":[87],"body":{"id":551,"nodeType":"Block","src":"18301:29:0","statements":[{"expression":{"id":549,"name":"_name","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":533,"src":"18318:5:0","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"functionReturnParameters":548,"id":550,"nodeType":"Return","src":"18311:12:0"}]},"documentation":{"id":543,"nodeType":"StructuredDocumentation","src":"18173:54:0","text":" @dev Returns the name of the token."},"functionSelector":"06fdde03","id":552,"implemented":true,"kind":"function","modifiers":[],"name":"name","nameLocation":"18241:4:0","nodeType":"FunctionDefinition","overrides":{"id":545,"nodeType":"OverrideSpecifier","overrides":[],"src":"18268:8:0"},"parameters":{"id":544,"nodeType":"ParameterList","parameters":[],"src":"18245:2:0"},"returnParameters":{"id":548,"nodeType":"ParameterList","parameters":[{"constant":false,"id":547,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":552,"src":"18286:13:0","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":546,"name":"string","nodeType":"ElementaryTypeName","src":"18286:6:0","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"18285:15:0"},"scope":1084,"src":"18232:98:0","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[93],"body":{"id":561,"nodeType":"Block","src":"18514:31:0","statements":[{"expression":{"id":559,"name":"_symbol","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":535,"src":"18531:7:0","typeDescriptions":{"typeIdentifier":"t_string_storage","typeString":"string storage ref"}},"functionReturnParameters":558,"id":560,"nodeType":"Return","src":"18524:14:0"}]},"documentation":{"id":553,"nodeType":"StructuredDocumentation","src":"18336:102:0","text":" @dev Returns the symbol of the token, usually a shorter version of the\n name."},"functionSelector":"95d89b41","id":562,"implemented":true,"kind":"function","modifiers":[],"name":"symbol","nameLocation":"18452:6:0","nodeType":"FunctionDefinition","overrides":{"id":555,"nodeType":"OverrideSpecifier","overrides":[],"src":"18481:8:0"},"parameters":{"id":554,"nodeType":"ParameterList","parameters":[],"src":"18458:2:0"},"returnParameters":{"id":558,"nodeType":"ParameterList","parameters":[{"constant":false,"id":557,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":562,"src":"18499:13:0","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":556,"name":"string","nodeType":"ElementaryTypeName","src":"18499:6:0","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"18498:15:0"},"scope":1084,"src":"18443:102:0","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[99],"body":{"id":571,"nodeType":"Block","src":"19234:26:0","statements":[{"expression":{"hexValue":"3138","id":569,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"19251:2:0","typeDescriptions":{"typeIdentifier":"t_rational_18_by_1","typeString":"int_const 18"},"value":"18"},"functionReturnParameters":568,"id":570,"nodeType":"Return","src":"19244:9:0"}]},"documentation":{"id":563,"nodeType":"StructuredDocumentation","src":"18551:613:0","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":572,"implemented":true,"kind":"function","modifiers":[],"name":"decimals","nameLocation":"19178:8:0","nodeType":"FunctionDefinition","overrides":{"id":565,"nodeType":"OverrideSpecifier","overrides":[],"src":"19209:8:0"},"parameters":{"id":564,"nodeType":"ParameterList","parameters":[],"src":"19186:2:0"},"returnParameters":{"id":568,"nodeType":"ParameterList","parameters":[{"constant":false,"id":567,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":572,"src":"19227:5:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":566,"name":"uint8","nodeType":"ElementaryTypeName","src":"19227:5:0","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"19226:7:0"},"scope":1084,"src":"19169:91:0","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[26],"body":{"id":581,"nodeType":"Block","src":"19390:36:0","statements":[{"expression":{"id":579,"name":"_totalSupply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":531,"src":"19407:12:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":578,"id":580,"nodeType":"Return","src":"19400:19:0"}]},"documentation":{"id":573,"nodeType":"StructuredDocumentation","src":"19266:49:0","text":" @dev See {IERC20-totalSupply}."},"functionSelector":"18160ddd","id":582,"implemented":true,"kind":"function","modifiers":[],"name":"totalSupply","nameLocation":"19329:11:0","nodeType":"FunctionDefinition","overrides":{"id":575,"nodeType":"OverrideSpecifier","overrides":[],"src":"19363:8:0"},"parameters":{"id":574,"nodeType":"ParameterList","parameters":[],"src":"19340:2:0"},"returnParameters":{"id":578,"nodeType":"ParameterList","parameters":[{"constant":false,"id":577,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":582,"src":"19381:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":576,"name":"uint256","nodeType":"ElementaryTypeName","src":"19381:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"19380:9:0"},"scope":1084,"src":"19320:106:0","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[34],"body":{"id":595,"nodeType":"Block","src":"19567:42:0","statements":[{"expression":{"baseExpression":{"id":591,"name":"_balances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":523,"src":"19584:9:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":593,"indexExpression":{"id":592,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":585,"src":"19594:7:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"19584:18:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":590,"id":594,"nodeType":"Return","src":"19577:25:0"}]},"documentation":{"id":583,"nodeType":"StructuredDocumentation","src":"19432:47:0","text":" @dev See {IERC20-balanceOf}."},"functionSelector":"70a08231","id":596,"implemented":true,"kind":"function","modifiers":[],"name":"balanceOf","nameLocation":"19493:9:0","nodeType":"FunctionDefinition","overrides":{"id":587,"nodeType":"OverrideSpecifier","overrides":[],"src":"19540:8:0"},"parameters":{"id":586,"nodeType":"ParameterList","parameters":[{"constant":false,"id":585,"mutability":"mutable","name":"account","nameLocation":"19511:7:0","nodeType":"VariableDeclaration","scope":596,"src":"19503:15:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":584,"name":"address","nodeType":"ElementaryTypeName","src":"19503:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"19502:17:0"},"returnParameters":{"id":590,"nodeType":"ParameterList","parameters":[{"constant":false,"id":589,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":596,"src":"19558:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":588,"name":"uint256","nodeType":"ElementaryTypeName","src":"19558:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"19557:9:0"},"scope":1084,"src":"19484:125:0","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[44],"body":{"id":620,"nodeType":"Block","src":"19890:104:0","statements":[{"assignments":[608],"declarations":[{"constant":false,"id":608,"mutability":"mutable","name":"owner","nameLocation":"19908:5:0","nodeType":"VariableDeclaration","scope":620,"src":"19900:13:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":607,"name":"address","nodeType":"ElementaryTypeName","src":"19900:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":611,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":609,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":501,"src":"19916:10:0","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":610,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19916:12:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"19900:28:0"},{"expression":{"arguments":[{"id":613,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":608,"src":"19948:5:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":614,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":599,"src":"19955:2:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":615,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":601,"src":"19959:6:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":612,"name":"_transfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":844,"src":"19938:9:0","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":616,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"19938:28:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":617,"nodeType":"ExpressionStatement","src":"19938:28:0"},{"expression":{"hexValue":"74727565","id":618,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"19983:4:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"functionReturnParameters":606,"id":619,"nodeType":"Return","src":"19976:11:0"}]},"documentation":{"id":597,"nodeType":"StructuredDocumentation","src":"19615:185:0","text":" @dev See {IERC20-transfer}.\n Requirements:\n - `to` cannot be the zero address.\n - the caller must have a balance of at least `amount`."},"functionSelector":"a9059cbb","id":621,"implemented":true,"kind":"function","modifiers":[],"name":"transfer","nameLocation":"19814:8:0","nodeType":"FunctionDefinition","overrides":{"id":603,"nodeType":"OverrideSpecifier","overrides":[],"src":"19866:8:0"},"parameters":{"id":602,"nodeType":"ParameterList","parameters":[{"constant":false,"id":599,"mutability":"mutable","name":"to","nameLocation":"19831:2:0","nodeType":"VariableDeclaration","scope":621,"src":"19823:10:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":598,"name":"address","nodeType":"ElementaryTypeName","src":"19823:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":601,"mutability":"mutable","name":"amount","nameLocation":"19843:6:0","nodeType":"VariableDeclaration","scope":621,"src":"19835:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":600,"name":"uint256","nodeType":"ElementaryTypeName","src":"19835:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"19822:28:0"},"returnParameters":{"id":606,"nodeType":"ParameterList","parameters":[{"constant":false,"id":605,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":621,"src":"19884:4:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":604,"name":"bool","nodeType":"ElementaryTypeName","src":"19884:4:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"19883:6:0"},"scope":1084,"src":"19805:189:0","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[54],"body":{"id":638,"nodeType":"Block","src":"20150:51:0","statements":[{"expression":{"baseExpression":{"baseExpression":{"id":632,"name":"_allowances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":529,"src":"20167:11:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_address_$_t_uint256_$_$","typeString":"mapping(address => mapping(address => uint256))"}},"id":634,"indexExpression":{"id":633,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":624,"src":"20179:5:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"20167:18:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":636,"indexExpression":{"id":635,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":626,"src":"20186:7:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"20167:27:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":631,"id":637,"nodeType":"Return","src":"20160:34:0"}]},"documentation":{"id":622,"nodeType":"StructuredDocumentation","src":"20000:47:0","text":" @dev See {IERC20-allowance}."},"functionSelector":"dd62ed3e","id":639,"implemented":true,"kind":"function","modifiers":[],"name":"allowance","nameLocation":"20061:9:0","nodeType":"FunctionDefinition","overrides":{"id":628,"nodeType":"OverrideSpecifier","overrides":[],"src":"20123:8:0"},"parameters":{"id":627,"nodeType":"ParameterList","parameters":[{"constant":false,"id":624,"mutability":"mutable","name":"owner","nameLocation":"20079:5:0","nodeType":"VariableDeclaration","scope":639,"src":"20071:13:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":623,"name":"address","nodeType":"ElementaryTypeName","src":"20071:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":626,"mutability":"mutable","name":"spender","nameLocation":"20094:7:0","nodeType":"VariableDeclaration","scope":639,"src":"20086:15:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":625,"name":"address","nodeType":"ElementaryTypeName","src":"20086:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"20070:32:0"},"returnParameters":{"id":631,"nodeType":"ParameterList","parameters":[{"constant":false,"id":630,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":639,"src":"20141:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":629,"name":"uint256","nodeType":"ElementaryTypeName","src":"20141:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"20140:9:0"},"scope":1084,"src":"20052:149:0","stateMutability":"view","virtual":true,"visibility":"public"},{"baseFunctions":[64],"body":{"id":663,"nodeType":"Block","src":"20598:108:0","statements":[{"assignments":[651],"declarations":[{"constant":false,"id":651,"mutability":"mutable","name":"owner","nameLocation":"20616:5:0","nodeType":"VariableDeclaration","scope":663,"src":"20608:13:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":650,"name":"address","nodeType":"ElementaryTypeName","src":"20608:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":654,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":652,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":501,"src":"20624:10:0","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":653,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20624:12:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"20608:28:0"},{"expression":{"arguments":[{"id":656,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":651,"src":"20655:5:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":657,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":642,"src":"20662:7:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":658,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":644,"src":"20671:6:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":655,"name":"_approve","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1018,"src":"20646:8:0","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":659,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"20646:32:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":660,"nodeType":"ExpressionStatement","src":"20646:32:0"},{"expression":{"hexValue":"74727565","id":661,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"20695:4:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"functionReturnParameters":649,"id":662,"nodeType":"Return","src":"20688:11:0"}]},"documentation":{"id":640,"nodeType":"StructuredDocumentation","src":"20207:297:0","text":" @dev See {IERC20-approve}.\n NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on\n `transferFrom`. This is semantically equivalent to an infinite approval.\n Requirements:\n - `spender` cannot be the zero address."},"functionSelector":"095ea7b3","id":664,"implemented":true,"kind":"function","modifiers":[],"name":"approve","nameLocation":"20518:7:0","nodeType":"FunctionDefinition","overrides":{"id":646,"nodeType":"OverrideSpecifier","overrides":[],"src":"20574:8:0"},"parameters":{"id":645,"nodeType":"ParameterList","parameters":[{"constant":false,"id":642,"mutability":"mutable","name":"spender","nameLocation":"20534:7:0","nodeType":"VariableDeclaration","scope":664,"src":"20526:15:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":641,"name":"address","nodeType":"ElementaryTypeName","src":"20526:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":644,"mutability":"mutable","name":"amount","nameLocation":"20551:6:0","nodeType":"VariableDeclaration","scope":664,"src":"20543:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":643,"name":"uint256","nodeType":"ElementaryTypeName","src":"20543:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"20525:33:0"},"returnParameters":{"id":649,"nodeType":"ParameterList","parameters":[{"constant":false,"id":648,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":664,"src":"20592:4:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":647,"name":"bool","nodeType":"ElementaryTypeName","src":"20592:4:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"20591:6:0"},"scope":1084,"src":"20509:197:0","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"baseFunctions":[76],"body":{"id":696,"nodeType":"Block","src":"21401:153:0","statements":[{"assignments":[678],"declarations":[{"constant":false,"id":678,"mutability":"mutable","name":"spender","nameLocation":"21419:7:0","nodeType":"VariableDeclaration","scope":696,"src":"21411:15:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":677,"name":"address","nodeType":"ElementaryTypeName","src":"21411:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":681,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":679,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":501,"src":"21429:10:0","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":680,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21429:12:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"21411:30:0"},{"expression":{"arguments":[{"id":683,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":667,"src":"21467:4:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":684,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":678,"src":"21473:7:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":685,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":671,"src":"21482:6:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":682,"name":"_spendAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1061,"src":"21451:15:0","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":686,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21451:38:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":687,"nodeType":"ExpressionStatement","src":"21451:38:0"},{"expression":{"arguments":[{"id":689,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":667,"src":"21509:4:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":690,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":669,"src":"21515:2:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":691,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":671,"src":"21519:6:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":688,"name":"_transfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":844,"src":"21499:9:0","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":692,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"21499:27:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":693,"nodeType":"ExpressionStatement","src":"21499:27:0"},{"expression":{"hexValue":"74727565","id":694,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"21543:4:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"functionReturnParameters":676,"id":695,"nodeType":"Return","src":"21536:11:0"}]},"documentation":{"id":665,"nodeType":"StructuredDocumentation","src":"20712:551:0","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 NOTE: Does not update the allowance if the current allowance\n is the maximum `uint256`.\n Requirements:\n - `from` and `to` cannot be the zero address.\n - `from` must have a balance of at least `amount`.\n - the caller must have allowance for ``from``'s tokens of at least\n `amount`."},"functionSelector":"23b872dd","id":697,"implemented":true,"kind":"function","modifiers":[],"name":"transferFrom","nameLocation":"21277:12:0","nodeType":"FunctionDefinition","overrides":{"id":673,"nodeType":"OverrideSpecifier","overrides":[],"src":"21377:8:0"},"parameters":{"id":672,"nodeType":"ParameterList","parameters":[{"constant":false,"id":667,"mutability":"mutable","name":"from","nameLocation":"21307:4:0","nodeType":"VariableDeclaration","scope":697,"src":"21299:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":666,"name":"address","nodeType":"ElementaryTypeName","src":"21299:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":669,"mutability":"mutable","name":"to","nameLocation":"21329:2:0","nodeType":"VariableDeclaration","scope":697,"src":"21321:10:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":668,"name":"address","nodeType":"ElementaryTypeName","src":"21321:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":671,"mutability":"mutable","name":"amount","nameLocation":"21349:6:0","nodeType":"VariableDeclaration","scope":697,"src":"21341:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":670,"name":"uint256","nodeType":"ElementaryTypeName","src":"21341:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"21289:72:0"},"returnParameters":{"id":676,"nodeType":"ParameterList","parameters":[{"constant":false,"id":675,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":697,"src":"21395:4:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":674,"name":"bool","nodeType":"ElementaryTypeName","src":"21395:4:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"21394:6:0"},"scope":1084,"src":"21268:286:0","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":725,"nodeType":"Block","src":"22043:140:0","statements":[{"assignments":[708],"declarations":[{"constant":false,"id":708,"mutability":"mutable","name":"owner","nameLocation":"22061:5:0","nodeType":"VariableDeclaration","scope":725,"src":"22053:13:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":707,"name":"address","nodeType":"ElementaryTypeName","src":"22053:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":711,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":709,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":501,"src":"22069:10:0","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":710,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22069:12:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"22053:28:0"},{"expression":{"arguments":[{"id":713,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":708,"src":"22100:5:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":714,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":700,"src":"22107:7:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":720,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":716,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":708,"src":"22126:5:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":717,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":700,"src":"22133:7:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"id":715,"name":"allowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":639,"src":"22116:9:0","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_address_$returns$_t_uint256_$","typeString":"function (address,address) view returns (uint256)"}},"id":718,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22116:25:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":719,"name":"addedValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":702,"src":"22144:10:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"22116:38:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":712,"name":"_approve","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1018,"src":"22091:8:0","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":721,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22091:64:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":722,"nodeType":"ExpressionStatement","src":"22091:64:0"},{"expression":{"hexValue":"74727565","id":723,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"22172:4:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"functionReturnParameters":706,"id":724,"nodeType":"Return","src":"22165:11:0"}]},"documentation":{"id":698,"nodeType":"StructuredDocumentation","src":"21560:384:0","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":726,"implemented":true,"kind":"function","modifiers":[],"name":"increaseAllowance","nameLocation":"21958:17:0","nodeType":"FunctionDefinition","parameters":{"id":703,"nodeType":"ParameterList","parameters":[{"constant":false,"id":700,"mutability":"mutable","name":"spender","nameLocation":"21984:7:0","nodeType":"VariableDeclaration","scope":726,"src":"21976:15:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":699,"name":"address","nodeType":"ElementaryTypeName","src":"21976:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":702,"mutability":"mutable","name":"addedValue","nameLocation":"22001:10:0","nodeType":"VariableDeclaration","scope":726,"src":"21993:18:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":701,"name":"uint256","nodeType":"ElementaryTypeName","src":"21993:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"21975:37:0"},"returnParameters":{"id":706,"nodeType":"ParameterList","parameters":[{"constant":false,"id":705,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":726,"src":"22037:4:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":704,"name":"bool","nodeType":"ElementaryTypeName","src":"22037:4:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"22036:6:0"},"scope":1084,"src":"21949:234:0","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":766,"nodeType":"Block","src":"22769:328:0","statements":[{"assignments":[737],"declarations":[{"constant":false,"id":737,"mutability":"mutable","name":"owner","nameLocation":"22787:5:0","nodeType":"VariableDeclaration","scope":766,"src":"22779:13:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":736,"name":"address","nodeType":"ElementaryTypeName","src":"22779:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":740,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":738,"name":"_msgSender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":501,"src":"22795:10:0","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_address_$","typeString":"function () view returns (address)"}},"id":739,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22795:12:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"22779:28:0"},{"assignments":[742],"declarations":[{"constant":false,"id":742,"mutability":"mutable","name":"currentAllowance","nameLocation":"22825:16:0","nodeType":"VariableDeclaration","scope":766,"src":"22817:24:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":741,"name":"uint256","nodeType":"ElementaryTypeName","src":"22817:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":747,"initialValue":{"arguments":[{"id":744,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":737,"src":"22854:5:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":745,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":729,"src":"22861:7:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"id":743,"name":"allowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":639,"src":"22844:9:0","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_address_$returns$_t_uint256_$","typeString":"function (address,address) view returns (uint256)"}},"id":746,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22844:25:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"22817:52:0"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":751,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":749,"name":"currentAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":742,"src":"22887:16:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"id":750,"name":"subtractedValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":731,"src":"22907:15:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"22887:35:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f","id":752,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"22924:39:0","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":748,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"22879:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":753,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22879:85:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":754,"nodeType":"ExpressionStatement","src":"22879:85:0"},{"id":763,"nodeType":"UncheckedBlock","src":"22974:95:0","statements":[{"expression":{"arguments":[{"id":756,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":737,"src":"23007:5:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":757,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":729,"src":"23014:7:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":760,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":758,"name":"currentAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":742,"src":"23023:16:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":759,"name":"subtractedValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":731,"src":"23042:15:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"23023:34:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":755,"name":"_approve","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1018,"src":"22998:8:0","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":761,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"22998:60:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":762,"nodeType":"ExpressionStatement","src":"22998:60:0"}]},{"expression":{"hexValue":"74727565","id":764,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"23086:4:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"functionReturnParameters":735,"id":765,"nodeType":"Return","src":"23079:11:0"}]},"documentation":{"id":727,"nodeType":"StructuredDocumentation","src":"22189:476:0","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":767,"implemented":true,"kind":"function","modifiers":[],"name":"decreaseAllowance","nameLocation":"22679:17:0","nodeType":"FunctionDefinition","parameters":{"id":732,"nodeType":"ParameterList","parameters":[{"constant":false,"id":729,"mutability":"mutable","name":"spender","nameLocation":"22705:7:0","nodeType":"VariableDeclaration","scope":767,"src":"22697:15:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":728,"name":"address","nodeType":"ElementaryTypeName","src":"22697:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":731,"mutability":"mutable","name":"subtractedValue","nameLocation":"22722:15:0","nodeType":"VariableDeclaration","scope":767,"src":"22714:23:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":730,"name":"uint256","nodeType":"ElementaryTypeName","src":"22714:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"22696:42:0"},"returnParameters":{"id":735,"nodeType":"ParameterList","parameters":[{"constant":false,"id":734,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":767,"src":"22763:4:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":733,"name":"bool","nodeType":"ElementaryTypeName","src":"22763:4:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"22762:6:0"},"scope":1084,"src":"22670:427:0","stateMutability":"nonpayable","virtual":true,"visibility":"public"},{"body":{"id":843,"nodeType":"Block","src":"23659:710:0","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":783,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":778,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":770,"src":"23677:4:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":781,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"23693:1:0","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":780,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"23685:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":779,"name":"address","nodeType":"ElementaryTypeName","src":"23685:7:0","typeDescriptions":{}}},"id":782,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23685:10:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"23677:18:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"45524332303a207472616e736665722066726f6d20746865207a65726f2061646472657373","id":784,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"23697:39:0","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":777,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"23669:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":785,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23669:68:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":786,"nodeType":"ExpressionStatement","src":"23669:68:0"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":793,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":788,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":772,"src":"23755:2:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":791,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"23769:1:0","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":790,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"23761:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":789,"name":"address","nodeType":"ElementaryTypeName","src":"23761:7:0","typeDescriptions":{}}},"id":792,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23761:10:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"23755:16:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"45524332303a207472616e7366657220746f20746865207a65726f2061646472657373","id":794,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"23773:37:0","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":787,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"23747:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":795,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23747:64:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":796,"nodeType":"ExpressionStatement","src":"23747:64:0"},{"expression":{"arguments":[{"id":798,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":770,"src":"23843:4:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":799,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":772,"src":"23849:2:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":800,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":774,"src":"23853:6:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":797,"name":"_beforeTokenTransfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1072,"src":"23822:20:0","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":801,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23822:38:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":802,"nodeType":"ExpressionStatement","src":"23822:38:0"},{"assignments":[804],"declarations":[{"constant":false,"id":804,"mutability":"mutable","name":"fromBalance","nameLocation":"23879:11:0","nodeType":"VariableDeclaration","scope":843,"src":"23871:19:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":803,"name":"uint256","nodeType":"ElementaryTypeName","src":"23871:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":808,"initialValue":{"baseExpression":{"id":805,"name":"_balances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":523,"src":"23893:9:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":807,"indexExpression":{"id":806,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":770,"src":"23903:4:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"23893:15:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"23871:37:0"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":812,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":810,"name":"fromBalance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":804,"src":"23926:11:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"id":811,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":774,"src":"23941:6:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"23926:21:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365","id":813,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"23949:40:0","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":809,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"23918:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":814,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"23918:72:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":815,"nodeType":"ExpressionStatement","src":"23918:72:0"},{"id":830,"nodeType":"UncheckedBlock","src":"24000:273:0","statements":[{"expression":{"id":822,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":816,"name":"_balances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":523,"src":"24024:9:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":818,"indexExpression":{"id":817,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":770,"src":"24034:4:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"24024:15:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":821,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":819,"name":"fromBalance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":804,"src":"24042:11:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":820,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":774,"src":"24056:6:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24042:20:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24024:38:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":823,"nodeType":"ExpressionStatement","src":"24024:38:0"},{"expression":{"id":828,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":824,"name":"_balances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":523,"src":"24239:9:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":826,"indexExpression":{"id":825,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":772,"src":"24249:2:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"24239:13:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":827,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":774,"src":"24256:6:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24239:23:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":829,"nodeType":"ExpressionStatement","src":"24239:23:0"}]},{"eventCall":{"arguments":[{"id":832,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":770,"src":"24297:4:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":833,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":772,"src":"24303:2:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":834,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":774,"src":"24307:6:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":831,"name":"Transfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11,"src":"24288:8:0","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":835,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24288:26:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":836,"nodeType":"EmitStatement","src":"24283:31:0"},{"expression":{"arguments":[{"id":838,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":770,"src":"24345:4:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":839,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":772,"src":"24351:2:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":840,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":774,"src":"24355:6:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":837,"name":"_afterTokenTransfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1083,"src":"24325:19:0","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":841,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24325:37:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":842,"nodeType":"ExpressionStatement","src":"24325:37:0"}]},"documentation":{"id":768,"nodeType":"StructuredDocumentation","src":"23103:443:0","text":" @dev Moves `amount` of tokens from `from` to `to`.\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 - `from` cannot be the zero address.\n - `to` cannot be the zero address.\n - `from` must have a balance of at least `amount`."},"id":844,"implemented":true,"kind":"function","modifiers":[],"name":"_transfer","nameLocation":"23560:9:0","nodeType":"FunctionDefinition","parameters":{"id":775,"nodeType":"ParameterList","parameters":[{"constant":false,"id":770,"mutability":"mutable","name":"from","nameLocation":"23587:4:0","nodeType":"VariableDeclaration","scope":844,"src":"23579:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":769,"name":"address","nodeType":"ElementaryTypeName","src":"23579:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":772,"mutability":"mutable","name":"to","nameLocation":"23609:2:0","nodeType":"VariableDeclaration","scope":844,"src":"23601:10:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":771,"name":"address","nodeType":"ElementaryTypeName","src":"23601:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":774,"mutability":"mutable","name":"amount","nameLocation":"23629:6:0","nodeType":"VariableDeclaration","scope":844,"src":"23621:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":773,"name":"uint256","nodeType":"ElementaryTypeName","src":"23621:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"23569:72:0"},"returnParameters":{"id":776,"nodeType":"ParameterList","parameters":[],"src":"23659:0:0"},"scope":1084,"src":"23551:818:0","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":900,"nodeType":"Block","src":"24710:470:0","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":858,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":853,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":847,"src":"24728:7:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":856,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24747:1:0","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":855,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"24739:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":854,"name":"address","nodeType":"ElementaryTypeName","src":"24739:7:0","typeDescriptions":{}}},"id":857,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24739:10:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"24728:21:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"45524332303a206d696e7420746f20746865207a65726f2061646472657373","id":859,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"24751:33:0","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":852,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"24720:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":860,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24720:65:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":861,"nodeType":"ExpressionStatement","src":"24720:65:0"},{"expression":{"arguments":[{"arguments":[{"hexValue":"30","id":865,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"24825:1:0","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":864,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"24817:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":863,"name":"address","nodeType":"ElementaryTypeName","src":"24817:7:0","typeDescriptions":{}}},"id":866,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24817:10:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":867,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":847,"src":"24829:7:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":868,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":849,"src":"24838:6:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":862,"name":"_beforeTokenTransfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1072,"src":"24796:20:0","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":869,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"24796:49:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":870,"nodeType":"ExpressionStatement","src":"24796:49:0"},{"expression":{"id":873,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":871,"name":"_totalSupply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":531,"src":"24856:12:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":872,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":849,"src":"24872:6:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"24856:22:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":874,"nodeType":"ExpressionStatement","src":"24856:22:0"},{"id":881,"nodeType":"UncheckedBlock","src":"24888:175:0","statements":[{"expression":{"id":879,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":875,"name":"_balances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":523,"src":"25024:9:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":877,"indexExpression":{"id":876,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":847,"src":"25034:7:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"25024:18:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"+=","rightHandSide":{"id":878,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":849,"src":"25046:6:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"25024:28:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":880,"nodeType":"ExpressionStatement","src":"25024:28:0"}]},{"eventCall":{"arguments":[{"arguments":[{"hexValue":"30","id":885,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25094:1:0","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":884,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"25086:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":883,"name":"address","nodeType":"ElementaryTypeName","src":"25086:7:0","typeDescriptions":{}}},"id":886,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25086:10:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":887,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":847,"src":"25098:7:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":888,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":849,"src":"25107:6:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":882,"name":"Transfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11,"src":"25077:8:0","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":889,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25077:37:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":890,"nodeType":"EmitStatement","src":"25072:42:0"},{"expression":{"arguments":[{"arguments":[{"hexValue":"30","id":894,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25153:1:0","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":893,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"25145:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":892,"name":"address","nodeType":"ElementaryTypeName","src":"25145:7:0","typeDescriptions":{}}},"id":895,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25145:10:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":896,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":847,"src":"25157:7:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":897,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":849,"src":"25166:6:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":891,"name":"_afterTokenTransfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1083,"src":"25125:19:0","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":898,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25125:48:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":899,"nodeType":"ExpressionStatement","src":"25125:48:0"}]},"documentation":{"id":845,"nodeType":"StructuredDocumentation","src":"24375:265:0","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":901,"implemented":true,"kind":"function","modifiers":[],"name":"_mint","nameLocation":"24654:5:0","nodeType":"FunctionDefinition","parameters":{"id":850,"nodeType":"ParameterList","parameters":[{"constant":false,"id":847,"mutability":"mutable","name":"account","nameLocation":"24668:7:0","nodeType":"VariableDeclaration","scope":901,"src":"24660:15:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":846,"name":"address","nodeType":"ElementaryTypeName","src":"24660:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":849,"mutability":"mutable","name":"amount","nameLocation":"24685:6:0","nodeType":"VariableDeclaration","scope":901,"src":"24677:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":848,"name":"uint256","nodeType":"ElementaryTypeName","src":"24677:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"24659:33:0"},"returnParameters":{"id":851,"nodeType":"ParameterList","parameters":[],"src":"24710:0:0"},"scope":1084,"src":"24645:535:0","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":972,"nodeType":"Block","src":"25565:594:0","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":915,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":910,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":904,"src":"25583:7:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":913,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25602:1:0","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":912,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"25594:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":911,"name":"address","nodeType":"ElementaryTypeName","src":"25594:7:0","typeDescriptions":{}}},"id":914,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25594:10:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"25583:21:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"45524332303a206275726e2066726f6d20746865207a65726f2061646472657373","id":916,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"25606:35:0","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":909,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"25575:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":917,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25575:67:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":918,"nodeType":"ExpressionStatement","src":"25575:67:0"},{"expression":{"arguments":[{"id":920,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":904,"src":"25674:7:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"hexValue":"30","id":923,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"25691:1:0","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":922,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"25683:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":921,"name":"address","nodeType":"ElementaryTypeName","src":"25683:7:0","typeDescriptions":{}}},"id":924,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25683:10:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":925,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":906,"src":"25695:6:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":919,"name":"_beforeTokenTransfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1072,"src":"25653:20:0","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":926,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25653:49:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":927,"nodeType":"ExpressionStatement","src":"25653:49:0"},{"assignments":[929],"declarations":[{"constant":false,"id":929,"mutability":"mutable","name":"accountBalance","nameLocation":"25721:14:0","nodeType":"VariableDeclaration","scope":972,"src":"25713:22:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":928,"name":"uint256","nodeType":"ElementaryTypeName","src":"25713:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":933,"initialValue":{"baseExpression":{"id":930,"name":"_balances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":523,"src":"25738:9:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":932,"indexExpression":{"id":931,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":904,"src":"25748:7:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"25738:18:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"25713:43:0"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":937,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":935,"name":"accountBalance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":929,"src":"25774:14:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"id":936,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":906,"src":"25792:6:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"25774:24:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"45524332303a206275726e20616d6f756e7420657863656564732062616c616e6365","id":938,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"25800:36:0","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":934,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"25766:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":939,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"25766:71:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":940,"nodeType":"ExpressionStatement","src":"25766:71:0"},{"id":953,"nodeType":"UncheckedBlock","src":"25847:194:0","statements":[{"expression":{"id":947,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":941,"name":"_balances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":523,"src":"25871:9:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":943,"indexExpression":{"id":942,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":904,"src":"25881:7:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"25871:18:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":946,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":944,"name":"accountBalance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":929,"src":"25892:14:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":945,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":906,"src":"25909:6:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"25892:23:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"25871:44:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":948,"nodeType":"ExpressionStatement","src":"25871:44:0"},{"expression":{"id":951,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":949,"name":"_totalSupply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":531,"src":"26008:12:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"-=","rightHandSide":{"id":950,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":906,"src":"26024:6:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"26008:22:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":952,"nodeType":"ExpressionStatement","src":"26008:22:0"}]},{"eventCall":{"arguments":[{"id":955,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":904,"src":"26065:7:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"hexValue":"30","id":958,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26082:1:0","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":957,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"26074:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":956,"name":"address","nodeType":"ElementaryTypeName","src":"26074:7:0","typeDescriptions":{}}},"id":959,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26074:10:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":960,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":906,"src":"26086:6:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":954,"name":"Transfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":11,"src":"26056:8:0","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":961,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26056:37:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":962,"nodeType":"EmitStatement","src":"26051:42:0"},{"expression":{"arguments":[{"id":964,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":904,"src":"26124:7:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"hexValue":"30","id":967,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26141:1:0","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":966,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"26133:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":965,"name":"address","nodeType":"ElementaryTypeName","src":"26133:7:0","typeDescriptions":{}}},"id":968,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26133:10:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":969,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":906,"src":"26145:6:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":963,"name":"_afterTokenTransfer","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1083,"src":"26104:19:0","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":970,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26104:48:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":971,"nodeType":"ExpressionStatement","src":"26104:48:0"}]},"documentation":{"id":902,"nodeType":"StructuredDocumentation","src":"25186:309:0","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":973,"implemented":true,"kind":"function","modifiers":[],"name":"_burn","nameLocation":"25509:5:0","nodeType":"FunctionDefinition","parameters":{"id":907,"nodeType":"ParameterList","parameters":[{"constant":false,"id":904,"mutability":"mutable","name":"account","nameLocation":"25523:7:0","nodeType":"VariableDeclaration","scope":973,"src":"25515:15:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":903,"name":"address","nodeType":"ElementaryTypeName","src":"25515:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":906,"mutability":"mutable","name":"amount","nameLocation":"25540:6:0","nodeType":"VariableDeclaration","scope":973,"src":"25532:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":905,"name":"uint256","nodeType":"ElementaryTypeName","src":"25532:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"25514:33:0"},"returnParameters":{"id":908,"nodeType":"ParameterList","parameters":[],"src":"25565:0:0"},"scope":1084,"src":"25500:659:0","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":1017,"nodeType":"Block","src":"26695:257:0","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":989,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":984,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":976,"src":"26713:5:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":987,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26730:1:0","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":986,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"26722:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":985,"name":"address","nodeType":"ElementaryTypeName","src":"26722:7:0","typeDescriptions":{}}},"id":988,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26722:10:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"26713:19:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"45524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373","id":990,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"26734:38:0","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":983,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"26705:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":991,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26705:68:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":992,"nodeType":"ExpressionStatement","src":"26705:68:0"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":999,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":994,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":978,"src":"26791:7:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":997,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"26810:1:0","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":996,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"26802:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":995,"name":"address","nodeType":"ElementaryTypeName","src":"26802:7:0","typeDescriptions":{}}},"id":998,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26802:10:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"26791:21:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"45524332303a20617070726f766520746f20746865207a65726f2061646472657373","id":1000,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"26814:36:0","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":993,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"26783:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1001,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26783:68:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1002,"nodeType":"ExpressionStatement","src":"26783:68:0"},{"expression":{"id":1009,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"baseExpression":{"id":1003,"name":"_allowances","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":529,"src":"26862:11:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_address_$_t_uint256_$_$","typeString":"mapping(address => mapping(address => uint256))"}},"id":1006,"indexExpression":{"id":1004,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":976,"src":"26874:5:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"26862:18:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":1007,"indexExpression":{"id":1005,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":978,"src":"26881:7:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"26862:27:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":1008,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":980,"src":"26892:6:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"26862:36:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1010,"nodeType":"ExpressionStatement","src":"26862:36:0"},{"eventCall":{"arguments":[{"id":1012,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":976,"src":"26922:5:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1013,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":978,"src":"26929:7:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1014,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":980,"src":"26938:6:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1011,"name":"Approval","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":20,"src":"26913:8:0","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":1015,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"26913:32:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1016,"nodeType":"EmitStatement","src":"26908:37:0"}]},"documentation":{"id":974,"nodeType":"StructuredDocumentation","src":"26165:412:0","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":1018,"implemented":true,"kind":"function","modifiers":[],"name":"_approve","nameLocation":"26591:8:0","nodeType":"FunctionDefinition","parameters":{"id":981,"nodeType":"ParameterList","parameters":[{"constant":false,"id":976,"mutability":"mutable","name":"owner","nameLocation":"26617:5:0","nodeType":"VariableDeclaration","scope":1018,"src":"26609:13:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":975,"name":"address","nodeType":"ElementaryTypeName","src":"26609:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":978,"mutability":"mutable","name":"spender","nameLocation":"26640:7:0","nodeType":"VariableDeclaration","scope":1018,"src":"26632:15:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":977,"name":"address","nodeType":"ElementaryTypeName","src":"26632:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":980,"mutability":"mutable","name":"amount","nameLocation":"26665:6:0","nodeType":"VariableDeclaration","scope":1018,"src":"26657:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":979,"name":"uint256","nodeType":"ElementaryTypeName","src":"26657:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"26599:78:0"},"returnParameters":{"id":982,"nodeType":"ParameterList","parameters":[],"src":"26695:0:0"},"scope":1084,"src":"26582:370:0","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":1060,"nodeType":"Block","src":"27353:321:0","statements":[{"assignments":[1029],"declarations":[{"constant":false,"id":1029,"mutability":"mutable","name":"currentAllowance","nameLocation":"27371:16:0","nodeType":"VariableDeclaration","scope":1060,"src":"27363:24:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1028,"name":"uint256","nodeType":"ElementaryTypeName","src":"27363:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1034,"initialValue":{"arguments":[{"id":1031,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1021,"src":"27400:5:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1032,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1023,"src":"27407:7:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"id":1030,"name":"allowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":639,"src":"27390:9:0","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_address_$returns$_t_uint256_$","typeString":"function (address,address) view returns (uint256)"}},"id":1033,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27390:25:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"27363:52:0"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1041,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1035,"name":"currentAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1029,"src":"27429:16:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"expression":{"arguments":[{"id":1038,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"27454:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":1037,"name":"uint256","nodeType":"ElementaryTypeName","src":"27454:7:0","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"}],"id":1036,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"27449:4:0","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":1039,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27449:13:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint256","typeString":"type(uint256)"}},"id":1040,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"27463:3:0","memberName":"max","nodeType":"MemberAccess","src":"27449:17:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"27429:37:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1059,"nodeType":"IfStatement","src":"27425:243:0","trueBody":{"id":1058,"nodeType":"Block","src":"27468:200:0","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1045,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1043,"name":"currentAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1029,"src":"27490:16:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"id":1044,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1025,"src":"27510:6:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"27490:26:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"45524332303a20696e73756666696369656e7420616c6c6f77616e6365","id":1046,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"27518:31:0","typeDescriptions":{"typeIdentifier":"t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe","typeString":"literal_string \"ERC20: insufficient allowance\""},"value":"ERC20: insufficient allowance"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe","typeString":"literal_string \"ERC20: insufficient allowance\""}],"id":1042,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"27482:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1047,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27482:68:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1048,"nodeType":"ExpressionStatement","src":"27482:68:0"},{"id":1057,"nodeType":"UncheckedBlock","src":"27564:94:0","statements":[{"expression":{"arguments":[{"id":1050,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1021,"src":"27601:5:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1051,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1023,"src":"27608:7:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1054,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1052,"name":"currentAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1029,"src":"27617:16:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":1053,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1025,"src":"27636:6:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"27617:25:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1049,"name":"_approve","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1018,"src":"27592:8:0","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":1055,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"27592:51:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1056,"nodeType":"ExpressionStatement","src":"27592:51:0"}]}]}}]},"documentation":{"id":1019,"nodeType":"StructuredDocumentation","src":"26958:270:0","text":" @dev Updates `owner` s allowance for `spender` based on spent `amount`.\n Does not update the allowance amount in case of infinite allowance.\n Revert if not enough allowance is available.\n Might emit an {Approval} event."},"id":1061,"implemented":true,"kind":"function","modifiers":[],"name":"_spendAllowance","nameLocation":"27242:15:0","nodeType":"FunctionDefinition","parameters":{"id":1026,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1021,"mutability":"mutable","name":"owner","nameLocation":"27275:5:0","nodeType":"VariableDeclaration","scope":1061,"src":"27267:13:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1020,"name":"address","nodeType":"ElementaryTypeName","src":"27267:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1023,"mutability":"mutable","name":"spender","nameLocation":"27298:7:0","nodeType":"VariableDeclaration","scope":1061,"src":"27290:15:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1022,"name":"address","nodeType":"ElementaryTypeName","src":"27290:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1025,"mutability":"mutable","name":"amount","nameLocation":"27323:6:0","nodeType":"VariableDeclaration","scope":1061,"src":"27315:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1024,"name":"uint256","nodeType":"ElementaryTypeName","src":"27315:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"27257:78:0"},"returnParameters":{"id":1027,"nodeType":"ParameterList","parameters":[],"src":"27353:0:0"},"scope":1084,"src":"27233:441:0","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":1071,"nodeType":"Block","src":"28377:2:0","statements":[]},"documentation":{"id":1062,"nodeType":"StructuredDocumentation","src":"27680:573:0","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":1072,"implemented":true,"kind":"function","modifiers":[],"name":"_beforeTokenTransfer","nameLocation":"28267:20:0","nodeType":"FunctionDefinition","parameters":{"id":1069,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1064,"mutability":"mutable","name":"from","nameLocation":"28305:4:0","nodeType":"VariableDeclaration","scope":1072,"src":"28297:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1063,"name":"address","nodeType":"ElementaryTypeName","src":"28297:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1066,"mutability":"mutable","name":"to","nameLocation":"28327:2:0","nodeType":"VariableDeclaration","scope":1072,"src":"28319:10:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1065,"name":"address","nodeType":"ElementaryTypeName","src":"28319:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1068,"mutability":"mutable","name":"amount","nameLocation":"28347:6:0","nodeType":"VariableDeclaration","scope":1072,"src":"28339:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1067,"name":"uint256","nodeType":"ElementaryTypeName","src":"28339:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"28287:72:0"},"returnParameters":{"id":1070,"nodeType":"ParameterList","parameters":[],"src":"28377:0:0"},"scope":1084,"src":"28258:121:0","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":1082,"nodeType":"Block","src":"29085:2:0","statements":[]},"documentation":{"id":1073,"nodeType":"StructuredDocumentation","src":"28385:577:0","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":1083,"implemented":true,"kind":"function","modifiers":[],"name":"_afterTokenTransfer","nameLocation":"28976:19:0","nodeType":"FunctionDefinition","parameters":{"id":1080,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1075,"mutability":"mutable","name":"from","nameLocation":"29013:4:0","nodeType":"VariableDeclaration","scope":1083,"src":"29005:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1074,"name":"address","nodeType":"ElementaryTypeName","src":"29005:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1077,"mutability":"mutable","name":"to","nameLocation":"29035:2:0","nodeType":"VariableDeclaration","scope":1083,"src":"29027:10:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1076,"name":"address","nodeType":"ElementaryTypeName","src":"29027:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1079,"mutability":"mutable","name":"amount","nameLocation":"29055:6:0","nodeType":"VariableDeclaration","scope":1083,"src":"29047:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1078,"name":"uint256","nodeType":"ElementaryTypeName","src":"29047:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"28995:72:0"},"returnParameters":{"id":1081,"nodeType":"ParameterList","parameters":[],"src":"29085:0:0"},"scope":1084,"src":"28967:120:0","stateMutability":"nonpayable","virtual":true,"visibility":"internal"}],"scope":7298,"src":"17531:11558:0","usedErrors":[],"usedEvents":[11,20]},{"id":1085,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"29213:23:0"},{"abstract":false,"baseContracts":[],"canonicalName":"IGovernancePowerDelegationToken","contractDependencies":[],"contractKind":"interface","fullyImplemented":false,"id":1167,"linearizedBaseContracts":[1167],"name":"IGovernancePowerDelegationToken","nameLocation":"29248:31:0","nodeType":"ContractDefinition","nodes":[{"canonicalName":"IGovernancePowerDelegationToken.DelegationType","id":1088,"members":[{"id":1086,"name":"VOTING_POWER","nameLocation":"29310:12:0","nodeType":"EnumValue","src":"29310:12:0"},{"id":1087,"name":"PROPOSITION_POWER","nameLocation":"29328:17:0","nodeType":"EnumValue","src":"29328:17:0"}],"name":"DelegationType","nameLocation":"29289:14:0","nodeType":"EnumDefinition","src":"29284:65:0"},{"anonymous":false,"documentation":{"id":1089,"nodeType":"StructuredDocumentation","src":"29353:217:0","text":" @dev emitted when a user delegates to another\n @param delegator the delegator\n @param delegatee the delegatee\n @param delegationType the type of delegation (VOTING_POWER, PROPOSITION_POWER)*"},"eventSelector":"e8d51c8e11bd570db1734c8ec775785330e77007feed45c43b608ef33ff914bd","id":1098,"name":"DelegateChanged","nameLocation":"29579:15:0","nodeType":"EventDefinition","parameters":{"id":1097,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1091,"indexed":true,"mutability":"mutable","name":"delegator","nameLocation":"29616:9:0","nodeType":"VariableDeclaration","scope":1098,"src":"29600:25:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1090,"name":"address","nodeType":"ElementaryTypeName","src":"29600:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1093,"indexed":true,"mutability":"mutable","name":"delegatee","nameLocation":"29647:9:0","nodeType":"VariableDeclaration","scope":1098,"src":"29631:25:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1092,"name":"address","nodeType":"ElementaryTypeName","src":"29631:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1096,"indexed":false,"mutability":"mutable","name":"delegationType","nameLocation":"29677:14:0","nodeType":"VariableDeclaration","scope":1098,"src":"29662:29:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_DelegationType_$1088","typeString":"enum IGovernancePowerDelegationToken.DelegationType"},"typeName":{"id":1095,"nodeType":"UserDefinedTypeName","pathNode":{"id":1094,"name":"DelegationType","nameLocations":["29662:14:0"],"nodeType":"IdentifierPath","referencedDeclaration":1088,"src":"29662:14:0"},"referencedDeclaration":1088,"src":"29662:14:0","typeDescriptions":{"typeIdentifier":"t_enum$_DelegationType_$1088","typeString":"enum IGovernancePowerDelegationToken.DelegationType"}},"visibility":"internal"}],"src":"29594:101:0"},"src":"29573:123:0"},{"anonymous":false,"documentation":{"id":1099,"nodeType":"StructuredDocumentation","src":"29700:287:0","text":" @dev emitted when an action changes the delegated power of a user\n @param user the user which delegated power has changed\n @param amount the amount of delegated power for the user\n @param delegationType the type of delegation (VOTING_POWER, PROPOSITION_POWER)*"},"eventSelector":"a0a19463ee116110c9b282012d9b65cc5522dc38a9520340cbaf3142e550127f","id":1108,"name":"DelegatedPowerChanged","nameLocation":"29996:21:0","nodeType":"EventDefinition","parameters":{"id":1107,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1101,"indexed":true,"mutability":"mutable","name":"user","nameLocation":"30039:4:0","nodeType":"VariableDeclaration","scope":1108,"src":"30023:20:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1100,"name":"address","nodeType":"ElementaryTypeName","src":"30023:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1103,"indexed":false,"mutability":"mutable","name":"amount","nameLocation":"30057:6:0","nodeType":"VariableDeclaration","scope":1108,"src":"30049:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1102,"name":"uint256","nodeType":"ElementaryTypeName","src":"30049:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1106,"indexed":false,"mutability":"mutable","name":"delegationType","nameLocation":"30084:14:0","nodeType":"VariableDeclaration","scope":1108,"src":"30069:29:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_DelegationType_$1088","typeString":"enum IGovernancePowerDelegationToken.DelegationType"},"typeName":{"id":1105,"nodeType":"UserDefinedTypeName","pathNode":{"id":1104,"name":"DelegationType","nameLocations":["30069:14:0"],"nodeType":"IdentifierPath","referencedDeclaration":1088,"src":"30069:14:0"},"referencedDeclaration":1088,"src":"30069:14:0","typeDescriptions":{"typeIdentifier":"t_enum$_DelegationType_$1088","typeString":"enum IGovernancePowerDelegationToken.DelegationType"}},"visibility":"internal"}],"src":"30017:85:0"},"src":"29990:113:0"},{"documentation":{"id":1109,"nodeType":"StructuredDocumentation","src":"30107:213:0","text":" @dev delegates the specific power to a delegatee\n @param delegatee the user which delegated power has changed\n @param delegationType the type of delegation (VOTING_POWER, PROPOSITION_POWER)*"},"functionSelector":"dc937e1c","id":1117,"implemented":false,"kind":"function","modifiers":[],"name":"delegateByType","nameLocation":"30332:14:0","nodeType":"FunctionDefinition","parameters":{"id":1115,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1111,"mutability":"mutable","name":"delegatee","nameLocation":"30355:9:0","nodeType":"VariableDeclaration","scope":1117,"src":"30347:17:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1110,"name":"address","nodeType":"ElementaryTypeName","src":"30347:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1114,"mutability":"mutable","name":"delegationType","nameLocation":"30381:14:0","nodeType":"VariableDeclaration","scope":1117,"src":"30366:29:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_DelegationType_$1088","typeString":"enum IGovernancePowerDelegationToken.DelegationType"},"typeName":{"id":1113,"nodeType":"UserDefinedTypeName","pathNode":{"id":1112,"name":"DelegationType","nameLocations":["30366:14:0"],"nodeType":"IdentifierPath","referencedDeclaration":1088,"src":"30366:14:0"},"referencedDeclaration":1088,"src":"30366:14:0","typeDescriptions":{"typeIdentifier":"t_enum$_DelegationType_$1088","typeString":"enum IGovernancePowerDelegationToken.DelegationType"}},"visibility":"internal"}],"src":"30346:50:0"},"returnParameters":{"id":1116,"nodeType":"ParameterList","parameters":[],"src":"30409:0:0"},"scope":1167,"src":"30323:87:0","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":1118,"nodeType":"StructuredDocumentation","src":"30414:132:0","text":" @dev delegates all the powers to a specific user\n @param delegatee the user to which the power will be delegated*"},"functionSelector":"5c19a95c","id":1123,"implemented":false,"kind":"function","modifiers":[],"name":"delegate","nameLocation":"30558:8:0","nodeType":"FunctionDefinition","parameters":{"id":1121,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1120,"mutability":"mutable","name":"delegatee","nameLocation":"30575:9:0","nodeType":"VariableDeclaration","scope":1123,"src":"30567:17:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1119,"name":"address","nodeType":"ElementaryTypeName","src":"30567:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"30566:19:0"},"returnParameters":{"id":1122,"nodeType":"ParameterList","parameters":[],"src":"30594:0:0"},"scope":1167,"src":"30549:46:0","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"documentation":{"id":1124,"nodeType":"StructuredDocumentation","src":"30599:104:0","text":" @dev returns the delegatee of an user\n @param delegator the address of the delegator*"},"functionSelector":"6f50458d","id":1134,"implemented":false,"kind":"function","modifiers":[],"name":"getDelegateeByType","nameLocation":"30715:18:0","nodeType":"FunctionDefinition","parameters":{"id":1130,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1126,"mutability":"mutable","name":"delegator","nameLocation":"30742:9:0","nodeType":"VariableDeclaration","scope":1134,"src":"30734:17:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1125,"name":"address","nodeType":"ElementaryTypeName","src":"30734:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1129,"mutability":"mutable","name":"delegationType","nameLocation":"30768:14:0","nodeType":"VariableDeclaration","scope":1134,"src":"30753:29:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_DelegationType_$1088","typeString":"enum IGovernancePowerDelegationToken.DelegationType"},"typeName":{"id":1128,"nodeType":"UserDefinedTypeName","pathNode":{"id":1127,"name":"DelegationType","nameLocations":["30753:14:0"],"nodeType":"IdentifierPath","referencedDeclaration":1088,"src":"30753:14:0"},"referencedDeclaration":1088,"src":"30753:14:0","typeDescriptions":{"typeIdentifier":"t_enum$_DelegationType_$1088","typeString":"enum IGovernancePowerDelegationToken.DelegationType"}},"visibility":"internal"}],"src":"30733:50:0"},"returnParameters":{"id":1133,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1132,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1134,"src":"30819:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1131,"name":"address","nodeType":"ElementaryTypeName","src":"30819:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"30818:9:0"},"scope":1167,"src":"30706:122:0","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":1135,"nodeType":"StructuredDocumentation","src":"30832:172:0","text":" @dev returns the current delegated power of a user. The current power is the\n power delegated at the time of the last snapshot\n @param user the user*"},"functionSelector":"b2f4201d","id":1145,"implemented":false,"kind":"function","modifiers":[],"name":"getPowerCurrent","nameLocation":"31016:15:0","nodeType":"FunctionDefinition","parameters":{"id":1141,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1137,"mutability":"mutable","name":"user","nameLocation":"31040:4:0","nodeType":"VariableDeclaration","scope":1145,"src":"31032:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1136,"name":"address","nodeType":"ElementaryTypeName","src":"31032:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1140,"mutability":"mutable","name":"delegationType","nameLocation":"31061:14:0","nodeType":"VariableDeclaration","scope":1145,"src":"31046:29:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_DelegationType_$1088","typeString":"enum IGovernancePowerDelegationToken.DelegationType"},"typeName":{"id":1139,"nodeType":"UserDefinedTypeName","pathNode":{"id":1138,"name":"DelegationType","nameLocations":["31046:14:0"],"nodeType":"IdentifierPath","referencedDeclaration":1088,"src":"31046:14:0"},"referencedDeclaration":1088,"src":"31046:14:0","typeDescriptions":{"typeIdentifier":"t_enum$_DelegationType_$1088","typeString":"enum IGovernancePowerDelegationToken.DelegationType"}},"visibility":"internal"}],"src":"31031:45:0"},"returnParameters":{"id":1144,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1143,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1145,"src":"31112:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1142,"name":"uint256","nodeType":"ElementaryTypeName","src":"31112:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"31111:9:0"},"scope":1167,"src":"31007:114:0","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":1146,"nodeType":"StructuredDocumentation","src":"31125:103:0","text":" @dev returns the delegated power of a user at a certain block\n @param user the user*"},"functionSelector":"c2ffbb91","id":1158,"implemented":false,"kind":"function","modifiers":[],"name":"getPowerAtBlock","nameLocation":"31240:15:0","nodeType":"FunctionDefinition","parameters":{"id":1154,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1148,"mutability":"mutable","name":"user","nameLocation":"31269:4:0","nodeType":"VariableDeclaration","scope":1158,"src":"31261:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1147,"name":"address","nodeType":"ElementaryTypeName","src":"31261:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1150,"mutability":"mutable","name":"blockNumber","nameLocation":"31287:11:0","nodeType":"VariableDeclaration","scope":1158,"src":"31279:19:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1149,"name":"uint256","nodeType":"ElementaryTypeName","src":"31279:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1153,"mutability":"mutable","name":"delegationType","nameLocation":"31319:14:0","nodeType":"VariableDeclaration","scope":1158,"src":"31304:29:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_DelegationType_$1088","typeString":"enum IGovernancePowerDelegationToken.DelegationType"},"typeName":{"id":1152,"nodeType":"UserDefinedTypeName","pathNode":{"id":1151,"name":"DelegationType","nameLocations":["31304:14:0"],"nodeType":"IdentifierPath","referencedDeclaration":1088,"src":"31304:14:0"},"referencedDeclaration":1088,"src":"31304:14:0","typeDescriptions":{"typeIdentifier":"t_enum$_DelegationType_$1088","typeString":"enum IGovernancePowerDelegationToken.DelegationType"}},"visibility":"internal"}],"src":"31255:82:0"},"returnParameters":{"id":1157,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1156,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1158,"src":"31361:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1155,"name":"uint256","nodeType":"ElementaryTypeName","src":"31361:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"31360:9:0"},"scope":1167,"src":"31231:139:0","stateMutability":"view","virtual":false,"visibility":"external"},{"documentation":{"id":1159,"nodeType":"StructuredDocumentation","src":"31374:71:0","text":" @dev returns the total supply at a certain block number*"},"functionSelector":"981b24d0","id":1166,"implemented":false,"kind":"function","modifiers":[],"name":"totalSupplyAt","nameLocation":"31457:13:0","nodeType":"FunctionDefinition","parameters":{"id":1162,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1161,"mutability":"mutable","name":"blockNumber","nameLocation":"31479:11:0","nodeType":"VariableDeclaration","scope":1166,"src":"31471:19:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1160,"name":"uint256","nodeType":"ElementaryTypeName","src":"31471:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"31470:21:0"},"returnParameters":{"id":1165,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1164,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1166,"src":"31515:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1163,"name":"uint256","nodeType":"ElementaryTypeName","src":"31515:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"31514:9:0"},"scope":1167,"src":"31448:76:0","stateMutability":"view","virtual":false,"visibility":"external"}],"scope":7298,"src":"29238:2288:0","usedErrors":[],"usedEvents":[1098,1108]},{"id":1168,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"31642:23:0"},{"abstract":true,"baseContracts":[{"baseName":{"id":1170,"name":"ERC20","nameLocations":["31797:5:0"],"nodeType":"IdentifierPath","referencedDeclaration":1084,"src":"31797:5:0"},"id":1171,"nodeType":"InheritanceSpecifier","src":"31797:5:0"},{"baseName":{"id":1172,"name":"IGovernancePowerDelegationToken","nameLocations":["31804:31:0"],"nodeType":"IdentifierPath","referencedDeclaration":1167,"src":"31804:31:0"},"id":1173,"nodeType":"InheritanceSpecifier","src":"31804:31:0"}],"canonicalName":"GovernancePowerDelegationERC20","contractDependencies":[],"contractKind":"contract","documentation":{"id":1169,"nodeType":"StructuredDocumentation","src":"31668:76:0","text":" @notice implementation of the AAVE token contract\n @author Aave"},"fullyImplemented":false,"id":1874,"linearizedBaseContracts":[1874,1167,1084,100,77,511],"name":"GovernancePowerDelegationERC20","nameLocation":"31763:30:0","nodeType":"ContractDefinition","nodes":[{"constant":true,"documentation":{"id":1174,"nodeType":"StructuredDocumentation","src":"31840:79:0","text":"@notice The EIP-712 typehash for the delegation struct used by the contract"},"functionSelector":"aa9fbe02","id":1179,"mutability":"constant","name":"DELEGATE_BY_TYPE_TYPEHASH","nameLocation":"31946:25:0","nodeType":"VariableDeclaration","scope":1874,"src":"31922:148:0","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1175,"name":"bytes32","nodeType":"ElementaryTypeName","src":"31922:7:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"value":{"arguments":[{"hexValue":"44656c656761746542795479706528616464726573732064656c6567617465652c75696e7432353620747970652c75696e74323536206e6f6e63652c75696e743235362065787069727929","id":1177,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"31989:77:0","typeDescriptions":{"typeIdentifier":"t_stringliteral_10d8d059343739efce7dad10d09f0806da52b252b3e6a7951920d2d6ec4102e5","typeString":"literal_string \"DelegateByType(address delegatee,uint256 type,uint256 nonce,uint256 expiry)\""},"value":"DelegateByType(address delegatee,uint256 type,uint256 nonce,uint256 expiry)"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_10d8d059343739efce7dad10d09f0806da52b252b3e6a7951920d2d6ec4102e5","typeString":"literal_string \"DelegateByType(address delegatee,uint256 type,uint256 nonce,uint256 expiry)\""}],"id":1176,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"31974:9:0","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":1178,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"31974:96:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"public"},{"constant":true,"functionSelector":"41cbf54a","id":1184,"mutability":"constant","name":"DELEGATE_TYPEHASH","nameLocation":"32099:17:0","nodeType":"VariableDeclaration","scope":1874,"src":"32075:121:0","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":1180,"name":"bytes32","nodeType":"ElementaryTypeName","src":"32075:7:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"value":{"arguments":[{"hexValue":"44656c656761746528616464726573732064656c6567617465652c75696e74323536206e6f6e63652c75696e743235362065787069727929","id":1182,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"32134:58:0","typeDescriptions":{"typeIdentifier":"t_stringliteral_9a9a49b990ba9bb39f8048c490a40ab25c18f55d208d5fbcf958261a9b48716d","typeString":"literal_string \"Delegate(address delegatee,uint256 nonce,uint256 expiry)\""},"value":"Delegate(address delegatee,uint256 nonce,uint256 expiry)"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_9a9a49b990ba9bb39f8048c490a40ab25c18f55d208d5fbcf958261a9b48716d","typeString":"literal_string \"Delegate(address delegatee,uint256 nonce,uint256 expiry)\""}],"id":1181,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"32119:9:0","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":1183,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"32119:77:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"public"},{"canonicalName":"GovernancePowerDelegationERC20.Snapshot","documentation":{"id":1185,"nodeType":"StructuredDocumentation","src":"32201:64:0","text":"@dev snapshot of a value on a specific block, used for votes"},"id":1190,"members":[{"constant":false,"id":1187,"mutability":"mutable","name":"blockNumber","nameLocation":"32298:11:0","nodeType":"VariableDeclaration","scope":1190,"src":"32290:19:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"},"typeName":{"id":1186,"name":"uint128","nodeType":"ElementaryTypeName","src":"32290:7:0","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"visibility":"internal"},{"constant":false,"id":1189,"mutability":"mutable","name":"value","nameLocation":"32323:5:0","nodeType":"VariableDeclaration","scope":1190,"src":"32315:13:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"},"typeName":{"id":1188,"name":"uint128","nodeType":"ElementaryTypeName","src":"32315:7:0","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"visibility":"internal"}],"name":"Snapshot","nameLocation":"32275:8:0","nodeType":"StructDefinition","scope":1874,"src":"32268:65:0","visibility":"public"},{"baseFunctions":[1117],"body":{"id":1207,"nodeType":"Block","src":"32645:65:0","statements":[{"expression":{"arguments":[{"expression":{"id":1201,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"32667:3:0","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":1202,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"32671:6:0","memberName":"sender","nodeType":"MemberAccess","src":"32667:10:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1203,"name":"delegatee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1193,"src":"32679:9:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1204,"name":"delegationType","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1196,"src":"32690:14:0","typeDescriptions":{"typeIdentifier":"t_enum$_DelegationType_$1088","typeString":"enum IGovernancePowerDelegationToken.DelegationType"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_enum$_DelegationType_$1088","typeString":"enum IGovernancePowerDelegationToken.DelegationType"}],"id":1200,"name":"_delegateByType","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1407,"src":"32651:15:0","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_enum$_DelegationType_$1088_$returns$__$","typeString":"function (address,address,enum IGovernancePowerDelegationToken.DelegationType)"}},"id":1205,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"32651:54:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1206,"nodeType":"ExpressionStatement","src":"32651:54:0"}]},"documentation":{"id":1191,"nodeType":"StructuredDocumentation","src":"32337:213:0","text":" @dev delegates one specific power to a delegatee\n @param delegatee the user which delegated power has changed\n @param delegationType the type of delegation (VOTING_POWER, PROPOSITION_POWER)*"},"functionSelector":"dc937e1c","id":1208,"implemented":true,"kind":"function","modifiers":[],"name":"delegateByType","nameLocation":"32562:14:0","nodeType":"FunctionDefinition","overrides":{"id":1198,"nodeType":"OverrideSpecifier","overrides":[],"src":"32636:8:0"},"parameters":{"id":1197,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1193,"mutability":"mutable","name":"delegatee","nameLocation":"32585:9:0","nodeType":"VariableDeclaration","scope":1208,"src":"32577:17:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1192,"name":"address","nodeType":"ElementaryTypeName","src":"32577:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1196,"mutability":"mutable","name":"delegationType","nameLocation":"32611:14:0","nodeType":"VariableDeclaration","scope":1208,"src":"32596:29:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_DelegationType_$1088","typeString":"enum IGovernancePowerDelegationToken.DelegationType"},"typeName":{"id":1195,"nodeType":"UserDefinedTypeName","pathNode":{"id":1194,"name":"DelegationType","nameLocations":["32596:14:0"],"nodeType":"IdentifierPath","referencedDeclaration":1088,"src":"32596:14:0"},"referencedDeclaration":1088,"src":"32596:14:0","typeDescriptions":{"typeIdentifier":"t_enum$_DelegationType_$1088","typeString":"enum IGovernancePowerDelegationToken.DelegationType"}},"visibility":"internal"}],"src":"32576:50:0"},"returnParameters":{"id":1199,"nodeType":"ParameterList","parameters":[],"src":"32645:0:0"},"scope":1874,"src":"32553:157:0","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"baseFunctions":[1123],"body":{"id":1231,"nodeType":"Block","src":"32904:156:0","statements":[{"expression":{"arguments":[{"expression":{"id":1216,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"32926:3:0","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":1217,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"32930:6:0","memberName":"sender","nodeType":"MemberAccess","src":"32926:10:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1218,"name":"delegatee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1211,"src":"32938:9:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":1219,"name":"DelegationType","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1088,"src":"32949:14:0","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_DelegationType_$1088_$","typeString":"type(enum IGovernancePowerDelegationToken.DelegationType)"}},"id":1220,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"32964:12:0","memberName":"VOTING_POWER","nodeType":"MemberAccess","referencedDeclaration":1086,"src":"32949:27:0","typeDescriptions":{"typeIdentifier":"t_enum$_DelegationType_$1088","typeString":"enum IGovernancePowerDelegationToken.DelegationType"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_enum$_DelegationType_$1088","typeString":"enum IGovernancePowerDelegationToken.DelegationType"}],"id":1215,"name":"_delegateByType","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1407,"src":"32910:15:0","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_enum$_DelegationType_$1088_$returns$__$","typeString":"function (address,address,enum IGovernancePowerDelegationToken.DelegationType)"}},"id":1221,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"32910:67:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1222,"nodeType":"ExpressionStatement","src":"32910:67:0"},{"expression":{"arguments":[{"expression":{"id":1224,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"32999:3:0","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":1225,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"33003:6:0","memberName":"sender","nodeType":"MemberAccess","src":"32999:10:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1226,"name":"delegatee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1211,"src":"33011:9:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":1227,"name":"DelegationType","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1088,"src":"33022:14:0","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_DelegationType_$1088_$","typeString":"type(enum IGovernancePowerDelegationToken.DelegationType)"}},"id":1228,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"33037:17:0","memberName":"PROPOSITION_POWER","nodeType":"MemberAccess","referencedDeclaration":1087,"src":"33022:32:0","typeDescriptions":{"typeIdentifier":"t_enum$_DelegationType_$1088","typeString":"enum IGovernancePowerDelegationToken.DelegationType"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_enum$_DelegationType_$1088","typeString":"enum IGovernancePowerDelegationToken.DelegationType"}],"id":1223,"name":"_delegateByType","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1407,"src":"32983:15:0","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_enum$_DelegationType_$1088_$returns$__$","typeString":"function (address,address,enum IGovernancePowerDelegationToken.DelegationType)"}},"id":1229,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"32983:72:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1230,"nodeType":"ExpressionStatement","src":"32983:72:0"}]},"documentation":{"id":1209,"nodeType":"StructuredDocumentation","src":"32714:132:0","text":" @dev delegates all the powers to a specific user\n @param delegatee the user to which the power will be delegated*"},"functionSelector":"5c19a95c","id":1232,"implemented":true,"kind":"function","modifiers":[],"name":"delegate","nameLocation":"32858:8:0","nodeType":"FunctionDefinition","overrides":{"id":1213,"nodeType":"OverrideSpecifier","overrides":[],"src":"32895:8:0"},"parameters":{"id":1212,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1211,"mutability":"mutable","name":"delegatee","nameLocation":"32875:9:0","nodeType":"VariableDeclaration","scope":1232,"src":"32867:17:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1210,"name":"address","nodeType":"ElementaryTypeName","src":"32867:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"32866:19:0"},"returnParameters":{"id":1214,"nodeType":"ParameterList","parameters":[],"src":"32904:0:0"},"scope":1874,"src":"32849:211:0","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"baseFunctions":[1134],"body":{"id":1257,"nodeType":"Block","src":"33308:154:0","statements":[{"assignments":[null,null,1247],"declarations":[null,null,{"constant":false,"id":1247,"mutability":"mutable","name":"delegates","nameLocation":"33355:9:0","nodeType":"VariableDeclaration","scope":1257,"src":"33319:45:0","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_address_$","typeString":"mapping(address => address)"},"typeName":{"id":1246,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":1244,"name":"address","nodeType":"ElementaryTypeName","src":"33327:7:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"33319:27:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_address_$","typeString":"mapping(address => address)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":1245,"name":"address","nodeType":"ElementaryTypeName","src":"33338:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}},"visibility":"internal"}],"id":1251,"initialValue":{"arguments":[{"id":1249,"name":"delegationType","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1238,"src":"33393:14:0","typeDescriptions":{"typeIdentifier":"t_enum$_DelegationType_$1088","typeString":"enum IGovernancePowerDelegationToken.DelegationType"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_DelegationType_$1088","typeString":"enum IGovernancePowerDelegationToken.DelegationType"}],"id":1248,"name":"_getDelegationDataByType","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1756,"src":"33368:24:0","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_enum$_DelegationType_$1088_$returns$_t_mapping$_t_address_$_t_mapping$_t_uint256_$_t_struct$_Snapshot_$1190_storage_$_$_$_t_mapping$_t_address_$_t_uint256_$_$_t_mapping$_t_address_$_t_address_$_$","typeString":"function (enum IGovernancePowerDelegationToken.DelegationType) view returns (mapping(address => mapping(uint256 => struct GovernancePowerDelegationERC20.Snapshot storage ref)),mapping(address => uint256),mapping(address => address))"}},"id":1250,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"33368:40:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_mapping$_t_address_$_t_mapping$_t_uint256_$_t_struct$_Snapshot_$1190_storage_$_$_$_t_mapping$_t_address_$_t_uint256_$_$_t_mapping$_t_address_$_t_address_$_$","typeString":"tuple(mapping(address => mapping(uint256 => struct GovernancePowerDelegationERC20.Snapshot storage ref)),mapping(address => uint256),mapping(address => address))"}},"nodeType":"VariableDeclarationStatement","src":"33314:94:0"},{"expression":{"arguments":[{"id":1253,"name":"delegator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1235,"src":"33436:9:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1254,"name":"delegates","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1247,"src":"33447:9:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_address_$","typeString":"mapping(address => address)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_mapping$_t_address_$_t_address_$","typeString":"mapping(address => address)"}],"id":1252,"name":"_getDelegatee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1873,"src":"33422:13:0","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_mapping$_t_address_$_t_address_$_$returns$_t_address_$","typeString":"function (address,mapping(address => address)) view returns (address)"}},"id":1255,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"33422:35:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":1243,"id":1256,"nodeType":"Return","src":"33415:42:0"}]},"documentation":{"id":1233,"nodeType":"StructuredDocumentation","src":"33064:104:0","text":" @dev returns the delegatee of an user\n @param delegator the address of the delegator*"},"functionSelector":"6f50458d","id":1258,"implemented":true,"kind":"function","modifiers":[],"name":"getDelegateeByType","nameLocation":"33180:18:0","nodeType":"FunctionDefinition","overrides":{"id":1240,"nodeType":"OverrideSpecifier","overrides":[],"src":"33266:8:0"},"parameters":{"id":1239,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1235,"mutability":"mutable","name":"delegator","nameLocation":"33207:9:0","nodeType":"VariableDeclaration","scope":1258,"src":"33199:17:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1234,"name":"address","nodeType":"ElementaryTypeName","src":"33199:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1238,"mutability":"mutable","name":"delegationType","nameLocation":"33233:14:0","nodeType":"VariableDeclaration","scope":1258,"src":"33218:29:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_DelegationType_$1088","typeString":"enum IGovernancePowerDelegationToken.DelegationType"},"typeName":{"id":1237,"nodeType":"UserDefinedTypeName","pathNode":{"id":1236,"name":"DelegationType","nameLocations":["33218:14:0"],"nodeType":"IdentifierPath","referencedDeclaration":1088,"src":"33218:14:0"},"referencedDeclaration":1088,"src":"33218:14:0","typeDescriptions":{"typeIdentifier":"t_enum$_DelegationType_$1088","typeString":"enum IGovernancePowerDelegationToken.DelegationType"}},"visibility":"internal"}],"src":"33198:50:0"},"returnParameters":{"id":1243,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1242,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1258,"src":"33297:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1241,"name":"address","nodeType":"ElementaryTypeName","src":"33297:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"33296:9:0"},"scope":1874,"src":"33171:291:0","stateMutability":"view","virtual":false,"visibility":"external"},{"baseFunctions":[1145],"body":{"id":1293,"nodeType":"Block","src":"33770:277:0","statements":[{"assignments":[1276,1280,null],"declarations":[{"constant":false,"id":1276,"mutability":"mutable","name":"snapshots","nameLocation":"33841:9:0","nodeType":"VariableDeclaration","scope":1293,"src":"33784:66:0","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_uint256_$_t_struct$_Snapshot_$1190_storage_$_$","typeString":"mapping(address => mapping(uint256 => struct GovernancePowerDelegationERC20.Snapshot))"},"typeName":{"id":1275,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":1270,"name":"address","nodeType":"ElementaryTypeName","src":"33792:7:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"33784:48:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_uint256_$_t_struct$_Snapshot_$1190_storage_$_$","typeString":"mapping(address => mapping(uint256 => struct GovernancePowerDelegationERC20.Snapshot))"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":1274,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":1271,"name":"uint256","nodeType":"ElementaryTypeName","src":"33811:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Mapping","src":"33803:28:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_Snapshot_$1190_storage_$","typeString":"mapping(uint256 => struct GovernancePowerDelegationERC20.Snapshot)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":1273,"nodeType":"UserDefinedTypeName","pathNode":{"id":1272,"name":"Snapshot","nameLocations":["33822:8:0"],"nodeType":"IdentifierPath","referencedDeclaration":1190,"src":"33822:8:0"},"referencedDeclaration":1190,"src":"33822:8:0","typeDescriptions":{"typeIdentifier":"t_struct$_Snapshot_$1190_storage_ptr","typeString":"struct GovernancePowerDelegationERC20.Snapshot"}}}},"visibility":"internal"},{"constant":false,"id":1280,"mutability":"mutable","name":"snapshotsCounts","nameLocation":"33894:15:0","nodeType":"VariableDeclaration","scope":1293,"src":"33858:51:0","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"typeName":{"id":1279,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":1277,"name":"address","nodeType":"ElementaryTypeName","src":"33866:7:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"33858:27:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":1278,"name":"uint256","nodeType":"ElementaryTypeName","src":"33877:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}},"visibility":"internal"},null],"id":1284,"initialValue":{"arguments":[{"id":1282,"name":"delegationType","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1264,"src":"33945:14:0","typeDescriptions":{"typeIdentifier":"t_enum$_DelegationType_$1088","typeString":"enum IGovernancePowerDelegationToken.DelegationType"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_DelegationType_$1088","typeString":"enum IGovernancePowerDelegationToken.DelegationType"}],"id":1281,"name":"_getDelegationDataByType","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1756,"src":"33920:24:0","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_enum$_DelegationType_$1088_$returns$_t_mapping$_t_address_$_t_mapping$_t_uint256_$_t_struct$_Snapshot_$1190_storage_$_$_$_t_mapping$_t_address_$_t_uint256_$_$_t_mapping$_t_address_$_t_address_$_$","typeString":"function (enum IGovernancePowerDelegationToken.DelegationType) view returns (mapping(address => mapping(uint256 => struct GovernancePowerDelegationERC20.Snapshot storage ref)),mapping(address => uint256),mapping(address => address))"}},"id":1283,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"33920:40:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_mapping$_t_address_$_t_mapping$_t_uint256_$_t_struct$_Snapshot_$1190_storage_$_$_$_t_mapping$_t_address_$_t_uint256_$_$_t_mapping$_t_address_$_t_address_$_$","typeString":"tuple(mapping(address => mapping(uint256 => struct GovernancePowerDelegationERC20.Snapshot storage ref)),mapping(address => uint256),mapping(address => address))"}},"nodeType":"VariableDeclarationStatement","src":"33776:184:0"},{"expression":{"arguments":[{"id":1286,"name":"snapshots","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1276,"src":"33995:9:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_uint256_$_t_struct$_Snapshot_$1190_storage_$_$","typeString":"mapping(address => mapping(uint256 => struct GovernancePowerDelegationERC20.Snapshot storage ref))"}},{"id":1287,"name":"snapshotsCounts","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1280,"src":"34006:15:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},{"id":1288,"name":"user","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1261,"src":"34023:4:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":1289,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"34029:5:0","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":1290,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"34035:6:0","memberName":"number","nodeType":"MemberAccess","src":"34029:12:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_uint256_$_t_struct$_Snapshot_$1190_storage_$_$","typeString":"mapping(address => mapping(uint256 => struct GovernancePowerDelegationERC20.Snapshot storage ref))"},{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1285,"name":"_searchByBlockNumber","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1637,"src":"33974:20:0","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_mapping$_t_address_$_t_mapping$_t_uint256_$_t_struct$_Snapshot_$1190_storage_$_$_$_t_mapping$_t_address_$_t_uint256_$_$_t_address_$_t_uint256_$returns$_t_uint256_$","typeString":"function (mapping(address => mapping(uint256 => struct GovernancePowerDelegationERC20.Snapshot storage ref)),mapping(address => uint256),address,uint256) view returns (uint256)"}},"id":1291,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"33974:68:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":1269,"id":1292,"nodeType":"Return","src":"33967:75:0"}]},"documentation":{"id":1259,"nodeType":"StructuredDocumentation","src":"33466:172:0","text":" @dev returns the current delegated power of a user. The current power is the\n power delegated at the time of the last snapshot\n @param user the user*"},"functionSelector":"b2f4201d","id":1294,"implemented":true,"kind":"function","modifiers":[],"name":"getPowerCurrent","nameLocation":"33650:15:0","nodeType":"FunctionDefinition","overrides":{"id":1266,"nodeType":"OverrideSpecifier","overrides":[],"src":"33728:8:0"},"parameters":{"id":1265,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1261,"mutability":"mutable","name":"user","nameLocation":"33674:4:0","nodeType":"VariableDeclaration","scope":1294,"src":"33666:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1260,"name":"address","nodeType":"ElementaryTypeName","src":"33666:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1264,"mutability":"mutable","name":"delegationType","nameLocation":"33695:14:0","nodeType":"VariableDeclaration","scope":1294,"src":"33680:29:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_DelegationType_$1088","typeString":"enum IGovernancePowerDelegationToken.DelegationType"},"typeName":{"id":1263,"nodeType":"UserDefinedTypeName","pathNode":{"id":1262,"name":"DelegationType","nameLocations":["33680:14:0"],"nodeType":"IdentifierPath","referencedDeclaration":1088,"src":"33680:14:0"},"referencedDeclaration":1088,"src":"33680:14:0","typeDescriptions":{"typeIdentifier":"t_enum$_DelegationType_$1088","typeString":"enum IGovernancePowerDelegationToken.DelegationType"}},"visibility":"internal"}],"src":"33665:45:0"},"returnParameters":{"id":1269,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1268,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1294,"src":"33759:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1267,"name":"uint256","nodeType":"ElementaryTypeName","src":"33759:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"33758:9:0"},"scope":1874,"src":"33641:406:0","stateMutability":"view","virtual":false,"visibility":"external"},{"baseFunctions":[1158],"body":{"id":1330,"nodeType":"Block","src":"34305:276:0","statements":[{"assignments":[1314,1318,null],"declarations":[{"constant":false,"id":1314,"mutability":"mutable","name":"snapshots","nameLocation":"34376:9:0","nodeType":"VariableDeclaration","scope":1330,"src":"34319:66:0","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_uint256_$_t_struct$_Snapshot_$1190_storage_$_$","typeString":"mapping(address => mapping(uint256 => struct GovernancePowerDelegationERC20.Snapshot))"},"typeName":{"id":1313,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":1308,"name":"address","nodeType":"ElementaryTypeName","src":"34327:7:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"34319:48:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_uint256_$_t_struct$_Snapshot_$1190_storage_$_$","typeString":"mapping(address => mapping(uint256 => struct GovernancePowerDelegationERC20.Snapshot))"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":1312,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":1309,"name":"uint256","nodeType":"ElementaryTypeName","src":"34346:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Mapping","src":"34338:28:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_Snapshot_$1190_storage_$","typeString":"mapping(uint256 => struct GovernancePowerDelegationERC20.Snapshot)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":1311,"nodeType":"UserDefinedTypeName","pathNode":{"id":1310,"name":"Snapshot","nameLocations":["34357:8:0"],"nodeType":"IdentifierPath","referencedDeclaration":1190,"src":"34357:8:0"},"referencedDeclaration":1190,"src":"34357:8:0","typeDescriptions":{"typeIdentifier":"t_struct$_Snapshot_$1190_storage_ptr","typeString":"struct GovernancePowerDelegationERC20.Snapshot"}}}},"visibility":"internal"},{"constant":false,"id":1318,"mutability":"mutable","name":"snapshotsCounts","nameLocation":"34429:15:0","nodeType":"VariableDeclaration","scope":1330,"src":"34393:51:0","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"typeName":{"id":1317,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":1315,"name":"address","nodeType":"ElementaryTypeName","src":"34401:7:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"34393:27:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":1316,"name":"uint256","nodeType":"ElementaryTypeName","src":"34412:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}},"visibility":"internal"},null],"id":1322,"initialValue":{"arguments":[{"id":1320,"name":"delegationType","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1302,"src":"34480:14:0","typeDescriptions":{"typeIdentifier":"t_enum$_DelegationType_$1088","typeString":"enum IGovernancePowerDelegationToken.DelegationType"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_DelegationType_$1088","typeString":"enum IGovernancePowerDelegationToken.DelegationType"}],"id":1319,"name":"_getDelegationDataByType","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1756,"src":"34455:24:0","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_enum$_DelegationType_$1088_$returns$_t_mapping$_t_address_$_t_mapping$_t_uint256_$_t_struct$_Snapshot_$1190_storage_$_$_$_t_mapping$_t_address_$_t_uint256_$_$_t_mapping$_t_address_$_t_address_$_$","typeString":"function (enum IGovernancePowerDelegationToken.DelegationType) view returns (mapping(address => mapping(uint256 => struct GovernancePowerDelegationERC20.Snapshot storage ref)),mapping(address => uint256),mapping(address => address))"}},"id":1321,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"34455:40:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_mapping$_t_address_$_t_mapping$_t_uint256_$_t_struct$_Snapshot_$1190_storage_$_$_$_t_mapping$_t_address_$_t_uint256_$_$_t_mapping$_t_address_$_t_address_$_$","typeString":"tuple(mapping(address => mapping(uint256 => struct GovernancePowerDelegationERC20.Snapshot storage ref)),mapping(address => uint256),mapping(address => address))"}},"nodeType":"VariableDeclarationStatement","src":"34311:184:0"},{"expression":{"arguments":[{"id":1324,"name":"snapshots","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1314,"src":"34530:9:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_uint256_$_t_struct$_Snapshot_$1190_storage_$_$","typeString":"mapping(address => mapping(uint256 => struct GovernancePowerDelegationERC20.Snapshot storage ref))"}},{"id":1325,"name":"snapshotsCounts","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1318,"src":"34541:15:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},{"id":1326,"name":"user","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1297,"src":"34558:4:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1327,"name":"blockNumber","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1299,"src":"34564:11:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_uint256_$_t_struct$_Snapshot_$1190_storage_$_$","typeString":"mapping(address => mapping(uint256 => struct GovernancePowerDelegationERC20.Snapshot storage ref))"},{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1323,"name":"_searchByBlockNumber","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1637,"src":"34509:20:0","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_mapping$_t_address_$_t_mapping$_t_uint256_$_t_struct$_Snapshot_$1190_storage_$_$_$_t_mapping$_t_address_$_t_uint256_$_$_t_address_$_t_uint256_$returns$_t_uint256_$","typeString":"function (mapping(address => mapping(uint256 => struct GovernancePowerDelegationERC20.Snapshot storage ref)),mapping(address => uint256),address,uint256) view returns (uint256)"}},"id":1328,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"34509:67:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":1307,"id":1329,"nodeType":"Return","src":"34502:74:0"}]},"documentation":{"id":1295,"nodeType":"StructuredDocumentation","src":"34051:103:0","text":" @dev returns the delegated power of a user at a certain block\n @param user the user*"},"functionSelector":"c2ffbb91","id":1331,"implemented":true,"kind":"function","modifiers":[],"name":"getPowerAtBlock","nameLocation":"34166:15:0","nodeType":"FunctionDefinition","overrides":{"id":1304,"nodeType":"OverrideSpecifier","overrides":[],"src":"34273:8:0"},"parameters":{"id":1303,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1297,"mutability":"mutable","name":"user","nameLocation":"34195:4:0","nodeType":"VariableDeclaration","scope":1331,"src":"34187:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1296,"name":"address","nodeType":"ElementaryTypeName","src":"34187:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1299,"mutability":"mutable","name":"blockNumber","nameLocation":"34213:11:0","nodeType":"VariableDeclaration","scope":1331,"src":"34205:19:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1298,"name":"uint256","nodeType":"ElementaryTypeName","src":"34205:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1302,"mutability":"mutable","name":"delegationType","nameLocation":"34245:14:0","nodeType":"VariableDeclaration","scope":1331,"src":"34230:29:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_DelegationType_$1088","typeString":"enum IGovernancePowerDelegationToken.DelegationType"},"typeName":{"id":1301,"nodeType":"UserDefinedTypeName","pathNode":{"id":1300,"name":"DelegationType","nameLocations":["34230:14:0"],"nodeType":"IdentifierPath","referencedDeclaration":1088,"src":"34230:14:0"},"referencedDeclaration":1088,"src":"34230:14:0","typeDescriptions":{"typeIdentifier":"t_enum$_DelegationType_$1088","typeString":"enum IGovernancePowerDelegationToken.DelegationType"}},"visibility":"internal"}],"src":"34181:82:0"},"returnParameters":{"id":1307,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1306,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1331,"src":"34296:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1305,"name":"uint256","nodeType":"ElementaryTypeName","src":"34296:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"34295:9:0"},"scope":1874,"src":"34157:424:0","stateMutability":"view","virtual":false,"visibility":"external"},{"baseFunctions":[1166],"body":{"id":1344,"nodeType":"Block","src":"35036:37:0","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":1340,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"35049:5:0","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_GovernancePowerDelegationERC20_$1874_$","typeString":"type(contract super GovernancePowerDelegationERC20)"}},"id":1341,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"35055:11:0","memberName":"totalSupply","nodeType":"MemberAccess","referencedDeclaration":582,"src":"35049:17:0","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":1342,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"35049:19:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":1339,"id":1343,"nodeType":"Return","src":"35042:26:0"}]},"documentation":{"id":1332,"nodeType":"StructuredDocumentation","src":"34585:375:0","text":" @dev returns the total supply at a certain block number\n used by the voting strategy contracts to calculate the total votes needed for threshold/quorum\n In this initial implementation with no AAVE minting, simply returns the current supply\n A snapshots mapping will need to be added in case a mint function is added to the AAVE token in the future*"},"functionSelector":"981b24d0","id":1345,"implemented":true,"kind":"function","modifiers":[],"name":"totalSupplyAt","nameLocation":"34972:13:0","nodeType":"FunctionDefinition","overrides":{"id":1336,"nodeType":"OverrideSpecifier","overrides":[],"src":"35004:8:0"},"parameters":{"id":1335,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1334,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1345,"src":"34986:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1333,"name":"uint256","nodeType":"ElementaryTypeName","src":"34986:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"34985:9:0"},"returnParameters":{"id":1339,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1338,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1345,"src":"35027:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1337,"name":"uint256","nodeType":"ElementaryTypeName","src":"35027:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"35026:9:0"},"scope":1874,"src":"34963:110:0","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":1406,"nodeType":"Block","src":"35412:483:0","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":1362,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1357,"name":"delegatee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1350,"src":"35426:9:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":1360,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"35447:1:0","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":1359,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"35439:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1358,"name":"address","nodeType":"ElementaryTypeName","src":"35439:7:0","typeDescriptions":{}}},"id":1361,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"35439:10:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"35426:23:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"494e56414c49445f44454c454741544545","id":1363,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"35451:19:0","typeDescriptions":{"typeIdentifier":"t_stringliteral_f448a4555410856eaebeffbdb1aef2dfca19f9de0904eb1029e0bbcd0330450f","typeString":"literal_string \"INVALID_DELEGATEE\""},"value":"INVALID_DELEGATEE"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_f448a4555410856eaebeffbdb1aef2dfca19f9de0904eb1029e0bbcd0330450f","typeString":"literal_string \"INVALID_DELEGATEE\""}],"id":1356,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"35418:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1364,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"35418:53:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1365,"nodeType":"ExpressionStatement","src":"35418:53:0"},{"assignments":[null,null,1369],"declarations":[null,null,{"constant":false,"id":1369,"mutability":"mutable","name":"delegates","nameLocation":"35519:9:0","nodeType":"VariableDeclaration","scope":1406,"src":"35483:45:0","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_address_$","typeString":"mapping(address => address)"},"typeName":{"id":1368,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":1366,"name":"address","nodeType":"ElementaryTypeName","src":"35491:7:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"35483:27:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_address_$","typeString":"mapping(address => address)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":1367,"name":"address","nodeType":"ElementaryTypeName","src":"35502:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}},"visibility":"internal"}],"id":1373,"initialValue":{"arguments":[{"id":1371,"name":"delegationType","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1353,"src":"35557:14:0","typeDescriptions":{"typeIdentifier":"t_enum$_DelegationType_$1088","typeString":"enum IGovernancePowerDelegationToken.DelegationType"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_DelegationType_$1088","typeString":"enum IGovernancePowerDelegationToken.DelegationType"}],"id":1370,"name":"_getDelegationDataByType","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1756,"src":"35532:24:0","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_enum$_DelegationType_$1088_$returns$_t_mapping$_t_address_$_t_mapping$_t_uint256_$_t_struct$_Snapshot_$1190_storage_$_$_$_t_mapping$_t_address_$_t_uint256_$_$_t_mapping$_t_address_$_t_address_$_$","typeString":"function (enum IGovernancePowerDelegationToken.DelegationType) view returns (mapping(address => mapping(uint256 => struct GovernancePowerDelegationERC20.Snapshot storage ref)),mapping(address => uint256),mapping(address => address))"}},"id":1372,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"35532:40:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_mapping$_t_address_$_t_mapping$_t_uint256_$_t_struct$_Snapshot_$1190_storage_$_$_$_t_mapping$_t_address_$_t_uint256_$_$_t_mapping$_t_address_$_t_address_$_$","typeString":"tuple(mapping(address => mapping(uint256 => struct GovernancePowerDelegationERC20.Snapshot storage ref)),mapping(address => uint256),mapping(address => address))"}},"nodeType":"VariableDeclarationStatement","src":"35478:94:0"},{"assignments":[1375],"declarations":[{"constant":false,"id":1375,"mutability":"mutable","name":"delegatorBalance","nameLocation":"35587:16:0","nodeType":"VariableDeclaration","scope":1406,"src":"35579:24:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1374,"name":"uint256","nodeType":"ElementaryTypeName","src":"35579:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1379,"initialValue":{"arguments":[{"id":1377,"name":"delegator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1348,"src":"35616:9:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":1376,"name":"balanceOf","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":596,"src":"35606:9:0","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view returns (uint256)"}},"id":1378,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"35606:20:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"35579:47:0"},{"assignments":[1381],"declarations":[{"constant":false,"id":1381,"mutability":"mutable","name":"previousDelegatee","nameLocation":"35641:17:0","nodeType":"VariableDeclaration","scope":1406,"src":"35633:25:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1380,"name":"address","nodeType":"ElementaryTypeName","src":"35633:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":1386,"initialValue":{"arguments":[{"id":1383,"name":"delegator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1348,"src":"35675:9:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1384,"name":"delegates","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1369,"src":"35686:9:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_address_$","typeString":"mapping(address => address)"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_mapping$_t_address_$_t_address_$","typeString":"mapping(address => address)"}],"id":1382,"name":"_getDelegatee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1873,"src":"35661:13:0","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_mapping$_t_address_$_t_address_$_$returns$_t_address_$","typeString":"function (address,mapping(address => address)) view returns (address)"}},"id":1385,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"35661:35:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"35633:63:0"},{"expression":{"id":1391,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":1387,"name":"delegates","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1369,"src":"35703:9:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_address_$","typeString":"mapping(address => address)"}},"id":1389,"indexExpression":{"id":1388,"name":"delegator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1348,"src":"35713:9:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"35703:20:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":1390,"name":"delegatee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1350,"src":"35726:9:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"35703:32:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":1392,"nodeType":"ExpressionStatement","src":"35703:32:0"},{"expression":{"arguments":[{"id":1394,"name":"previousDelegatee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1381,"src":"35763:17:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1395,"name":"delegatee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1350,"src":"35782:9:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1396,"name":"delegatorBalance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1375,"src":"35793:16:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1397,"name":"delegationType","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1353,"src":"35811:14:0","typeDescriptions":{"typeIdentifier":"t_enum$_DelegationType_$1088","typeString":"enum IGovernancePowerDelegationToken.DelegationType"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_enum$_DelegationType_$1088","typeString":"enum IGovernancePowerDelegationToken.DelegationType"}],"id":1393,"name":"_moveDelegatesByType","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1572,"src":"35742:20:0","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_enum$_DelegationType_$1088_$returns$__$","typeString":"function (address,address,uint256,enum IGovernancePowerDelegationToken.DelegationType)"}},"id":1398,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"35742:84:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1399,"nodeType":"ExpressionStatement","src":"35742:84:0"},{"eventCall":{"arguments":[{"id":1401,"name":"delegator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1348,"src":"35853:9:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1402,"name":"delegatee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1350,"src":"35864:9:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1403,"name":"delegationType","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1353,"src":"35875:14:0","typeDescriptions":{"typeIdentifier":"t_enum$_DelegationType_$1088","typeString":"enum IGovernancePowerDelegationToken.DelegationType"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_enum$_DelegationType_$1088","typeString":"enum IGovernancePowerDelegationToken.DelegationType"}],"id":1400,"name":"DelegateChanged","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1098,"src":"35837:15:0","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$_t_enum$_DelegationType_$1088_$returns$__$","typeString":"function (address,address,enum IGovernancePowerDelegationToken.DelegationType)"}},"id":1404,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"35837:53:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1405,"nodeType":"EmitStatement","src":"35832:58:0"}]},"documentation":{"id":1346,"nodeType":"StructuredDocumentation","src":"35077:213:0","text":" @dev delegates the specific power to a delegatee\n @param delegatee the user which delegated power has changed\n @param delegationType the type of delegation (VOTING_POWER, PROPOSITION_POWER)*"},"id":1407,"implemented":true,"kind":"function","modifiers":[],"name":"_delegateByType","nameLocation":"35302:15:0","nodeType":"FunctionDefinition","parameters":{"id":1354,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1348,"mutability":"mutable","name":"delegator","nameLocation":"35331:9:0","nodeType":"VariableDeclaration","scope":1407,"src":"35323:17:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1347,"name":"address","nodeType":"ElementaryTypeName","src":"35323:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1350,"mutability":"mutable","name":"delegatee","nameLocation":"35354:9:0","nodeType":"VariableDeclaration","scope":1407,"src":"35346:17:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1349,"name":"address","nodeType":"ElementaryTypeName","src":"35346:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1353,"mutability":"mutable","name":"delegationType","nameLocation":"35384:14:0","nodeType":"VariableDeclaration","scope":1407,"src":"35369:29:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_DelegationType_$1088","typeString":"enum IGovernancePowerDelegationToken.DelegationType"},"typeName":{"id":1352,"nodeType":"UserDefinedTypeName","pathNode":{"id":1351,"name":"DelegationType","nameLocations":["35369:14:0"],"nodeType":"IdentifierPath","referencedDeclaration":1088,"src":"35369:14:0"},"referencedDeclaration":1088,"src":"35369:14:0","typeDescriptions":{"typeIdentifier":"t_enum$_DelegationType_$1088","typeString":"enum IGovernancePowerDelegationToken.DelegationType"}},"visibility":"internal"}],"src":"35317:85:0"},"returnParameters":{"id":1355,"nodeType":"ParameterList","parameters":[],"src":"35412:0:0"},"scope":1874,"src":"35293:602:0","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":1571,"nodeType":"Block","src":"36370:1246:0","statements":[{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":1422,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1420,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1410,"src":"36380:4:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":1421,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1412,"src":"36388:2:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"36380:10:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1425,"nodeType":"IfStatement","src":"36376:37:0","trueBody":{"id":1424,"nodeType":"Block","src":"36392:21:0","statements":[{"functionReturnParameters":1419,"id":1423,"nodeType":"Return","src":"36400:7:0"}]}},{"assignments":[1432,1436,null],"declarations":[{"constant":false,"id":1432,"mutability":"mutable","name":"snapshots","nameLocation":"36484:9:0","nodeType":"VariableDeclaration","scope":1571,"src":"36427:66:0","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_uint256_$_t_struct$_Snapshot_$1190_storage_$_$","typeString":"mapping(address => mapping(uint256 => struct GovernancePowerDelegationERC20.Snapshot))"},"typeName":{"id":1431,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":1426,"name":"address","nodeType":"ElementaryTypeName","src":"36435:7:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"36427:48:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_uint256_$_t_struct$_Snapshot_$1190_storage_$_$","typeString":"mapping(address => mapping(uint256 => struct GovernancePowerDelegationERC20.Snapshot))"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":1430,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":1427,"name":"uint256","nodeType":"ElementaryTypeName","src":"36454:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Mapping","src":"36446:28:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_Snapshot_$1190_storage_$","typeString":"mapping(uint256 => struct GovernancePowerDelegationERC20.Snapshot)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":1429,"nodeType":"UserDefinedTypeName","pathNode":{"id":1428,"name":"Snapshot","nameLocations":["36465:8:0"],"nodeType":"IdentifierPath","referencedDeclaration":1190,"src":"36465:8:0"},"referencedDeclaration":1190,"src":"36465:8:0","typeDescriptions":{"typeIdentifier":"t_struct$_Snapshot_$1190_storage_ptr","typeString":"struct GovernancePowerDelegationERC20.Snapshot"}}}},"visibility":"internal"},{"constant":false,"id":1436,"mutability":"mutable","name":"snapshotsCounts","nameLocation":"36537:15:0","nodeType":"VariableDeclaration","scope":1571,"src":"36501:51:0","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"typeName":{"id":1435,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":1433,"name":"address","nodeType":"ElementaryTypeName","src":"36509:7:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"36501:27:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":1434,"name":"uint256","nodeType":"ElementaryTypeName","src":"36520:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}},"visibility":"internal"},null],"id":1440,"initialValue":{"arguments":[{"id":1438,"name":"delegationType","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1417,"src":"36588:14:0","typeDescriptions":{"typeIdentifier":"t_enum$_DelegationType_$1088","typeString":"enum IGovernancePowerDelegationToken.DelegationType"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_DelegationType_$1088","typeString":"enum IGovernancePowerDelegationToken.DelegationType"}],"id":1437,"name":"_getDelegationDataByType","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1756,"src":"36563:24:0","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_enum$_DelegationType_$1088_$returns$_t_mapping$_t_address_$_t_mapping$_t_uint256_$_t_struct$_Snapshot_$1190_storage_$_$_$_t_mapping$_t_address_$_t_uint256_$_$_t_mapping$_t_address_$_t_address_$_$","typeString":"function (enum IGovernancePowerDelegationToken.DelegationType) view returns (mapping(address => mapping(uint256 => struct GovernancePowerDelegationERC20.Snapshot storage ref)),mapping(address => uint256),mapping(address => address))"}},"id":1439,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"36563:40:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_mapping$_t_address_$_t_mapping$_t_uint256_$_t_struct$_Snapshot_$1190_storage_$_$_$_t_mapping$_t_address_$_t_uint256_$_$_t_mapping$_t_address_$_t_address_$_$","typeString":"tuple(mapping(address => mapping(uint256 => struct GovernancePowerDelegationERC20.Snapshot storage ref)),mapping(address => uint256),mapping(address => address))"}},"nodeType":"VariableDeclarationStatement","src":"36419:184:0"},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":1446,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1441,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1410,"src":"36614:4:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":1444,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"36630:1:0","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":1443,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"36622:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1442,"name":"address","nodeType":"ElementaryTypeName","src":"36622:7:0","typeDescriptions":{}}},"id":1445,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"36622:10:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"36614:18:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1505,"nodeType":"IfStatement","src":"36610:508:0","trueBody":{"id":1504,"nodeType":"Block","src":"36634:484:0","statements":[{"assignments":[1448],"declarations":[{"constant":false,"id":1448,"mutability":"mutable","name":"previous","nameLocation":"36650:8:0","nodeType":"VariableDeclaration","scope":1504,"src":"36642:16:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1447,"name":"uint256","nodeType":"ElementaryTypeName","src":"36642:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1450,"initialValue":{"hexValue":"30","id":1449,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"36661:1:0","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"36642:20:0"},{"assignments":[1452],"declarations":[{"constant":false,"id":1452,"mutability":"mutable","name":"fromSnapshotsCount","nameLocation":"36678:18:0","nodeType":"VariableDeclaration","scope":1504,"src":"36670:26:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1451,"name":"uint256","nodeType":"ElementaryTypeName","src":"36670:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1456,"initialValue":{"baseExpression":{"id":1453,"name":"snapshotsCounts","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1436,"src":"36699:15:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":1455,"indexExpression":{"id":1454,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1410,"src":"36715:4:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"36699:21:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"36670:50:0"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1459,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1457,"name":"fromSnapshotsCount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1452,"src":"36733:18:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":1458,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"36755:1:0","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"36733:23:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":1478,"nodeType":"Block","src":"36839:45:0","statements":[{"expression":{"id":1476,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":1472,"name":"previous","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1448,"src":"36849:8:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":1474,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1410,"src":"36870:4:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":1473,"name":"balanceOf","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":596,"src":"36860:9:0","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view returns (uint256)"}},"id":1475,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"36860:15:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"36849:26:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1477,"nodeType":"ExpressionStatement","src":"36849:26:0"}]},"id":1479,"nodeType":"IfStatement","src":"36729:155:0","trueBody":{"id":1471,"nodeType":"Block","src":"36758:75:0","statements":[{"expression":{"id":1469,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":1460,"name":"previous","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1448,"src":"36768:8:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"expression":{"baseExpression":{"baseExpression":{"id":1461,"name":"snapshots","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1432,"src":"36779:9:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_uint256_$_t_struct$_Snapshot_$1190_storage_$_$","typeString":"mapping(address => mapping(uint256 => struct GovernancePowerDelegationERC20.Snapshot storage ref))"}},"id":1463,"indexExpression":{"id":1462,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1410,"src":"36789:4:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"36779:15:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_Snapshot_$1190_storage_$","typeString":"mapping(uint256 => struct GovernancePowerDelegationERC20.Snapshot storage ref)"}},"id":1467,"indexExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1466,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1464,"name":"fromSnapshotsCount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1452,"src":"36795:18:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":1465,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"36816:1:0","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"36795:22:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"36779:39:0","typeDescriptions":{"typeIdentifier":"t_struct$_Snapshot_$1190_storage","typeString":"struct GovernancePowerDelegationERC20.Snapshot storage ref"}},"id":1468,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"36819:5:0","memberName":"value","nodeType":"MemberAccess","referencedDeclaration":1189,"src":"36779:45:0","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"src":"36768:56:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1470,"nodeType":"ExpressionStatement","src":"36768:56:0"}]}},{"expression":{"arguments":[{"id":1481,"name":"snapshots","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1432,"src":"36916:9:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_uint256_$_t_struct$_Snapshot_$1190_storage_$_$","typeString":"mapping(address => mapping(uint256 => struct GovernancePowerDelegationERC20.Snapshot storage ref))"}},{"id":1482,"name":"snapshotsCounts","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1436,"src":"36935:15:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},{"id":1483,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1410,"src":"36960:4:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":1486,"name":"previous","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1448,"src":"36982:8:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1485,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"36974:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_uint128_$","typeString":"type(uint128)"},"typeName":{"id":1484,"name":"uint128","nodeType":"ElementaryTypeName","src":"36974:7:0","typeDescriptions":{}}},"id":1487,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"36974:17:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1492,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1490,"name":"previous","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1448,"src":"37009:8:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":1491,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1414,"src":"37020:6:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"37009:17:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1489,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"37001:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_uint128_$","typeString":"type(uint128)"},"typeName":{"id":1488,"name":"uint128","nodeType":"ElementaryTypeName","src":"37001:7:0","typeDescriptions":{}}},"id":1493,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"37001:26:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_uint256_$_t_struct$_Snapshot_$1190_storage_$_$","typeString":"mapping(address => mapping(uint256 => struct GovernancePowerDelegationERC20.Snapshot storage ref))"},{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint128","typeString":"uint128"},{"typeIdentifier":"t_uint128","typeString":"uint128"}],"id":1480,"name":"_writeSnapshot","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1842,"src":"36892:14:0","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_mapping$_t_address_$_t_mapping$_t_uint256_$_t_struct$_Snapshot_$1190_storage_$_$_$_t_mapping$_t_address_$_t_uint256_$_$_t_address_$_t_uint128_$_t_uint128_$returns$__$","typeString":"function (mapping(address => mapping(uint256 => struct GovernancePowerDelegationERC20.Snapshot storage ref)),mapping(address => uint256),address,uint128,uint128)"}},"id":1494,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"36892:143:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1495,"nodeType":"ExpressionStatement","src":"36892:143:0"},{"eventCall":{"arguments":[{"id":1497,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1410,"src":"37071:4:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1500,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1498,"name":"previous","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1448,"src":"37077:8:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":1499,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1414,"src":"37088:6:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"37077:17:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1501,"name":"delegationType","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1417,"src":"37096:14:0","typeDescriptions":{"typeIdentifier":"t_enum$_DelegationType_$1088","typeString":"enum IGovernancePowerDelegationToken.DelegationType"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_enum$_DelegationType_$1088","typeString":"enum IGovernancePowerDelegationToken.DelegationType"}],"id":1496,"name":"DelegatedPowerChanged","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1108,"src":"37049:21:0","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_uint256_$_t_enum$_DelegationType_$1088_$returns$__$","typeString":"function (address,uint256,enum IGovernancePowerDelegationToken.DelegationType)"}},"id":1502,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"37049:62:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1503,"nodeType":"EmitStatement","src":"37044:67:0"}]}},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":1511,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1506,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1412,"src":"37127:2:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":1509,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"37141:1:0","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":1508,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"37133:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1507,"name":"address","nodeType":"ElementaryTypeName","src":"37133:7:0","typeDescriptions":{}}},"id":1510,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"37133:10:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"37127:16:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1570,"nodeType":"IfStatement","src":"37123:489:0","trueBody":{"id":1569,"nodeType":"Block","src":"37145:467:0","statements":[{"assignments":[1513],"declarations":[{"constant":false,"id":1513,"mutability":"mutable","name":"previous","nameLocation":"37161:8:0","nodeType":"VariableDeclaration","scope":1569,"src":"37153:16:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1512,"name":"uint256","nodeType":"ElementaryTypeName","src":"37153:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1515,"initialValue":{"hexValue":"30","id":1514,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"37172:1:0","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"37153:20:0"},{"assignments":[1517],"declarations":[{"constant":false,"id":1517,"mutability":"mutable","name":"toSnapshotsCount","nameLocation":"37189:16:0","nodeType":"VariableDeclaration","scope":1569,"src":"37181:24:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1516,"name":"uint256","nodeType":"ElementaryTypeName","src":"37181:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1521,"initialValue":{"baseExpression":{"id":1518,"name":"snapshotsCounts","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1436,"src":"37208:15:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":1520,"indexExpression":{"id":1519,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1412,"src":"37224:2:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"37208:19:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"37181:46:0"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1524,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1522,"name":"toSnapshotsCount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1517,"src":"37239:16:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":1523,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"37259:1:0","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"37239:21:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":1543,"nodeType":"Block","src":"37339:43:0","statements":[{"expression":{"id":1541,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":1537,"name":"previous","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1513,"src":"37349:8:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":1539,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1412,"src":"37370:2:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":1538,"name":"balanceOf","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":596,"src":"37360:9:0","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view returns (uint256)"}},"id":1540,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"37360:13:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"37349:24:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1542,"nodeType":"ExpressionStatement","src":"37349:24:0"}]},"id":1544,"nodeType":"IfStatement","src":"37235:147:0","trueBody":{"id":1536,"nodeType":"Block","src":"37262:71:0","statements":[{"expression":{"id":1534,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":1525,"name":"previous","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1513,"src":"37272:8:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"expression":{"baseExpression":{"baseExpression":{"id":1526,"name":"snapshots","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1432,"src":"37283:9:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_uint256_$_t_struct$_Snapshot_$1190_storage_$_$","typeString":"mapping(address => mapping(uint256 => struct GovernancePowerDelegationERC20.Snapshot storage ref))"}},"id":1528,"indexExpression":{"id":1527,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1412,"src":"37293:2:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"37283:13:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_Snapshot_$1190_storage_$","typeString":"mapping(uint256 => struct GovernancePowerDelegationERC20.Snapshot storage ref)"}},"id":1532,"indexExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1531,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1529,"name":"toSnapshotsCount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1517,"src":"37297:16:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":1530,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"37316:1:0","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"37297:20:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"37283:35:0","typeDescriptions":{"typeIdentifier":"t_struct$_Snapshot_$1190_storage","typeString":"struct GovernancePowerDelegationERC20.Snapshot storage ref"}},"id":1533,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"37319:5:0","memberName":"value","nodeType":"MemberAccess","referencedDeclaration":1189,"src":"37283:41:0","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"src":"37272:52:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1535,"nodeType":"ExpressionStatement","src":"37272:52:0"}]}},{"expression":{"arguments":[{"id":1546,"name":"snapshots","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1432,"src":"37414:9:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_uint256_$_t_struct$_Snapshot_$1190_storage_$_$","typeString":"mapping(address => mapping(uint256 => struct GovernancePowerDelegationERC20.Snapshot storage ref))"}},{"id":1547,"name":"snapshotsCounts","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1436,"src":"37433:15:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},{"id":1548,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1412,"src":"37458:2:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":1551,"name":"previous","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1513,"src":"37478:8:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1550,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"37470:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_uint128_$","typeString":"type(uint128)"},"typeName":{"id":1549,"name":"uint128","nodeType":"ElementaryTypeName","src":"37470:7:0","typeDescriptions":{}}},"id":1552,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"37470:17:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1557,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1555,"name":"previous","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1513,"src":"37505:8:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":1556,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1414,"src":"37516:6:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"37505:17:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1554,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"37497:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_uint128_$","typeString":"type(uint128)"},"typeName":{"id":1553,"name":"uint128","nodeType":"ElementaryTypeName","src":"37497:7:0","typeDescriptions":{}}},"id":1558,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"37497:26:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_uint256_$_t_struct$_Snapshot_$1190_storage_$_$","typeString":"mapping(address => mapping(uint256 => struct GovernancePowerDelegationERC20.Snapshot storage ref))"},{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint128","typeString":"uint128"},{"typeIdentifier":"t_uint128","typeString":"uint128"}],"id":1545,"name":"_writeSnapshot","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1842,"src":"37390:14:0","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_mapping$_t_address_$_t_mapping$_t_uint256_$_t_struct$_Snapshot_$1190_storage_$_$_$_t_mapping$_t_address_$_t_uint256_$_$_t_address_$_t_uint128_$_t_uint128_$returns$__$","typeString":"function (mapping(address => mapping(uint256 => struct GovernancePowerDelegationERC20.Snapshot storage ref)),mapping(address => uint256),address,uint128,uint128)"}},"id":1559,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"37390:141:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1560,"nodeType":"ExpressionStatement","src":"37390:141:0"},{"eventCall":{"arguments":[{"id":1562,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1412,"src":"37567:2:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1565,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1563,"name":"previous","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1513,"src":"37571:8:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":1564,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1414,"src":"37582:6:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"37571:17:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1566,"name":"delegationType","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1417,"src":"37590:14:0","typeDescriptions":{"typeIdentifier":"t_enum$_DelegationType_$1088","typeString":"enum IGovernancePowerDelegationToken.DelegationType"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_enum$_DelegationType_$1088","typeString":"enum IGovernancePowerDelegationToken.DelegationType"}],"id":1561,"name":"DelegatedPowerChanged","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1108,"src":"37545:21:0","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_uint256_$_t_enum$_DelegationType_$1088_$returns$__$","typeString":"function (address,uint256,enum IGovernancePowerDelegationToken.DelegationType)"}},"id":1567,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"37545:60:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1568,"nodeType":"EmitStatement","src":"37540:65:0"}]}}]},"documentation":{"id":1408,"nodeType":"StructuredDocumentation","src":"35899:336:0","text":" @dev moves delegated power from one user to another\n @param from the user from which delegated power is moved\n @param to the user that will receive the delegated power\n @param amount the amount of delegated power to be moved\n @param delegationType the type of delegation (VOTING_POWER, PROPOSITION_POWER)*"},"id":1572,"implemented":true,"kind":"function","modifiers":[],"name":"_moveDelegatesByType","nameLocation":"36247:20:0","nodeType":"FunctionDefinition","parameters":{"id":1418,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1410,"mutability":"mutable","name":"from","nameLocation":"36281:4:0","nodeType":"VariableDeclaration","scope":1572,"src":"36273:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1409,"name":"address","nodeType":"ElementaryTypeName","src":"36273:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1412,"mutability":"mutable","name":"to","nameLocation":"36299:2:0","nodeType":"VariableDeclaration","scope":1572,"src":"36291:10:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1411,"name":"address","nodeType":"ElementaryTypeName","src":"36291:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1414,"mutability":"mutable","name":"amount","nameLocation":"36315:6:0","nodeType":"VariableDeclaration","scope":1572,"src":"36307:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1413,"name":"uint256","nodeType":"ElementaryTypeName","src":"36307:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1417,"mutability":"mutable","name":"delegationType","nameLocation":"36342:14:0","nodeType":"VariableDeclaration","scope":1572,"src":"36327:29:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_DelegationType_$1088","typeString":"enum IGovernancePowerDelegationToken.DelegationType"},"typeName":{"id":1416,"nodeType":"UserDefinedTypeName","pathNode":{"id":1415,"name":"DelegationType","nameLocations":["36327:14:0"],"nodeType":"IdentifierPath","referencedDeclaration":1088,"src":"36327:14:0"},"referencedDeclaration":1088,"src":"36327:14:0","typeDescriptions":{"typeIdentifier":"t_enum$_DelegationType_$1088","typeString":"enum IGovernancePowerDelegationToken.DelegationType"}},"visibility":"internal"}],"src":"36267:93:0"},"returnParameters":{"id":1419,"nodeType":"ParameterList","parameters":[],"src":"36370:0:0"},"scope":1874,"src":"36238:1378:0","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":1636,"nodeType":"Block","src":"38165:379:0","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1597,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1594,"name":"blockNumber","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1588,"src":"38179:11:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"expression":{"id":1595,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"38194:5:0","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":1596,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"38200:6:0","memberName":"number","nodeType":"MemberAccess","src":"38194:12:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"38179:27:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"494e56414c49445f424c4f434b5f4e554d424552","id":1598,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"38208:22:0","typeDescriptions":{"typeIdentifier":"t_stringliteral_dd61c748dcfe71393203093270c457f6ceb8834cce0160376620e7b2f811559c","typeString":"literal_string \"INVALID_BLOCK_NUMBER\""},"value":"INVALID_BLOCK_NUMBER"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_dd61c748dcfe71393203093270c457f6ceb8834cce0160376620e7b2f811559c","typeString":"literal_string \"INVALID_BLOCK_NUMBER\""}],"id":1593,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"38171:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1599,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"38171:60:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1600,"nodeType":"ExpressionStatement","src":"38171:60:0"},{"assignments":[1602],"declarations":[{"constant":false,"id":1602,"mutability":"mutable","name":"snapshotsCount","nameLocation":"38246:14:0","nodeType":"VariableDeclaration","scope":1636,"src":"38238:22:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1601,"name":"uint256","nodeType":"ElementaryTypeName","src":"38238:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1606,"initialValue":{"baseExpression":{"id":1603,"name":"snapshotsCounts","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1584,"src":"38263:15:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":1605,"indexExpression":{"id":1604,"name":"user","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1586,"src":"38279:4:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"38263:21:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"38238:46:0"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1609,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1607,"name":"snapshotsCount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1602,"src":"38295:14:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":1608,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"38313:1:0","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"38295:19:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1615,"nodeType":"IfStatement","src":"38291:62:0","trueBody":{"id":1614,"nodeType":"Block","src":"38316:37:0","statements":[{"expression":{"arguments":[{"id":1611,"name":"user","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1586,"src":"38341:4:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":1610,"name":"balanceOf","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":596,"src":"38331:9:0","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view returns (uint256)"}},"id":1612,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"38331:15:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":1592,"id":1613,"nodeType":"Return","src":"38324:22:0"}]}},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1623,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"baseExpression":{"baseExpression":{"id":1616,"name":"snapshots","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1580,"src":"38398:9:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_uint256_$_t_struct$_Snapshot_$1190_storage_$_$","typeString":"mapping(address => mapping(uint256 => struct GovernancePowerDelegationERC20.Snapshot storage ref))"}},"id":1618,"indexExpression":{"id":1617,"name":"user","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1586,"src":"38408:4:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"38398:15:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_Snapshot_$1190_storage_$","typeString":"mapping(uint256 => struct GovernancePowerDelegationERC20.Snapshot storage ref)"}},"id":1620,"indexExpression":{"hexValue":"30","id":1619,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"38414:1:0","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"38398:18:0","typeDescriptions":{"typeIdentifier":"t_struct$_Snapshot_$1190_storage","typeString":"struct GovernancePowerDelegationERC20.Snapshot storage ref"}},"id":1621,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"38417:11:0","memberName":"blockNumber","nodeType":"MemberAccess","referencedDeclaration":1187,"src":"38398:30:0","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":1622,"name":"blockNumber","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1588,"src":"38431:11:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"38398:44:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1627,"nodeType":"IfStatement","src":"38394:73:0","trueBody":{"id":1626,"nodeType":"Block","src":"38444:23:0","statements":[{"expression":{"hexValue":"30","id":1624,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"38459:1:0","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"functionReturnParameters":1592,"id":1625,"nodeType":"Return","src":"38452:8:0"}]}},{"expression":{"arguments":[{"baseExpression":{"id":1629,"name":"snapshots","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1580,"src":"38494:9:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_uint256_$_t_struct$_Snapshot_$1190_storage_$_$","typeString":"mapping(address => mapping(uint256 => struct GovernancePowerDelegationERC20.Snapshot storage ref))"}},"id":1631,"indexExpression":{"id":1630,"name":"user","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1586,"src":"38504:4:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"38494:15:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_Snapshot_$1190_storage_$","typeString":"mapping(uint256 => struct GovernancePowerDelegationERC20.Snapshot storage ref)"}},{"id":1632,"name":"snapshotsCount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1602,"src":"38511:14:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":1633,"name":"blockNumber","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1588,"src":"38527:11:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_Snapshot_$1190_storage_$","typeString":"mapping(uint256 => struct GovernancePowerDelegationERC20.Snapshot storage ref)"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1628,"name":"_binarySearch","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1734,"src":"38480:13:0","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_mapping$_t_uint256_$_t_struct$_Snapshot_$1190_storage_$_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (mapping(uint256 => struct GovernancePowerDelegationERC20.Snapshot storage ref),uint256,uint256) view returns (uint256)"}},"id":1634,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"38480:59:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":1592,"id":1635,"nodeType":"Return","src":"38473:66:0"}]},"documentation":{"id":1573,"nodeType":"StructuredDocumentation","src":"37620:296:0","text":" @dev searches a snapshot by block number. Uses binary search.\n @param snapshots the snapshots mapping\n @param snapshotsCounts the number of snapshots\n @param user the user for which the snapshot is being searched\n @param blockNumber the block number being searched*"},"id":1637,"implemented":true,"kind":"function","modifiers":[],"name":"_searchByBlockNumber","nameLocation":"37928:20:0","nodeType":"FunctionDefinition","parameters":{"id":1589,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1580,"mutability":"mutable","name":"snapshots","nameLocation":"38011:9:0","nodeType":"VariableDeclaration","scope":1637,"src":"37954:66:0","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_uint256_$_t_struct$_Snapshot_$1190_storage_$_$","typeString":"mapping(address => mapping(uint256 => struct GovernancePowerDelegationERC20.Snapshot))"},"typeName":{"id":1579,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":1574,"name":"address","nodeType":"ElementaryTypeName","src":"37962:7:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"37954:48:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_uint256_$_t_struct$_Snapshot_$1190_storage_$_$","typeString":"mapping(address => mapping(uint256 => struct GovernancePowerDelegationERC20.Snapshot))"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":1578,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":1575,"name":"uint256","nodeType":"ElementaryTypeName","src":"37981:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Mapping","src":"37973:28:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_Snapshot_$1190_storage_$","typeString":"mapping(uint256 => struct GovernancePowerDelegationERC20.Snapshot)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":1577,"nodeType":"UserDefinedTypeName","pathNode":{"id":1576,"name":"Snapshot","nameLocations":["37992:8:0"],"nodeType":"IdentifierPath","referencedDeclaration":1190,"src":"37992:8:0"},"referencedDeclaration":1190,"src":"37992:8:0","typeDescriptions":{"typeIdentifier":"t_struct$_Snapshot_$1190_storage_ptr","typeString":"struct GovernancePowerDelegationERC20.Snapshot"}}}},"visibility":"internal"},{"constant":false,"id":1584,"mutability":"mutable","name":"snapshotsCounts","nameLocation":"38062:15:0","nodeType":"VariableDeclaration","scope":1637,"src":"38026:51:0","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"typeName":{"id":1583,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":1581,"name":"address","nodeType":"ElementaryTypeName","src":"38034:7:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"38026:27:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":1582,"name":"uint256","nodeType":"ElementaryTypeName","src":"38045:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}},"visibility":"internal"},{"constant":false,"id":1586,"mutability":"mutable","name":"user","nameLocation":"38091:4:0","nodeType":"VariableDeclaration","scope":1637,"src":"38083:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1585,"name":"address","nodeType":"ElementaryTypeName","src":"38083:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1588,"mutability":"mutable","name":"blockNumber","nameLocation":"38109:11:0","nodeType":"VariableDeclaration","scope":1637,"src":"38101:19:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1587,"name":"uint256","nodeType":"ElementaryTypeName","src":"38101:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"37948:176:0"},"returnParameters":{"id":1592,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1591,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1637,"src":"38156:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1590,"name":"uint256","nodeType":"ElementaryTypeName","src":"38156:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"38155:9:0"},"scope":1874,"src":"37919:625:0","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":1733,"nodeType":"Block","src":"38696:700:0","statements":[{"id":1732,"nodeType":"UncheckedBlock","src":"38702:690:0","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1658,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"baseExpression":{"id":1651,"name":"snapshots","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1642,"src":"38765:9:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_Snapshot_$1190_storage_$","typeString":"mapping(uint256 => struct GovernancePowerDelegationERC20.Snapshot storage ref)"}},"id":1655,"indexExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1654,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1652,"name":"snapshotsCount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1644,"src":"38775:14:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":1653,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"38792:1:0","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"38775:18:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"38765:29:0","typeDescriptions":{"typeIdentifier":"t_struct$_Snapshot_$1190_storage","typeString":"struct GovernancePowerDelegationERC20.Snapshot storage ref"}},"id":1656,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"38795:11:0","memberName":"blockNumber","nodeType":"MemberAccess","referencedDeclaration":1187,"src":"38765:41:0","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"id":1657,"name":"blockNumber","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1646,"src":"38810:11:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"38765:56:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1667,"nodeType":"IfStatement","src":"38761:123:0","trueBody":{"id":1666,"nodeType":"Block","src":"38823:61:0","statements":[{"expression":{"expression":{"baseExpression":{"id":1659,"name":"snapshots","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1642,"src":"38840:9:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_Snapshot_$1190_storage_$","typeString":"mapping(uint256 => struct GovernancePowerDelegationERC20.Snapshot storage ref)"}},"id":1663,"indexExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1662,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1660,"name":"snapshotsCount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1644,"src":"38850:14:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":1661,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"38867:1:0","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"38850:18:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"38840:29:0","typeDescriptions":{"typeIdentifier":"t_struct$_Snapshot_$1190_storage","typeString":"struct GovernancePowerDelegationERC20.Snapshot storage ref"}},"id":1664,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"38870:5:0","memberName":"value","nodeType":"MemberAccess","referencedDeclaration":1189,"src":"38840:35:0","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"functionReturnParameters":1650,"id":1665,"nodeType":"Return","src":"38833:42:0"}]}},{"assignments":[1669],"declarations":[{"constant":false,"id":1669,"mutability":"mutable","name":"lower","nameLocation":"38900:5:0","nodeType":"VariableDeclaration","scope":1732,"src":"38892:13:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1668,"name":"uint256","nodeType":"ElementaryTypeName","src":"38892:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1671,"initialValue":{"hexValue":"30","id":1670,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"38908:1:0","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"38892:17:0"},{"assignments":[1673],"declarations":[{"constant":false,"id":1673,"mutability":"mutable","name":"upper","nameLocation":"38925:5:0","nodeType":"VariableDeclaration","scope":1732,"src":"38917:13:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1672,"name":"uint256","nodeType":"ElementaryTypeName","src":"38917:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1677,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1676,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1674,"name":"snapshotsCount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1644,"src":"38933:14:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":1675,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"38950:1:0","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"38933:18:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"38917:34:0"},{"body":{"id":1725,"nodeType":"Block","src":"38981:368:0","statements":[{"assignments":[1682],"declarations":[{"constant":false,"id":1682,"mutability":"mutable","name":"center","nameLocation":"38999:6:0","nodeType":"VariableDeclaration","scope":1725,"src":"38991:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1681,"name":"uint256","nodeType":"ElementaryTypeName","src":"38991:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1691,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1690,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1683,"name":"upper","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1673,"src":"39008:5:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1689,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1686,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1684,"name":"upper","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1673,"src":"39017:5:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":1685,"name":"lower","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1669,"src":"39025:5:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"39017:13:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":1687,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"39016:15:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"hexValue":"32","id":1688,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"39034:1:0","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"39016:19:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"39008:27:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"38991:44:0"},{"assignments":[1694],"declarations":[{"constant":false,"id":1694,"mutability":"mutable","name":"snapshot","nameLocation":"39088:8:0","nodeType":"VariableDeclaration","scope":1725,"src":"39072:24:0","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_Snapshot_$1190_memory_ptr","typeString":"struct GovernancePowerDelegationERC20.Snapshot"},"typeName":{"id":1693,"nodeType":"UserDefinedTypeName","pathNode":{"id":1692,"name":"Snapshot","nameLocations":["39072:8:0"],"nodeType":"IdentifierPath","referencedDeclaration":1190,"src":"39072:8:0"},"referencedDeclaration":1190,"src":"39072:8:0","typeDescriptions":{"typeIdentifier":"t_struct$_Snapshot_$1190_storage_ptr","typeString":"struct GovernancePowerDelegationERC20.Snapshot"}},"visibility":"internal"}],"id":1698,"initialValue":{"baseExpression":{"id":1695,"name":"snapshots","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1642,"src":"39099:9:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_Snapshot_$1190_storage_$","typeString":"mapping(uint256 => struct GovernancePowerDelegationERC20.Snapshot storage ref)"}},"id":1697,"indexExpression":{"id":1696,"name":"center","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1682,"src":"39109:6:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"39099:17:0","typeDescriptions":{"typeIdentifier":"t_struct$_Snapshot_$1190_storage","typeString":"struct GovernancePowerDelegationERC20.Snapshot storage ref"}},"nodeType":"VariableDeclarationStatement","src":"39072:44:0"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1702,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":1699,"name":"snapshot","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1694,"src":"39130:8:0","typeDescriptions":{"typeIdentifier":"t_struct$_Snapshot_$1190_memory_ptr","typeString":"struct GovernancePowerDelegationERC20.Snapshot memory"}},"id":1700,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"39139:11:0","memberName":"blockNumber","nodeType":"MemberAccess","referencedDeclaration":1187,"src":"39130:20:0","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":1701,"name":"blockNumber","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1646,"src":"39154:11:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"39130:35:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1710,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":1707,"name":"snapshot","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1694,"src":"39221:8:0","typeDescriptions":{"typeIdentifier":"t_struct$_Snapshot_$1190_memory_ptr","typeString":"struct GovernancePowerDelegationERC20.Snapshot memory"}},"id":1708,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"39230:11:0","memberName":"blockNumber","nodeType":"MemberAccess","referencedDeclaration":1187,"src":"39221:20:0","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":1709,"name":"blockNumber","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1646,"src":"39244:11:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"39221:34:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":1722,"nodeType":"Block","src":"39300:41:0","statements":[{"expression":{"id":1720,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":1716,"name":"upper","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1673,"src":"39312:5:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1719,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1717,"name":"center","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1682,"src":"39320:6:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":1718,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"39329:1:0","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"39320:10:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"39312:18:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1721,"nodeType":"ExpressionStatement","src":"39312:18:0"}]},"id":1723,"nodeType":"IfStatement","src":"39217:124:0","trueBody":{"id":1715,"nodeType":"Block","src":"39257:37:0","statements":[{"expression":{"id":1713,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":1711,"name":"lower","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1669,"src":"39269:5:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":1712,"name":"center","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1682,"src":"39277:6:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"39269:14:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1714,"nodeType":"ExpressionStatement","src":"39269:14:0"}]}},"id":1724,"nodeType":"IfStatement","src":"39126:215:0","trueBody":{"id":1706,"nodeType":"Block","src":"39167:44:0","statements":[{"expression":{"expression":{"id":1703,"name":"snapshot","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1694,"src":"39186:8:0","typeDescriptions":{"typeIdentifier":"t_struct$_Snapshot_$1190_memory_ptr","typeString":"struct GovernancePowerDelegationERC20.Snapshot memory"}},"id":1704,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"39195:5:0","memberName":"value","nodeType":"MemberAccess","referencedDeclaration":1189,"src":"39186:14:0","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"functionReturnParameters":1650,"id":1705,"nodeType":"Return","src":"39179:21:0"}]}}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1680,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1678,"name":"upper","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1673,"src":"38966:5:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":1679,"name":"lower","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1669,"src":"38974:5:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"38966:13:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1726,"nodeType":"WhileStatement","src":"38959:390:0"},{"expression":{"expression":{"baseExpression":{"id":1727,"name":"snapshots","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1642,"src":"39363:9:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_Snapshot_$1190_storage_$","typeString":"mapping(uint256 => struct GovernancePowerDelegationERC20.Snapshot storage ref)"}},"id":1729,"indexExpression":{"id":1728,"name":"lower","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1669,"src":"39373:5:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"39363:16:0","typeDescriptions":{"typeIdentifier":"t_struct$_Snapshot_$1190_storage","typeString":"struct GovernancePowerDelegationERC20.Snapshot storage ref"}},"id":1730,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"39380:5:0","memberName":"value","nodeType":"MemberAccess","referencedDeclaration":1189,"src":"39363:22:0","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"functionReturnParameters":1650,"id":1731,"nodeType":"Return","src":"39356:29:0"}]}]},"id":1734,"implemented":true,"kind":"function","modifiers":[],"name":"_binarySearch","nameLocation":"38557:13:0","nodeType":"FunctionDefinition","parameters":{"id":1647,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1642,"mutability":"mutable","name":"snapshots","nameLocation":"38608:9:0","nodeType":"VariableDeclaration","scope":1734,"src":"38571:46:0","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_Snapshot_$1190_storage_$","typeString":"mapping(uint256 => struct GovernancePowerDelegationERC20.Snapshot)"},"typeName":{"id":1641,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":1638,"name":"uint256","nodeType":"ElementaryTypeName","src":"38579:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Mapping","src":"38571:28:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_Snapshot_$1190_storage_$","typeString":"mapping(uint256 => struct GovernancePowerDelegationERC20.Snapshot)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":1640,"nodeType":"UserDefinedTypeName","pathNode":{"id":1639,"name":"Snapshot","nameLocations":["38590:8:0"],"nodeType":"IdentifierPath","referencedDeclaration":1190,"src":"38590:8:0"},"referencedDeclaration":1190,"src":"38590:8:0","typeDescriptions":{"typeIdentifier":"t_struct$_Snapshot_$1190_storage_ptr","typeString":"struct GovernancePowerDelegationERC20.Snapshot"}}},"visibility":"internal"},{"constant":false,"id":1644,"mutability":"mutable","name":"snapshotsCount","nameLocation":"38627:14:0","nodeType":"VariableDeclaration","scope":1734,"src":"38619:22:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1643,"name":"uint256","nodeType":"ElementaryTypeName","src":"38619:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":1646,"mutability":"mutable","name":"blockNumber","nameLocation":"38651:11:0","nodeType":"VariableDeclaration","scope":1734,"src":"38643:19:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1645,"name":"uint256","nodeType":"ElementaryTypeName","src":"38643:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"38570:93:0"},"returnParameters":{"id":1650,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1649,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1734,"src":"38687:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1648,"name":"uint256","nodeType":"ElementaryTypeName","src":"38687:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"38686:9:0"},"scope":1874,"src":"38548:848:0","stateMutability":"view","virtual":false,"visibility":"internal"},{"documentation":{"id":1735,"nodeType":"StructuredDocumentation","src":"39400:464:0","text":" @dev returns the delegation data (snapshot, snapshotsCount, list of delegates) by delegation type\n NOTE: Ideal implementation would have mapped this in a struct by delegation type. Unfortunately,\n the AAVE token and StakeToken already include a mapping for the snapshots, so we require contracts\n who inherit from this to provide access to the delegation data by overriding this method.\n @param delegationType the type of delegation*"},"id":1756,"implemented":false,"kind":"function","modifiers":[],"name":"_getDelegationDataByType","nameLocation":"39876:24:0","nodeType":"FunctionDefinition","parameters":{"id":1739,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1738,"mutability":"mutable","name":"delegationType","nameLocation":"39916:14:0","nodeType":"VariableDeclaration","scope":1756,"src":"39901:29:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_DelegationType_$1088","typeString":"enum IGovernancePowerDelegationToken.DelegationType"},"typeName":{"id":1737,"nodeType":"UserDefinedTypeName","pathNode":{"id":1736,"name":"DelegationType","nameLocations":["39901:14:0"],"nodeType":"IdentifierPath","referencedDeclaration":1088,"src":"39901:14:0"},"referencedDeclaration":1088,"src":"39901:14:0","typeDescriptions":{"typeIdentifier":"t_enum$_DelegationType_$1088","typeString":"enum IGovernancePowerDelegationToken.DelegationType"}},"visibility":"internal"}],"src":"39900:31:0"},"returnParameters":{"id":1755,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1746,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1756,"src":"39986:56:0","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_uint256_$_t_struct$_Snapshot_$1190_storage_$_$","typeString":"mapping(address => mapping(uint256 => struct GovernancePowerDelegationERC20.Snapshot))"},"typeName":{"id":1745,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":1740,"name":"address","nodeType":"ElementaryTypeName","src":"39994:7:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"39986:48:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_uint256_$_t_struct$_Snapshot_$1190_storage_$_$","typeString":"mapping(address => mapping(uint256 => struct GovernancePowerDelegationERC20.Snapshot))"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":1744,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":1741,"name":"uint256","nodeType":"ElementaryTypeName","src":"40013:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Mapping","src":"40005:28:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_Snapshot_$1190_storage_$","typeString":"mapping(uint256 => struct GovernancePowerDelegationERC20.Snapshot)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":1743,"nodeType":"UserDefinedTypeName","pathNode":{"id":1742,"name":"Snapshot","nameLocations":["40024:8:0"],"nodeType":"IdentifierPath","referencedDeclaration":1190,"src":"40024:8:0"},"referencedDeclaration":1190,"src":"40024:8:0","typeDescriptions":{"typeIdentifier":"t_struct$_Snapshot_$1190_storage_ptr","typeString":"struct GovernancePowerDelegationERC20.Snapshot"}}}},"visibility":"internal"},{"constant":false,"id":1750,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1756,"src":"40062:35:0","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"typeName":{"id":1749,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":1747,"name":"address","nodeType":"ElementaryTypeName","src":"40070:7:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"40062:27:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":1748,"name":"uint256","nodeType":"ElementaryTypeName","src":"40081:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}},"visibility":"internal"},{"constant":false,"id":1754,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1756,"src":"40123:35:0","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_address_$","typeString":"mapping(address => address)"},"typeName":{"id":1753,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":1751,"name":"address","nodeType":"ElementaryTypeName","src":"40131:7:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"40123:27:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_address_$","typeString":"mapping(address => address)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":1752,"name":"address","nodeType":"ElementaryTypeName","src":"40142:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}},"visibility":"internal"}],"src":"39978:204:0"},"scope":1874,"src":"39867:316:0","stateMutability":"view","virtual":true,"visibility":"internal"},{"body":{"id":1841,"nodeType":"Block","src":"40669:584:0","statements":[{"assignments":[1778],"declarations":[{"constant":false,"id":1778,"mutability":"mutable","name":"currentBlock","nameLocation":"40683:12:0","nodeType":"VariableDeclaration","scope":1841,"src":"40675:20:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"},"typeName":{"id":1777,"name":"uint128","nodeType":"ElementaryTypeName","src":"40675:7:0","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"visibility":"internal"}],"id":1784,"initialValue":{"arguments":[{"expression":{"id":1781,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"40706:5:0","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":1782,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"40712:6:0","memberName":"number","nodeType":"MemberAccess","src":"40706:12:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":1780,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"40698:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_uint128_$","typeString":"type(uint128)"},"typeName":{"id":1779,"name":"uint128","nodeType":"ElementaryTypeName","src":"40698:7:0","typeDescriptions":{}}},"id":1783,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"40698:21:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"nodeType":"VariableDeclarationStatement","src":"40675:44:0"},{"assignments":[1786],"declarations":[{"constant":false,"id":1786,"mutability":"mutable","name":"ownerSnapshotsCount","nameLocation":"40734:19:0","nodeType":"VariableDeclaration","scope":1841,"src":"40726:27:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1785,"name":"uint256","nodeType":"ElementaryTypeName","src":"40726:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":1790,"initialValue":{"baseExpression":{"id":1787,"name":"snapshotsCounts","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1768,"src":"40756:15:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":1789,"indexExpression":{"id":1788,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1770,"src":"40772:5:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"40756:22:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"40726:52:0"},{"assignments":[1795],"declarations":[{"constant":false,"id":1795,"mutability":"mutable","name":"snapshotsOwner","nameLocation":"40821:14:0","nodeType":"VariableDeclaration","scope":1841,"src":"40784:51:0","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_Snapshot_$1190_storage_$","typeString":"mapping(uint256 => struct GovernancePowerDelegationERC20.Snapshot)"},"typeName":{"id":1794,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":1791,"name":"uint256","nodeType":"ElementaryTypeName","src":"40792:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Mapping","src":"40784:28:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_Snapshot_$1190_storage_$","typeString":"mapping(uint256 => struct GovernancePowerDelegationERC20.Snapshot)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":1793,"nodeType":"UserDefinedTypeName","pathNode":{"id":1792,"name":"Snapshot","nameLocations":["40803:8:0"],"nodeType":"IdentifierPath","referencedDeclaration":1190,"src":"40803:8:0"},"referencedDeclaration":1190,"src":"40803:8:0","typeDescriptions":{"typeIdentifier":"t_struct$_Snapshot_$1190_storage_ptr","typeString":"struct GovernancePowerDelegationERC20.Snapshot"}}},"visibility":"internal"}],"id":1799,"initialValue":{"baseExpression":{"id":1796,"name":"snapshots","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1764,"src":"40838:9:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_uint256_$_t_struct$_Snapshot_$1190_storage_$_$","typeString":"mapping(address => mapping(uint256 => struct GovernancePowerDelegationERC20.Snapshot storage ref))"}},"id":1798,"indexExpression":{"id":1797,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1770,"src":"40848:5:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"40838:16:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_Snapshot_$1190_storage_$","typeString":"mapping(uint256 => struct GovernancePowerDelegationERC20.Snapshot storage ref)"}},"nodeType":"VariableDeclarationStatement","src":"40784:70:0"},{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":1811,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1802,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1800,"name":"ownerSnapshotsCount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1786,"src":"40923:19:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":1801,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"40946:1:0","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"40923:24:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_uint128","typeString":"uint128"},"id":1810,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"baseExpression":{"id":1803,"name":"snapshotsOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1795,"src":"40957:14:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_Snapshot_$1190_storage_$","typeString":"mapping(uint256 => struct GovernancePowerDelegationERC20.Snapshot storage ref)"}},"id":1807,"indexExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1806,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1804,"name":"ownerSnapshotsCount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1786,"src":"40972:19:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":1805,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"40994:1:0","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"40972:23:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"40957:39:0","typeDescriptions":{"typeIdentifier":"t_struct$_Snapshot_$1190_storage","typeString":"struct GovernancePowerDelegationERC20.Snapshot storage ref"}},"id":1808,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"40997:11:0","memberName":"blockNumber","nodeType":"MemberAccess","referencedDeclaration":1187,"src":"40957:51:0","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":1809,"name":"currentBlock","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1778,"src":"41012:12:0","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"src":"40957:67:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"40923:101:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":1839,"nodeType":"Block","src":"41108:141:0","statements":[{"expression":{"id":1829,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":1822,"name":"snapshotsOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1795,"src":"41116:14:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_Snapshot_$1190_storage_$","typeString":"mapping(uint256 => struct GovernancePowerDelegationERC20.Snapshot storage ref)"}},"id":1824,"indexExpression":{"id":1823,"name":"ownerSnapshotsCount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1786,"src":"41131:19:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"41116:35:0","typeDescriptions":{"typeIdentifier":"t_struct$_Snapshot_$1190_storage","typeString":"struct GovernancePowerDelegationERC20.Snapshot storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":1826,"name":"currentBlock","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1778,"src":"41163:12:0","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},{"id":1827,"name":"newValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1774,"src":"41177:8:0","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint128","typeString":"uint128"},{"typeIdentifier":"t_uint128","typeString":"uint128"}],"id":1825,"name":"Snapshot","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1190,"src":"41154:8:0","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_Snapshot_$1190_storage_ptr_$","typeString":"type(struct GovernancePowerDelegationERC20.Snapshot storage pointer)"}},"id":1828,"isConstant":false,"isLValue":false,"isPure":false,"kind":"structConstructorCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"41154:32:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_Snapshot_$1190_memory_ptr","typeString":"struct GovernancePowerDelegationERC20.Snapshot memory"}},"src":"41116:70:0","typeDescriptions":{"typeIdentifier":"t_struct$_Snapshot_$1190_storage","typeString":"struct GovernancePowerDelegationERC20.Snapshot storage ref"}},"id":1830,"nodeType":"ExpressionStatement","src":"41116:70:0"},{"expression":{"id":1837,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":1831,"name":"snapshotsCounts","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1768,"src":"41194:15:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":1833,"indexExpression":{"id":1832,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1770,"src":"41210:5:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"41194:22:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1836,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1834,"name":"ownerSnapshotsCount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1786,"src":"41219:19:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"hexValue":"31","id":1835,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"41241:1:0","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"41219:23:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"41194:48:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":1838,"nodeType":"ExpressionStatement","src":"41194:48:0"}]},"id":1840,"nodeType":"IfStatement","src":"40912:337:0","trueBody":{"id":1821,"nodeType":"Block","src":"41031:71:0","statements":[{"expression":{"id":1819,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"baseExpression":{"id":1812,"name":"snapshotsOwner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1795,"src":"41039:14:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_Snapshot_$1190_storage_$","typeString":"mapping(uint256 => struct GovernancePowerDelegationERC20.Snapshot storage ref)"}},"id":1816,"indexExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1815,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1813,"name":"ownerSnapshotsCount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1786,"src":"41054:19:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":1814,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"41076:1:0","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"41054:23:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"41039:39:0","typeDescriptions":{"typeIdentifier":"t_struct$_Snapshot_$1190_storage","typeString":"struct GovernancePowerDelegationERC20.Snapshot storage ref"}},"id":1817,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"41079:5:0","memberName":"value","nodeType":"MemberAccess","referencedDeclaration":1189,"src":"41039:45:0","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":1818,"name":"newValue","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1774,"src":"41087:8:0","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"src":"41039:56:0","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"id":1820,"nodeType":"ExpressionStatement","src":"41039:56:0"}]}}]},"documentation":{"id":1757,"nodeType":"StructuredDocumentation","src":"40187:250:0","text":" @dev Writes a snapshot for an owner of tokens\n @param owner The owner of the tokens\n @param oldValue The value before the operation that is gonna be executed after the snapshot\n @param newValue The value after the operation"},"id":1842,"implemented":true,"kind":"function","modifiers":[],"name":"_writeSnapshot","nameLocation":"40449:14:0","nodeType":"FunctionDefinition","parameters":{"id":1775,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1764,"mutability":"mutable","name":"snapshots","nameLocation":"40526:9:0","nodeType":"VariableDeclaration","scope":1842,"src":"40469:66:0","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_uint256_$_t_struct$_Snapshot_$1190_storage_$_$","typeString":"mapping(address => mapping(uint256 => struct GovernancePowerDelegationERC20.Snapshot))"},"typeName":{"id":1763,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":1758,"name":"address","nodeType":"ElementaryTypeName","src":"40477:7:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"40469:48:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_uint256_$_t_struct$_Snapshot_$1190_storage_$_$","typeString":"mapping(address => mapping(uint256 => struct GovernancePowerDelegationERC20.Snapshot))"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":1762,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":1759,"name":"uint256","nodeType":"ElementaryTypeName","src":"40496:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Mapping","src":"40488:28:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_Snapshot_$1190_storage_$","typeString":"mapping(uint256 => struct GovernancePowerDelegationERC20.Snapshot)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":1761,"nodeType":"UserDefinedTypeName","pathNode":{"id":1760,"name":"Snapshot","nameLocations":["40507:8:0"],"nodeType":"IdentifierPath","referencedDeclaration":1190,"src":"40507:8:0"},"referencedDeclaration":1190,"src":"40507:8:0","typeDescriptions":{"typeIdentifier":"t_struct$_Snapshot_$1190_storage_ptr","typeString":"struct GovernancePowerDelegationERC20.Snapshot"}}}},"visibility":"internal"},{"constant":false,"id":1768,"mutability":"mutable","name":"snapshotsCounts","nameLocation":"40577:15:0","nodeType":"VariableDeclaration","scope":1842,"src":"40541:51:0","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"typeName":{"id":1767,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":1765,"name":"address","nodeType":"ElementaryTypeName","src":"40549:7:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"40541:27:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":1766,"name":"uint256","nodeType":"ElementaryTypeName","src":"40560:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}},"visibility":"internal"},{"constant":false,"id":1770,"mutability":"mutable","name":"owner","nameLocation":"40606:5:0","nodeType":"VariableDeclaration","scope":1842,"src":"40598:13:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1769,"name":"address","nodeType":"ElementaryTypeName","src":"40598:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1772,"mutability":"mutable","name":"oldValue","nameLocation":"40625:8:0","nodeType":"VariableDeclaration","scope":1842,"src":"40617:16:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"},"typeName":{"id":1771,"name":"uint128","nodeType":"ElementaryTypeName","src":"40617:7:0","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"visibility":"internal"},{"constant":false,"id":1774,"mutability":"mutable","name":"newValue","nameLocation":"40647:8:0","nodeType":"VariableDeclaration","scope":1842,"src":"40639:16:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"},"typeName":{"id":1773,"name":"uint128","nodeType":"ElementaryTypeName","src":"40639:7:0","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"visibility":"internal"}],"src":"40463:196:0"},"returnParameters":{"id":1776,"nodeType":"ParameterList","parameters":[],"src":"40669:0:0"},"scope":1874,"src":"40440:813:0","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":1872,"nodeType":"Block","src":"41729:164:0","statements":[{"assignments":[1855],"declarations":[{"constant":false,"id":1855,"mutability":"mutable","name":"previousDelegatee","nameLocation":"41743:17:0","nodeType":"VariableDeclaration","scope":1872,"src":"41735:25:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1854,"name":"address","nodeType":"ElementaryTypeName","src":"41735:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":1859,"initialValue":{"baseExpression":{"id":1856,"name":"delegates","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1849,"src":"41763:9:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_address_$","typeString":"mapping(address => address)"}},"id":1858,"indexExpression":{"id":1857,"name":"delegator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1845,"src":"41773:9:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"41763:20:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"41735:48:0"},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":1865,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":1860,"name":"previousDelegatee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1855,"src":"41794:17:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":1863,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"41823:1:0","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":1862,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"41815:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1861,"name":"address","nodeType":"ElementaryTypeName","src":"41815:7:0","typeDescriptions":{}}},"id":1864,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"41815:10:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"41794:31:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":1869,"nodeType":"IfStatement","src":"41790:68:0","trueBody":{"id":1868,"nodeType":"Block","src":"41827:31:0","statements":[{"expression":{"id":1866,"name":"delegator","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1845,"src":"41842:9:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":1853,"id":1867,"nodeType":"Return","src":"41835:16:0"}]}},{"expression":{"id":1870,"name":"previousDelegatee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1855,"src":"41871:17:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":1853,"id":1871,"nodeType":"Return","src":"41864:24:0"}]},"documentation":{"id":1843,"nodeType":"StructuredDocumentation","src":"41257:334:0","text":" @dev returns the user delegatee. If a user never performed any delegation,\n his delegated address will be 0x0. In that case we simply return the user itself\n @param delegator the address of the user for which return the delegatee\n @param delegates the array of delegates for a particular type of delegation*"},"id":1873,"implemented":true,"kind":"function","modifiers":[],"name":"_getDelegatee","nameLocation":"41603:13:0","nodeType":"FunctionDefinition","parameters":{"id":1850,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1845,"mutability":"mutable","name":"delegator","nameLocation":"41625:9:0","nodeType":"VariableDeclaration","scope":1873,"src":"41617:17:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1844,"name":"address","nodeType":"ElementaryTypeName","src":"41617:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1849,"mutability":"mutable","name":"delegates","nameLocation":"41672:9:0","nodeType":"VariableDeclaration","scope":1873,"src":"41636:45:0","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_address_$","typeString":"mapping(address => address)"},"typeName":{"id":1848,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":1846,"name":"address","nodeType":"ElementaryTypeName","src":"41644:7:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"41636:27:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_address_$","typeString":"mapping(address => address)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":1847,"name":"address","nodeType":"ElementaryTypeName","src":"41655:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}},"visibility":"internal"}],"src":"41616:66:0"},"returnParameters":{"id":1853,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1852,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1873,"src":"41718:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1851,"name":"address","nodeType":"ElementaryTypeName","src":"41718:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"41717:9:0"},"scope":1874,"src":"41594:299:0","stateMutability":"view","virtual":false,"visibility":"internal"}],"scope":7298,"src":"31745:10150:0","usedErrors":[],"usedEvents":[11,20,1098,1108]},{"id":1875,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"42001:23:0"},{"abstract":false,"baseContracts":[],"canonicalName":"ITransferHook","contractDependencies":[],"contractKind":"interface","fullyImplemented":false,"id":1885,"linearizedBaseContracts":[1885],"name":"ITransferHook","nameLocation":"42036:13:0","nodeType":"ContractDefinition","nodes":[{"functionSelector":"4a393149","id":1884,"implemented":false,"kind":"function","modifiers":[],"name":"onTransfer","nameLocation":"42063:10:0","nodeType":"FunctionDefinition","parameters":{"id":1882,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1877,"mutability":"mutable","name":"from","nameLocation":"42087:4:0","nodeType":"VariableDeclaration","scope":1884,"src":"42079:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1876,"name":"address","nodeType":"ElementaryTypeName","src":"42079:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1879,"mutability":"mutable","name":"to","nameLocation":"42105:2:0","nodeType":"VariableDeclaration","scope":1884,"src":"42097:10:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1878,"name":"address","nodeType":"ElementaryTypeName","src":"42097:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1881,"mutability":"mutable","name":"amount","nameLocation":"42121:6:0","nodeType":"VariableDeclaration","scope":1884,"src":"42113:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1880,"name":"uint256","nodeType":"ElementaryTypeName","src":"42113:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"42073:58:0"},"returnParameters":{"id":1883,"nodeType":"ParameterList","parameters":[],"src":"42140:0:0"},"scope":1885,"src":"42054:87:0","stateMutability":"nonpayable","virtual":false,"visibility":"external"}],"scope":7298,"src":"42026:117:0","usedErrors":[],"usedEvents":[]},{"id":1886,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"42256:23:0"},{"abstract":true,"baseContracts":[{"baseName":{"id":1888,"name":"GovernancePowerDelegationERC20","nameLocations":["42462:30:0"],"nodeType":"IdentifierPath","referencedDeclaration":1874,"src":"42462:30:0"},"id":1889,"nodeType":"InheritanceSpecifier","src":"42462:30:0"}],"canonicalName":"GovernancePowerWithSnapshot","contractDependencies":[],"contractKind":"contract","documentation":{"id":1887,"nodeType":"StructuredDocumentation","src":"42283:129:0","text":" @title ERC20WithSnapshot\n @notice ERC20 including snapshots of balances on transfer-related actions\n @author Aave*"},"fullyImplemented":false,"id":1906,"linearizedBaseContracts":[1906,1874,1167,1084,100,77,511],"name":"GovernancePowerWithSnapshot","nameLocation":"42431:27:0","nodeType":"ContractDefinition","nodes":[{"constant":false,"documentation":{"id":1890,"nodeType":"StructuredDocumentation","src":"42497:225:0","text":" @dev The following storage layout points to the prior StakedToken.sol implementation:\n _snapshots => _votingSnapshots\n _snapshotsCounts =>  _votingSnapshotsCounts\n _aaveGovernance => _aaveGovernance"},"functionSelector":"5b3cc0cf","id":1897,"mutability":"mutable","name":"_votingSnapshots","nameLocation":"42781:16:0","nodeType":"VariableDeclaration","scope":1906,"src":"42725:72:0","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_uint256_$_t_struct$_Snapshot_$1190_storage_$_$","typeString":"mapping(address => mapping(uint256 => struct GovernancePowerDelegationERC20.Snapshot))"},"typeName":{"id":1896,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":1891,"name":"address","nodeType":"ElementaryTypeName","src":"42733:7:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"42725:48:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_uint256_$_t_struct$_Snapshot_$1190_storage_$_$","typeString":"mapping(address => mapping(uint256 => struct GovernancePowerDelegationERC20.Snapshot))"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":1895,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":1892,"name":"uint256","nodeType":"ElementaryTypeName","src":"42752:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Mapping","src":"42744:28:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_Snapshot_$1190_storage_$","typeString":"mapping(uint256 => struct GovernancePowerDelegationERC20.Snapshot)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":1894,"nodeType":"UserDefinedTypeName","pathNode":{"id":1893,"name":"Snapshot","nameLocations":["42763:8:0"],"nodeType":"IdentifierPath","referencedDeclaration":1190,"src":"42763:8:0"},"referencedDeclaration":1190,"src":"42763:8:0","typeDescriptions":{"typeIdentifier":"t_struct$_Snapshot_$1190_storage_ptr","typeString":"struct GovernancePowerDelegationERC20.Snapshot"}}}},"visibility":"public"},{"constant":false,"functionSelector":"7bb73c97","id":1901,"mutability":"mutable","name":"_votingSnapshotsCounts","nameLocation":"42836:22:0","nodeType":"VariableDeclaration","scope":1906,"src":"42801:57:0","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"typeName":{"id":1900,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":1898,"name":"address","nodeType":"ElementaryTypeName","src":"42809:7:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"42801:27:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":1899,"name":"uint256","nodeType":"ElementaryTypeName","src":"42820:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}},"visibility":"public"},{"constant":false,"documentation":{"id":1902,"nodeType":"StructuredDocumentation","src":"42863:300:0","text":"@dev reference to the Aave governance contract to call (if initialized) on _beforeTokenTransfer\n !!! IMPORTANT The Aave governance is considered a trustable contract, being its responsibility\n to control all potential reentrancies by calling back the this contract\n @dev DEPRECATED"},"functionSelector":"c3863ada","id":1905,"mutability":"mutable","name":"_aaveGovernance","nameLocation":"43187:15:0","nodeType":"VariableDeclaration","scope":1906,"src":"43166:36:0","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_ITransferHook_$1885","typeString":"contract ITransferHook"},"typeName":{"id":1904,"nodeType":"UserDefinedTypeName","pathNode":{"id":1903,"name":"ITransferHook","nameLocations":["43166:13:0"],"nodeType":"IdentifierPath","referencedDeclaration":1885,"src":"43166:13:0"},"referencedDeclaration":1885,"src":"43166:13:0","typeDescriptions":{"typeIdentifier":"t_contract$_ITransferHook_$1885","typeString":"contract ITransferHook"}},"visibility":"public"}],"scope":7298,"src":"42413:792:0","usedErrors":[],"usedEvents":[11,20,1098,1108]},{"id":1907,"literals":["solidity","^","0.8",".1"],"nodeType":"PragmaDirective","src":"43362:23:0"},{"abstract":false,"baseContracts":[],"canonicalName":"Address","contractDependencies":[],"contractKind":"library","documentation":{"id":1908,"nodeType":"StructuredDocumentation","src":"43387:67:0","text":" @dev Collection of functions related to the address type"},"fullyImplemented":true,"id":2235,"linearizedBaseContracts":[2235],"name":"Address","nameLocation":"43463:7:0","nodeType":"ContractDefinition","nodes":[{"body":{"id":1922,"nodeType":"Block","src":"44502:254:0","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1920,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"expression":{"id":1916,"name":"account","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1911,"src":"44726:7:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":1917,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"44734:4:0","memberName":"code","nodeType":"MemberAccess","src":"44726:12:0","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":1918,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"44739:6:0","memberName":"length","nodeType":"MemberAccess","src":"44726:19:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":1919,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"44748:1:0","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"44726:23:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"functionReturnParameters":1915,"id":1921,"nodeType":"Return","src":"44719:30:0"}]},"documentation":{"id":1909,"nodeType":"StructuredDocumentation","src":"43477:954:0","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 ====\n [IMPORTANT]\n ====\n You shouldn't rely on `isContract` to protect against flash loan attacks!\n Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets\n like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract\n constructor.\n ===="},"id":1923,"implemented":true,"kind":"function","modifiers":[],"name":"isContract","nameLocation":"44445:10:0","nodeType":"FunctionDefinition","parameters":{"id":1912,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1911,"mutability":"mutable","name":"account","nameLocation":"44464:7:0","nodeType":"VariableDeclaration","scope":1923,"src":"44456:15:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1910,"name":"address","nodeType":"ElementaryTypeName","src":"44456:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"44455:17:0"},"returnParameters":{"id":1915,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1914,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1923,"src":"44496:4:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1913,"name":"bool","nodeType":"ElementaryTypeName","src":"44496:4:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"44495:6:0"},"scope":2235,"src":"44436:320:0","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":1956,"nodeType":"Block","src":"45743:241:0","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":1938,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"arguments":[{"id":1934,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"45769:4:0","typeDescriptions":{"typeIdentifier":"t_contract$_Address_$2235","typeString":"library Address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_Address_$2235","typeString":"library Address"}],"id":1933,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"45761:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":1932,"name":"address","nodeType":"ElementaryTypeName","src":"45761:7:0","typeDescriptions":{}}},"id":1935,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"45761:13:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":1936,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"45775:7:0","memberName":"balance","nodeType":"MemberAccess","src":"45761:21:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"id":1937,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1928,"src":"45786:6:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"45761:31:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"416464726573733a20696e73756666696369656e742062616c616e6365","id":1939,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"45794:31:0","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":1931,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"45753:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1940,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"45753:73:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1941,"nodeType":"ExpressionStatement","src":"45753:73:0"},{"assignments":[1943,null],"declarations":[{"constant":false,"id":1943,"mutability":"mutable","name":"success","nameLocation":"45843:7:0","nodeType":"VariableDeclaration","scope":1956,"src":"45838:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":1942,"name":"bool","nodeType":"ElementaryTypeName","src":"45838:4:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},null],"id":1950,"initialValue":{"arguments":[{"hexValue":"","id":1948,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"45886:2:0","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":1944,"name":"recipient","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1926,"src":"45856:9:0","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"}},"id":1945,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"45866:4:0","memberName":"call","nodeType":"MemberAccess","src":"45856:14:0","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":1947,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"names":["value"],"nodeType":"FunctionCallOptions","options":[{"id":1946,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1928,"src":"45878:6:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"src":"45856:29:0","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":1949,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"45856:33:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bytes_memory_ptr_$","typeString":"tuple(bool,bytes memory)"}},"nodeType":"VariableDeclarationStatement","src":"45837:52:0"},{"expression":{"arguments":[{"id":1952,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1943,"src":"45907:7:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"416464726573733a20756e61626c6520746f2073656e642076616c75652c20726563697069656e74206d61792068617665207265766572746564","id":1953,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"45916:60:0","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":1951,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"45899:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":1954,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"45899:78:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":1955,"nodeType":"ExpressionStatement","src":"45899:78:0"}]},"documentation":{"id":1924,"nodeType":"StructuredDocumentation","src":"44762:905:0","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://consensys.net/diligence/blog/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":1957,"implemented":true,"kind":"function","modifiers":[],"name":"sendValue","nameLocation":"45681:9:0","nodeType":"FunctionDefinition","parameters":{"id":1929,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1926,"mutability":"mutable","name":"recipient","nameLocation":"45707:9:0","nodeType":"VariableDeclaration","scope":1957,"src":"45691:25:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"},"typeName":{"id":1925,"name":"address","nodeType":"ElementaryTypeName","src":"45691:15:0","stateMutability":"payable","typeDescriptions":{"typeIdentifier":"t_address_payable","typeString":"address payable"}},"visibility":"internal"},{"constant":false,"id":1928,"mutability":"mutable","name":"amount","nameLocation":"45726:6:0","nodeType":"VariableDeclaration","scope":1957,"src":"45718:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":1927,"name":"uint256","nodeType":"ElementaryTypeName","src":"45718:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"45690:43:0"},"returnParameters":{"id":1930,"nodeType":"ParameterList","parameters":[],"src":"45743:0:0"},"scope":2235,"src":"45672:312:0","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":1974,"nodeType":"Block","src":"46815:96:0","statements":[{"expression":{"arguments":[{"id":1968,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1960,"src":"46854:6:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1969,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1962,"src":"46862:4:0","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"hexValue":"30","id":1970,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"46868:1:0","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"hexValue":"416464726573733a206c6f772d6c6576656c2063616c6c206661696c6564","id":1971,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"46871:32:0","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_rational_0_by_1","typeString":"int_const 0"},{"typeIdentifier":"t_stringliteral_24d7ab5d382116e64324f19950ca9340b8af1ddeb09a8d026e0a3c6a01dcc9df","typeString":"literal_string \"Address: low-level call failed\""}],"id":1967,"name":"functionCallWithValue","nodeType":"Identifier","overloadedDeclarations":[2015,2059],"referencedDeclaration":2059,"src":"46832:21:0","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":1972,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"46832:72:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":1966,"id":1973,"nodeType":"Return","src":"46825:79:0"}]},"documentation":{"id":1958,"nodeType":"StructuredDocumentation","src":"45990:731:0","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":1975,"implemented":true,"kind":"function","modifiers":[],"name":"functionCall","nameLocation":"46735:12:0","nodeType":"FunctionDefinition","parameters":{"id":1963,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1960,"mutability":"mutable","name":"target","nameLocation":"46756:6:0","nodeType":"VariableDeclaration","scope":1975,"src":"46748:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1959,"name":"address","nodeType":"ElementaryTypeName","src":"46748:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1962,"mutability":"mutable","name":"data","nameLocation":"46777:4:0","nodeType":"VariableDeclaration","scope":1975,"src":"46764:17:0","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":1961,"name":"bytes","nodeType":"ElementaryTypeName","src":"46764:5:0","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"46747:35:0"},"returnParameters":{"id":1966,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1965,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1975,"src":"46801:12:0","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":1964,"name":"bytes","nodeType":"ElementaryTypeName","src":"46801:5:0","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"46800:14:0"},"scope":2235,"src":"46726:185:0","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":1994,"nodeType":"Block","src":"47280:76:0","statements":[{"expression":{"arguments":[{"id":1988,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1978,"src":"47319:6:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":1989,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1980,"src":"47327:4:0","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"hexValue":"30","id":1990,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"47333:1:0","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},{"id":1991,"name":"errorMessage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1982,"src":"47336:12:0","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":1987,"name":"functionCallWithValue","nodeType":"Identifier","overloadedDeclarations":[2015,2059],"referencedDeclaration":2059,"src":"47297:21:0","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":1992,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"47297:52:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":1986,"id":1993,"nodeType":"Return","src":"47290:59:0"}]},"documentation":{"id":1976,"nodeType":"StructuredDocumentation","src":"46917:211:0","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":1995,"implemented":true,"kind":"function","modifiers":[],"name":"functionCall","nameLocation":"47142:12:0","nodeType":"FunctionDefinition","parameters":{"id":1983,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1978,"mutability":"mutable","name":"target","nameLocation":"47172:6:0","nodeType":"VariableDeclaration","scope":1995,"src":"47164:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1977,"name":"address","nodeType":"ElementaryTypeName","src":"47164:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":1980,"mutability":"mutable","name":"data","nameLocation":"47201:4:0","nodeType":"VariableDeclaration","scope":1995,"src":"47188:17:0","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":1979,"name":"bytes","nodeType":"ElementaryTypeName","src":"47188:5:0","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":1982,"mutability":"mutable","name":"errorMessage","nameLocation":"47229:12:0","nodeType":"VariableDeclaration","scope":1995,"src":"47215:26:0","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":1981,"name":"string","nodeType":"ElementaryTypeName","src":"47215:6:0","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"47154:93:0"},"returnParameters":{"id":1986,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1985,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":1995,"src":"47266:12:0","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":1984,"name":"bytes","nodeType":"ElementaryTypeName","src":"47266:5:0","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"47265:14:0"},"scope":2235,"src":"47133:223:0","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":2014,"nodeType":"Block","src":"47861:111:0","statements":[{"expression":{"arguments":[{"id":2008,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1998,"src":"47900:6:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2009,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2000,"src":"47908:4:0","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":2010,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2002,"src":"47914:5:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"416464726573733a206c6f772d6c6576656c2063616c6c20776974682076616c7565206661696c6564","id":2011,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"47921:43:0","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":2007,"name":"functionCallWithValue","nodeType":"Identifier","overloadedDeclarations":[2015,2059],"referencedDeclaration":2059,"src":"47878:21:0","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":2012,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"47878:87:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":2006,"id":2013,"nodeType":"Return","src":"47871:94:0"}]},"documentation":{"id":1996,"nodeType":"StructuredDocumentation","src":"47362:351:0","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":2015,"implemented":true,"kind":"function","modifiers":[],"name":"functionCallWithValue","nameLocation":"47727:21:0","nodeType":"FunctionDefinition","parameters":{"id":2003,"nodeType":"ParameterList","parameters":[{"constant":false,"id":1998,"mutability":"mutable","name":"target","nameLocation":"47766:6:0","nodeType":"VariableDeclaration","scope":2015,"src":"47758:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":1997,"name":"address","nodeType":"ElementaryTypeName","src":"47758:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2000,"mutability":"mutable","name":"data","nameLocation":"47795:4:0","nodeType":"VariableDeclaration","scope":2015,"src":"47782:17:0","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":1999,"name":"bytes","nodeType":"ElementaryTypeName","src":"47782:5:0","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":2002,"mutability":"mutable","name":"value","nameLocation":"47817:5:0","nodeType":"VariableDeclaration","scope":2015,"src":"47809:13:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2001,"name":"uint256","nodeType":"ElementaryTypeName","src":"47809:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"47748:80:0"},"returnParameters":{"id":2006,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2005,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2015,"src":"47847:12:0","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":2004,"name":"bytes","nodeType":"ElementaryTypeName","src":"47847:5:0","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"47846:14:0"},"scope":2235,"src":"47718:254:0","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":2058,"nodeType":"Block","src":"48399:267:0","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2036,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"arguments":[{"id":2032,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"48425:4:0","typeDescriptions":{"typeIdentifier":"t_contract$_Address_$2235","typeString":"library Address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_Address_$2235","typeString":"library Address"}],"id":2031,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"48417:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":2030,"name":"address","nodeType":"ElementaryTypeName","src":"48417:7:0","typeDescriptions":{}}},"id":2033,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"48417:13:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":2034,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"48431:7:0","memberName":"balance","nodeType":"MemberAccess","src":"48417:21:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"id":2035,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2022,"src":"48442:5:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"48417:30:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c","id":2037,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"48449:40:0","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":2029,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"48409:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2038,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"48409:81:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2039,"nodeType":"ExpressionStatement","src":"48409:81:0"},{"assignments":[2041,2043],"declarations":[{"constant":false,"id":2041,"mutability":"mutable","name":"success","nameLocation":"48506:7:0","nodeType":"VariableDeclaration","scope":2058,"src":"48501:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2040,"name":"bool","nodeType":"ElementaryTypeName","src":"48501:4:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":2043,"mutability":"mutable","name":"returndata","nameLocation":"48528:10:0","nodeType":"VariableDeclaration","scope":2058,"src":"48515:23:0","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":2042,"name":"bytes","nodeType":"ElementaryTypeName","src":"48515:5:0","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":2050,"initialValue":{"arguments":[{"id":2048,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2020,"src":"48568:4:0","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":2044,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2018,"src":"48542:6:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":2045,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"48549:4:0","memberName":"call","nodeType":"MemberAccess","src":"48542:11:0","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":2047,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"names":["value"],"nodeType":"FunctionCallOptions","options":[{"id":2046,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2022,"src":"48561:5:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"src":"48542:25:0","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":2049,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"48542:31:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bytes_memory_ptr_$","typeString":"tuple(bool,bytes memory)"}},"nodeType":"VariableDeclarationStatement","src":"48500:73:0"},{"expression":{"arguments":[{"id":2052,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2018,"src":"48617:6:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2053,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2041,"src":"48625:7:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"id":2054,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2043,"src":"48634:10:0","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":2055,"name":"errorMessage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2024,"src":"48646:12:0","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":2051,"name":"verifyCallResultFromTarget","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2190,"src":"48590:26:0","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_bool_$_t_bytes_memory_ptr_$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$","typeString":"function (address,bool,bytes memory,string memory) view returns (bytes memory)"}},"id":2056,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"48590:69:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":2028,"id":2057,"nodeType":"Return","src":"48583:76:0"}]},"documentation":{"id":2016,"nodeType":"StructuredDocumentation","src":"47978:237:0","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":2059,"implemented":true,"kind":"function","modifiers":[],"name":"functionCallWithValue","nameLocation":"48229:21:0","nodeType":"FunctionDefinition","parameters":{"id":2025,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2018,"mutability":"mutable","name":"target","nameLocation":"48268:6:0","nodeType":"VariableDeclaration","scope":2059,"src":"48260:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2017,"name":"address","nodeType":"ElementaryTypeName","src":"48260:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2020,"mutability":"mutable","name":"data","nameLocation":"48297:4:0","nodeType":"VariableDeclaration","scope":2059,"src":"48284:17:0","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":2019,"name":"bytes","nodeType":"ElementaryTypeName","src":"48284:5:0","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":2022,"mutability":"mutable","name":"value","nameLocation":"48319:5:0","nodeType":"VariableDeclaration","scope":2059,"src":"48311:13:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2021,"name":"uint256","nodeType":"ElementaryTypeName","src":"48311:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2024,"mutability":"mutable","name":"errorMessage","nameLocation":"48348:12:0","nodeType":"VariableDeclaration","scope":2059,"src":"48334:26:0","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":2023,"name":"string","nodeType":"ElementaryTypeName","src":"48334:6:0","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"48250:116:0"},"returnParameters":{"id":2028,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2027,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2059,"src":"48385:12:0","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":2026,"name":"bytes","nodeType":"ElementaryTypeName","src":"48385:5:0","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"48384:14:0"},"scope":2235,"src":"48220:446:0","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":2075,"nodeType":"Block","src":"48943:97:0","statements":[{"expression":{"arguments":[{"id":2070,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2062,"src":"48979:6:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2071,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2064,"src":"48987:4:0","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"hexValue":"416464726573733a206c6f772d6c6576656c207374617469632063616c6c206661696c6564","id":2072,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"48993:39:0","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":2069,"name":"functionStaticCall","nodeType":"Identifier","overloadedDeclarations":[2076,2105],"referencedDeclaration":2105,"src":"48960:18:0","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":2073,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"48960:73:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":2068,"id":2074,"nodeType":"Return","src":"48953:80:0"}]},"documentation":{"id":2060,"nodeType":"StructuredDocumentation","src":"48672:166:0","text":" @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n but performing a static call.\n _Available since v3.3._"},"id":2076,"implemented":true,"kind":"function","modifiers":[],"name":"functionStaticCall","nameLocation":"48852:18:0","nodeType":"FunctionDefinition","parameters":{"id":2065,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2062,"mutability":"mutable","name":"target","nameLocation":"48879:6:0","nodeType":"VariableDeclaration","scope":2076,"src":"48871:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2061,"name":"address","nodeType":"ElementaryTypeName","src":"48871:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2064,"mutability":"mutable","name":"data","nameLocation":"48900:4:0","nodeType":"VariableDeclaration","scope":2076,"src":"48887:17:0","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":2063,"name":"bytes","nodeType":"ElementaryTypeName","src":"48887:5:0","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"48870:35:0"},"returnParameters":{"id":2068,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2067,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2076,"src":"48929:12:0","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":2066,"name":"bytes","nodeType":"ElementaryTypeName","src":"48929:5:0","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"48928:14:0"},"scope":2235,"src":"48843:197:0","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":2104,"nodeType":"Block","src":"49382:168:0","statements":[{"assignments":[2089,2091],"declarations":[{"constant":false,"id":2089,"mutability":"mutable","name":"success","nameLocation":"49398:7:0","nodeType":"VariableDeclaration","scope":2104,"src":"49393:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2088,"name":"bool","nodeType":"ElementaryTypeName","src":"49393:4:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":2091,"mutability":"mutable","name":"returndata","nameLocation":"49420:10:0","nodeType":"VariableDeclaration","scope":2104,"src":"49407:23:0","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":2090,"name":"bytes","nodeType":"ElementaryTypeName","src":"49407:5:0","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":2096,"initialValue":{"arguments":[{"id":2094,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2081,"src":"49452:4:0","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"id":2092,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2079,"src":"49434:6:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":2093,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"49441:10:0","memberName":"staticcall","nodeType":"MemberAccess","src":"49434:17:0","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":2095,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"49434:23:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bytes_memory_ptr_$","typeString":"tuple(bool,bytes memory)"}},"nodeType":"VariableDeclarationStatement","src":"49392:65:0"},{"expression":{"arguments":[{"id":2098,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2079,"src":"49501:6:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2099,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2089,"src":"49509:7:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"id":2100,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2091,"src":"49518:10:0","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":2101,"name":"errorMessage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2083,"src":"49530:12:0","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":2097,"name":"verifyCallResultFromTarget","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2190,"src":"49474:26:0","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_bool_$_t_bytes_memory_ptr_$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$","typeString":"function (address,bool,bytes memory,string memory) view returns (bytes memory)"}},"id":2102,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"49474:69:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":2087,"id":2103,"nodeType":"Return","src":"49467:76:0"}]},"documentation":{"id":2077,"nodeType":"StructuredDocumentation","src":"49046:173:0","text":" @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\n but performing a static call.\n _Available since v3.3._"},"id":2105,"implemented":true,"kind":"function","modifiers":[],"name":"functionStaticCall","nameLocation":"49233:18:0","nodeType":"FunctionDefinition","parameters":{"id":2084,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2079,"mutability":"mutable","name":"target","nameLocation":"49269:6:0","nodeType":"VariableDeclaration","scope":2105,"src":"49261:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2078,"name":"address","nodeType":"ElementaryTypeName","src":"49261:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2081,"mutability":"mutable","name":"data","nameLocation":"49298:4:0","nodeType":"VariableDeclaration","scope":2105,"src":"49285:17:0","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":2080,"name":"bytes","nodeType":"ElementaryTypeName","src":"49285:5:0","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":2083,"mutability":"mutable","name":"errorMessage","nameLocation":"49326:12:0","nodeType":"VariableDeclaration","scope":2105,"src":"49312:26:0","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":2082,"name":"string","nodeType":"ElementaryTypeName","src":"49312:6:0","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"49251:93:0"},"returnParameters":{"id":2087,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2086,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2105,"src":"49368:12:0","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":2085,"name":"bytes","nodeType":"ElementaryTypeName","src":"49368:5:0","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"49367:14:0"},"scope":2235,"src":"49224:326:0","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":2121,"nodeType":"Block","src":"49826:101:0","statements":[{"expression":{"arguments":[{"id":2116,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2108,"src":"49864:6:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2117,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2110,"src":"49872:4:0","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"hexValue":"416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564","id":2118,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"49878:41:0","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":2115,"name":"functionDelegateCall","nodeType":"Identifier","overloadedDeclarations":[2122,2151],"referencedDeclaration":2151,"src":"49843:20:0","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":2119,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"49843:77:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":2114,"id":2120,"nodeType":"Return","src":"49836:84:0"}]},"documentation":{"id":2106,"nodeType":"StructuredDocumentation","src":"49556:168:0","text":" @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n but performing a delegate call.\n _Available since v3.4._"},"id":2122,"implemented":true,"kind":"function","modifiers":[],"name":"functionDelegateCall","nameLocation":"49738:20:0","nodeType":"FunctionDefinition","parameters":{"id":2111,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2108,"mutability":"mutable","name":"target","nameLocation":"49767:6:0","nodeType":"VariableDeclaration","scope":2122,"src":"49759:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2107,"name":"address","nodeType":"ElementaryTypeName","src":"49759:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2110,"mutability":"mutable","name":"data","nameLocation":"49788:4:0","nodeType":"VariableDeclaration","scope":2122,"src":"49775:17:0","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":2109,"name":"bytes","nodeType":"ElementaryTypeName","src":"49775:5:0","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"49758:35:0"},"returnParameters":{"id":2114,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2113,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2122,"src":"49812:12:0","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":2112,"name":"bytes","nodeType":"ElementaryTypeName","src":"49812:5:0","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"49811:14:0"},"scope":2235,"src":"49729:198:0","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":2150,"nodeType":"Block","src":"50268:170:0","statements":[{"assignments":[2135,2137],"declarations":[{"constant":false,"id":2135,"mutability":"mutable","name":"success","nameLocation":"50284:7:0","nodeType":"VariableDeclaration","scope":2150,"src":"50279:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2134,"name":"bool","nodeType":"ElementaryTypeName","src":"50279:4:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":2137,"mutability":"mutable","name":"returndata","nameLocation":"50306:10:0","nodeType":"VariableDeclaration","scope":2150,"src":"50293:23:0","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":2136,"name":"bytes","nodeType":"ElementaryTypeName","src":"50293:5:0","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":2142,"initialValue":{"arguments":[{"id":2140,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2127,"src":"50340:4:0","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"expression":{"id":2138,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2125,"src":"50320:6:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":2139,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"50327:12:0","memberName":"delegatecall","nodeType":"MemberAccess","src":"50320:19:0","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":2141,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"50320:25:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$_t_bool_$_t_bytes_memory_ptr_$","typeString":"tuple(bool,bytes memory)"}},"nodeType":"VariableDeclarationStatement","src":"50278:67:0"},{"expression":{"arguments":[{"id":2144,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2125,"src":"50389:6:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2145,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2135,"src":"50397:7:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"id":2146,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2137,"src":"50406:10:0","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":2147,"name":"errorMessage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2129,"src":"50418:12:0","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":2143,"name":"verifyCallResultFromTarget","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2190,"src":"50362:26:0","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_bool_$_t_bytes_memory_ptr_$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$","typeString":"function (address,bool,bytes memory,string memory) view returns (bytes memory)"}},"id":2148,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"50362:69:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":2133,"id":2149,"nodeType":"Return","src":"50355:76:0"}]},"documentation":{"id":2123,"nodeType":"StructuredDocumentation","src":"49933:175:0","text":" @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\n but performing a delegate call.\n _Available since v3.4._"},"id":2151,"implemented":true,"kind":"function","modifiers":[],"name":"functionDelegateCall","nameLocation":"50122:20:0","nodeType":"FunctionDefinition","parameters":{"id":2130,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2125,"mutability":"mutable","name":"target","nameLocation":"50160:6:0","nodeType":"VariableDeclaration","scope":2151,"src":"50152:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2124,"name":"address","nodeType":"ElementaryTypeName","src":"50152:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2127,"mutability":"mutable","name":"data","nameLocation":"50189:4:0","nodeType":"VariableDeclaration","scope":2151,"src":"50176:17:0","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":2126,"name":"bytes","nodeType":"ElementaryTypeName","src":"50176:5:0","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":2129,"mutability":"mutable","name":"errorMessage","nameLocation":"50217:12:0","nodeType":"VariableDeclaration","scope":2151,"src":"50203:26:0","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":2128,"name":"string","nodeType":"ElementaryTypeName","src":"50203:6:0","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"50142:93:0"},"returnParameters":{"id":2133,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2132,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2151,"src":"50254:12:0","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":2131,"name":"bytes","nodeType":"ElementaryTypeName","src":"50254:5:0","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"50253:14:0"},"scope":2235,"src":"50113:325:0","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":2189,"nodeType":"Block","src":"50920:434:0","statements":[{"condition":{"id":2165,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2156,"src":"50934:7:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":2187,"nodeType":"Block","src":"51290:58:0","statements":[{"expression":{"arguments":[{"id":2183,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2158,"src":"51312:10:0","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":2184,"name":"errorMessage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2160,"src":"51324:12:0","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":2182,"name":"_revert","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2234,"src":"51304:7:0","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$_t_string_memory_ptr_$returns$__$","typeString":"function (bytes memory,string memory) pure"}},"id":2185,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"51304:33:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2186,"nodeType":"ExpressionStatement","src":"51304:33:0"}]},"id":2188,"nodeType":"IfStatement","src":"50930:418:0","trueBody":{"id":2181,"nodeType":"Block","src":"50943:341:0","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2169,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":2166,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2158,"src":"50961:10:0","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":2167,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"50972:6:0","memberName":"length","nodeType":"MemberAccess","src":"50961:17:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":2168,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"50982:1:0","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"50961:22:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2178,"nodeType":"IfStatement","src":"50957:286:0","trueBody":{"id":2177,"nodeType":"Block","src":"50985:258:0","statements":[{"expression":{"arguments":[{"arguments":[{"id":2172,"name":"target","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2154,"src":"51187:6:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":2171,"name":"isContract","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1923,"src":"51176:10:0","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_bool_$","typeString":"function (address) view returns (bool)"}},"id":2173,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"51176:18:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374","id":2174,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"51196:31:0","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":2170,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"51168:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2175,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"51168:60:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2176,"nodeType":"ExpressionStatement","src":"51168:60:0"}]}},{"expression":{"id":2179,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2158,"src":"51263:10:0","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":2164,"id":2180,"nodeType":"Return","src":"51256:17:0"}]}}]},"documentation":{"id":2152,"nodeType":"StructuredDocumentation","src":"50444:277:0","text":" @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling\n the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.\n _Available since v4.8._"},"id":2190,"implemented":true,"kind":"function","modifiers":[],"name":"verifyCallResultFromTarget","nameLocation":"50735:26:0","nodeType":"FunctionDefinition","parameters":{"id":2161,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2154,"mutability":"mutable","name":"target","nameLocation":"50779:6:0","nodeType":"VariableDeclaration","scope":2190,"src":"50771:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2153,"name":"address","nodeType":"ElementaryTypeName","src":"50771:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2156,"mutability":"mutable","name":"success","nameLocation":"50800:7:0","nodeType":"VariableDeclaration","scope":2190,"src":"50795:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2155,"name":"bool","nodeType":"ElementaryTypeName","src":"50795:4:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":2158,"mutability":"mutable","name":"returndata","nameLocation":"50830:10:0","nodeType":"VariableDeclaration","scope":2190,"src":"50817:23:0","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":2157,"name":"bytes","nodeType":"ElementaryTypeName","src":"50817:5:0","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":2160,"mutability":"mutable","name":"errorMessage","nameLocation":"50864:12:0","nodeType":"VariableDeclaration","scope":2190,"src":"50850:26:0","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":2159,"name":"string","nodeType":"ElementaryTypeName","src":"50850:6:0","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"50761:121:0"},"returnParameters":{"id":2164,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2163,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2190,"src":"50906:12:0","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":2162,"name":"bytes","nodeType":"ElementaryTypeName","src":"50906:5:0","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"50905:14:0"},"scope":2235,"src":"50726:628:0","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":2213,"nodeType":"Block","src":"51735:135:0","statements":[{"condition":{"id":2202,"name":"success","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2193,"src":"51749:7:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":2211,"nodeType":"Block","src":"51806:58:0","statements":[{"expression":{"arguments":[{"id":2207,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2195,"src":"51828:10:0","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"id":2208,"name":"errorMessage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2197,"src":"51840:12:0","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"},{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":2206,"name":"_revert","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2234,"src":"51820:7:0","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_bytes_memory_ptr_$_t_string_memory_ptr_$returns$__$","typeString":"function (bytes memory,string memory) pure"}},"id":2209,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"51820:33:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2210,"nodeType":"ExpressionStatement","src":"51820:33:0"}]},"id":2212,"nodeType":"IfStatement","src":"51745:119:0","trueBody":{"id":2205,"nodeType":"Block","src":"51758:42:0","statements":[{"expression":{"id":2203,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2195,"src":"51779:10:0","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"functionReturnParameters":2201,"id":2204,"nodeType":"Return","src":"51772:17:0"}]}}]},"documentation":{"id":2191,"nodeType":"StructuredDocumentation","src":"51360:210:0","text":" @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the\n revert reason or using the provided one.\n _Available since v4.3._"},"id":2214,"implemented":true,"kind":"function","modifiers":[],"name":"verifyCallResult","nameLocation":"51584:16:0","nodeType":"FunctionDefinition","parameters":{"id":2198,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2193,"mutability":"mutable","name":"success","nameLocation":"51615:7:0","nodeType":"VariableDeclaration","scope":2214,"src":"51610:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":2192,"name":"bool","nodeType":"ElementaryTypeName","src":"51610:4:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"},{"constant":false,"id":2195,"mutability":"mutable","name":"returndata","nameLocation":"51645:10:0","nodeType":"VariableDeclaration","scope":2214,"src":"51632:23:0","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":2194,"name":"bytes","nodeType":"ElementaryTypeName","src":"51632:5:0","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":2197,"mutability":"mutable","name":"errorMessage","nameLocation":"51679:12:0","nodeType":"VariableDeclaration","scope":2214,"src":"51665:26:0","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":2196,"name":"string","nodeType":"ElementaryTypeName","src":"51665:6:0","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"51600:97:0"},"returnParameters":{"id":2201,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2200,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2214,"src":"51721:12:0","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":2199,"name":"bytes","nodeType":"ElementaryTypeName","src":"51721:5:0","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"51720:14:0"},"scope":2235,"src":"51575:295:0","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":2233,"nodeType":"Block","src":"51959:457:0","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2224,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":2221,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2216,"src":"52035:10:0","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":2222,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"52046:6:0","memberName":"length","nodeType":"MemberAccess","src":"52035:17:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":2223,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"52055:1:0","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"52035:21:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":2231,"nodeType":"Block","src":"52365:45:0","statements":[{"expression":{"arguments":[{"id":2228,"name":"errorMessage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2218,"src":"52386:12:0","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_string_memory_ptr","typeString":"string memory"}],"id":2227,"name":"revert","nodeType":"Identifier","overloadedDeclarations":[-19,-19],"referencedDeclaration":-19,"src":"52379:6:0","typeDescriptions":{"typeIdentifier":"t_function_revert_pure$_t_string_memory_ptr_$returns$__$","typeString":"function (string memory) pure"}},"id":2229,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"52379:20:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2230,"nodeType":"ExpressionStatement","src":"52379:20:0"}]},"id":2232,"nodeType":"IfStatement","src":"52031:379:0","trueBody":{"id":2226,"nodeType":"Block","src":"52058:301:0","statements":[{"AST":{"nativeSrc":"52216:133:0","nodeType":"YulBlock","src":"52216:133:0","statements":[{"nativeSrc":"52234:40:0","nodeType":"YulVariableDeclaration","src":"52234:40:0","value":{"arguments":[{"name":"returndata","nativeSrc":"52263:10:0","nodeType":"YulIdentifier","src":"52263:10:0"}],"functionName":{"name":"mload","nativeSrc":"52257:5:0","nodeType":"YulIdentifier","src":"52257:5:0"},"nativeSrc":"52257:17:0","nodeType":"YulFunctionCall","src":"52257:17:0"},"variables":[{"name":"returndata_size","nativeSrc":"52238:15:0","nodeType":"YulTypedName","src":"52238:15:0","type":""}]},{"expression":{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"52302:2:0","nodeType":"YulLiteral","src":"52302:2:0","type":"","value":"32"},{"name":"returndata","nativeSrc":"52306:10:0","nodeType":"YulIdentifier","src":"52306:10:0"}],"functionName":{"name":"add","nativeSrc":"52298:3:0","nodeType":"YulIdentifier","src":"52298:3:0"},"nativeSrc":"52298:19:0","nodeType":"YulFunctionCall","src":"52298:19:0"},{"name":"returndata_size","nativeSrc":"52319:15:0","nodeType":"YulIdentifier","src":"52319:15:0"}],"functionName":{"name":"revert","nativeSrc":"52291:6:0","nodeType":"YulIdentifier","src":"52291:6:0"},"nativeSrc":"52291:44:0","nodeType":"YulFunctionCall","src":"52291:44:0"},"nativeSrc":"52291:44:0","nodeType":"YulExpressionStatement","src":"52291:44:0"}]},"documentation":"@solidity memory-safe-assembly","evmVersion":"paris","externalReferences":[{"declaration":2216,"isOffset":false,"isSlot":false,"src":"52263:10:0","valueSize":1},{"declaration":2216,"isOffset":false,"isSlot":false,"src":"52306:10:0","valueSize":1}],"id":2225,"nodeType":"InlineAssembly","src":"52207:142:0"}]}}]},"id":2234,"implemented":true,"kind":"function","modifiers":[],"name":"_revert","nameLocation":"51885:7:0","nodeType":"FunctionDefinition","parameters":{"id":2219,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2216,"mutability":"mutable","name":"returndata","nameLocation":"51906:10:0","nodeType":"VariableDeclaration","scope":2234,"src":"51893:23:0","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":2215,"name":"bytes","nodeType":"ElementaryTypeName","src":"51893:5:0","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"},{"constant":false,"id":2218,"mutability":"mutable","name":"errorMessage","nameLocation":"51932:12:0","nodeType":"VariableDeclaration","scope":2234,"src":"51918:26:0","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_string_memory_ptr","typeString":"string"},"typeName":{"id":2217,"name":"string","nodeType":"ElementaryTypeName","src":"51918:6:0","typeDescriptions":{"typeIdentifier":"t_string_storage_ptr","typeString":"string"}},"visibility":"internal"}],"src":"51892:53:0"},"returnParameters":{"id":2220,"nodeType":"ParameterList","parameters":[],"src":"51959:0:0"},"scope":2235,"src":"51876:540:0","stateMutability":"pure","virtual":false,"visibility":"private"}],"scope":7298,"src":"43455:8963:0","usedErrors":[],"usedEvents":[]},{"id":2236,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"52576:23:0"},{"abstract":false,"baseContracts":[],"canonicalName":"SafeERC20","contractDependencies":[],"contractKind":"library","documentation":{"id":2237,"nodeType":"StructuredDocumentation","src":"52602:457:0","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":2456,"linearizedBaseContracts":[2456],"name":"SafeERC20","nameLocation":"53068:9:0","nodeType":"ContractDefinition","nodes":[{"global":false,"id":2240,"libraryName":{"id":2238,"name":"Address","nameLocations":["53090:7:0"],"nodeType":"IdentifierPath","referencedDeclaration":2235,"src":"53090:7:0"},"nodeType":"UsingForDirective","src":"53084:26:0","typeName":{"id":2239,"name":"address","nodeType":"ElementaryTypeName","src":"53102:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}},{"body":{"id":2262,"nodeType":"Block","src":"53218:137:0","statements":[{"expression":{"arguments":[{"id":2251,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2243,"src":"53261:5:0","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$77","typeString":"contract IERC20"}},{"arguments":[{"expression":{"expression":{"id":2254,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2243,"src":"53303:5:0","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$77","typeString":"contract IERC20"}},"id":2255,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"53309:8:0","memberName":"transfer","nodeType":"MemberAccess","referencedDeclaration":44,"src":"53303:14:0","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_uint256_$returns$_t_bool_$","typeString":"function (address,uint256) external returns (bool)"}},"id":2256,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"53318:8:0","memberName":"selector","nodeType":"MemberAccess","src":"53303:23:0","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},{"id":2257,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2245,"src":"53328:2:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2258,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2247,"src":"53332:5:0","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":2252,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"53280:3:0","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":2253,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"53284:18:0","memberName":"encodeWithSelector","nodeType":"MemberAccess","src":"53280:22:0","typeDescriptions":{"typeIdentifier":"t_function_abiencodewithselector_pure$_t_bytes4_$returns$_t_bytes_memory_ptr_$","typeString":"function (bytes4) pure returns (bytes memory)"}},"id":2259,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"53280:58:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC20_$77","typeString":"contract IERC20"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":2250,"name":"_callOptionalReturn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2455,"src":"53228:19:0","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC20_$77_$_t_bytes_memory_ptr_$returns$__$","typeString":"function (contract IERC20,bytes memory)"}},"id":2260,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"53228:120:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2261,"nodeType":"ExpressionStatement","src":"53228:120:0"}]},"id":2263,"implemented":true,"kind":"function","modifiers":[],"name":"safeTransfer","nameLocation":"53125:12:0","nodeType":"FunctionDefinition","parameters":{"id":2248,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2243,"mutability":"mutable","name":"token","nameLocation":"53154:5:0","nodeType":"VariableDeclaration","scope":2263,"src":"53147:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$77","typeString":"contract IERC20"},"typeName":{"id":2242,"nodeType":"UserDefinedTypeName","pathNode":{"id":2241,"name":"IERC20","nameLocations":["53147:6:0"],"nodeType":"IdentifierPath","referencedDeclaration":77,"src":"53147:6:0"},"referencedDeclaration":77,"src":"53147:6:0","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$77","typeString":"contract IERC20"}},"visibility":"internal"},{"constant":false,"id":2245,"mutability":"mutable","name":"to","nameLocation":"53177:2:0","nodeType":"VariableDeclaration","scope":2263,"src":"53169:10:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2244,"name":"address","nodeType":"ElementaryTypeName","src":"53169:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2247,"mutability":"mutable","name":"value","nameLocation":"53197:5:0","nodeType":"VariableDeclaration","scope":2263,"src":"53189:13:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2246,"name":"uint256","nodeType":"ElementaryTypeName","src":"53189:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"53137:71:0"},"returnParameters":{"id":2249,"nodeType":"ParameterList","parameters":[],"src":"53218:0:0"},"scope":2456,"src":"53116:239:0","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":2288,"nodeType":"Block","src":"53489:147:0","statements":[{"expression":{"arguments":[{"id":2276,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2266,"src":"53532:5:0","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$77","typeString":"contract IERC20"}},{"arguments":[{"expression":{"expression":{"id":2279,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2266,"src":"53574:5:0","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$77","typeString":"contract IERC20"}},"id":2280,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"53580:12:0","memberName":"transferFrom","nodeType":"MemberAccess","referencedDeclaration":76,"src":"53574:18:0","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$_t_bool_$","typeString":"function (address,address,uint256) external returns (bool)"}},"id":2281,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"53593:8:0","memberName":"selector","nodeType":"MemberAccess","src":"53574:27:0","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},{"id":2282,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2268,"src":"53603:4:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2283,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2270,"src":"53609:2:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2284,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2272,"src":"53613:5:0","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":2277,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"53551:3:0","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":2278,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"53555:18:0","memberName":"encodeWithSelector","nodeType":"MemberAccess","src":"53551:22:0","typeDescriptions":{"typeIdentifier":"t_function_abiencodewithselector_pure$_t_bytes4_$returns$_t_bytes_memory_ptr_$","typeString":"function (bytes4) pure returns (bytes memory)"}},"id":2285,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"53551:68:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC20_$77","typeString":"contract IERC20"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":2275,"name":"_callOptionalReturn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2455,"src":"53499:19:0","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC20_$77_$_t_bytes_memory_ptr_$returns$__$","typeString":"function (contract IERC20,bytes memory)"}},"id":2286,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"53499:130:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2287,"nodeType":"ExpressionStatement","src":"53499:130:0"}]},"id":2289,"implemented":true,"kind":"function","modifiers":[],"name":"safeTransferFrom","nameLocation":"53370:16:0","nodeType":"FunctionDefinition","parameters":{"id":2273,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2266,"mutability":"mutable","name":"token","nameLocation":"53403:5:0","nodeType":"VariableDeclaration","scope":2289,"src":"53396:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$77","typeString":"contract IERC20"},"typeName":{"id":2265,"nodeType":"UserDefinedTypeName","pathNode":{"id":2264,"name":"IERC20","nameLocations":["53396:6:0"],"nodeType":"IdentifierPath","referencedDeclaration":77,"src":"53396:6:0"},"referencedDeclaration":77,"src":"53396:6:0","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$77","typeString":"contract IERC20"}},"visibility":"internal"},{"constant":false,"id":2268,"mutability":"mutable","name":"from","nameLocation":"53426:4:0","nodeType":"VariableDeclaration","scope":2289,"src":"53418:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2267,"name":"address","nodeType":"ElementaryTypeName","src":"53418:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2270,"mutability":"mutable","name":"to","nameLocation":"53448:2:0","nodeType":"VariableDeclaration","scope":2289,"src":"53440:10:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2269,"name":"address","nodeType":"ElementaryTypeName","src":"53440:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2272,"mutability":"mutable","name":"value","nameLocation":"53468:5:0","nodeType":"VariableDeclaration","scope":2289,"src":"53460:13:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2271,"name":"uint256","nodeType":"ElementaryTypeName","src":"53460:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"53386:93:0"},"returnParameters":{"id":2274,"nodeType":"ParameterList","parameters":[],"src":"53489:0:0"},"scope":2456,"src":"53361:275:0","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":2332,"nodeType":"Block","src":"54002:531:0","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":2316,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2303,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2301,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2297,"src":"54251:5:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":2302,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"54260:1:0","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"54251:10:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":2304,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"54250:12:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2314,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"arguments":[{"id":2309,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"54291:4:0","typeDescriptions":{"typeIdentifier":"t_contract$_SafeERC20_$2456","typeString":"library SafeERC20"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_SafeERC20_$2456","typeString":"library SafeERC20"}],"id":2308,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"54283:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":2307,"name":"address","nodeType":"ElementaryTypeName","src":"54283:7:0","typeDescriptions":{}}},"id":2310,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"54283:13:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2311,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2295,"src":"54298:7:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":2305,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2293,"src":"54267:5:0","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$77","typeString":"contract IERC20"}},"id":2306,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"54273:9:0","memberName":"allowance","nodeType":"MemberAccess","referencedDeclaration":54,"src":"54267:15:0","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_address_$_t_address_$returns$_t_uint256_$","typeString":"function (address,address) view external returns (uint256)"}},"id":2312,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"54267:39:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":2313,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"54310:1:0","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"54267:44:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":2315,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"54266:46:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"54250:62:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"5361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f20746f206e6f6e2d7a65726f20616c6c6f77616e6365","id":2317,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"54326:56:0","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":2300,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"54229:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2318,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"54229:163:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2319,"nodeType":"ExpressionStatement","src":"54229:163:0"},{"expression":{"arguments":[{"id":2321,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2293,"src":"54435:5:0","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$77","typeString":"contract IERC20"}},{"arguments":[{"expression":{"expression":{"id":2324,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2293,"src":"54477:5:0","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$77","typeString":"contract IERC20"}},"id":2325,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"54483:7:0","memberName":"approve","nodeType":"MemberAccess","referencedDeclaration":64,"src":"54477:13:0","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_uint256_$returns$_t_bool_$","typeString":"function (address,uint256) external returns (bool)"}},"id":2326,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"54491:8:0","memberName":"selector","nodeType":"MemberAccess","src":"54477:22:0","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},{"id":2327,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2295,"src":"54501:7:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2328,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2297,"src":"54510:5:0","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":2322,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"54454:3:0","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":2323,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"54458:18:0","memberName":"encodeWithSelector","nodeType":"MemberAccess","src":"54454:22:0","typeDescriptions":{"typeIdentifier":"t_function_abiencodewithselector_pure$_t_bytes4_$returns$_t_bytes_memory_ptr_$","typeString":"function (bytes4) pure returns (bytes memory)"}},"id":2329,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"54454:62:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC20_$77","typeString":"contract IERC20"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":2320,"name":"_callOptionalReturn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2455,"src":"54402:19:0","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC20_$77_$_t_bytes_memory_ptr_$returns$__$","typeString":"function (contract IERC20,bytes memory)"}},"id":2330,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"54402:124:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2331,"nodeType":"ExpressionStatement","src":"54402:124:0"}]},"documentation":{"id":2290,"nodeType":"StructuredDocumentation","src":"53642:249:0","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":2333,"implemented":true,"kind":"function","modifiers":[],"name":"safeApprove","nameLocation":"53905:11:0","nodeType":"FunctionDefinition","parameters":{"id":2298,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2293,"mutability":"mutable","name":"token","nameLocation":"53933:5:0","nodeType":"VariableDeclaration","scope":2333,"src":"53926:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$77","typeString":"contract IERC20"},"typeName":{"id":2292,"nodeType":"UserDefinedTypeName","pathNode":{"id":2291,"name":"IERC20","nameLocations":["53926:6:0"],"nodeType":"IdentifierPath","referencedDeclaration":77,"src":"53926:6:0"},"referencedDeclaration":77,"src":"53926:6:0","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$77","typeString":"contract IERC20"}},"visibility":"internal"},{"constant":false,"id":2295,"mutability":"mutable","name":"spender","nameLocation":"53956:7:0","nodeType":"VariableDeclaration","scope":2333,"src":"53948:15:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2294,"name":"address","nodeType":"ElementaryTypeName","src":"53948:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2297,"mutability":"mutable","name":"value","nameLocation":"53981:5:0","nodeType":"VariableDeclaration","scope":2333,"src":"53973:13:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2296,"name":"uint256","nodeType":"ElementaryTypeName","src":"53973:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"53916:76:0"},"returnParameters":{"id":2299,"nodeType":"ParameterList","parameters":[],"src":"54002:0:0"},"scope":2456,"src":"53896:637:0","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":2368,"nodeType":"Block","src":"54655:290:0","statements":[{"assignments":[2344],"declarations":[{"constant":false,"id":2344,"mutability":"mutable","name":"newAllowance","nameLocation":"54673:12:0","nodeType":"VariableDeclaration","scope":2368,"src":"54665:20:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2343,"name":"uint256","nodeType":"ElementaryTypeName","src":"54665:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2355,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2354,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"arguments":[{"id":2349,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"54712:4:0","typeDescriptions":{"typeIdentifier":"t_contract$_SafeERC20_$2456","typeString":"library SafeERC20"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_SafeERC20_$2456","typeString":"library SafeERC20"}],"id":2348,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"54704:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":2347,"name":"address","nodeType":"ElementaryTypeName","src":"54704:7:0","typeDescriptions":{}}},"id":2350,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"54704:13:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2351,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2338,"src":"54719:7:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":2345,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2336,"src":"54688:5:0","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$77","typeString":"contract IERC20"}},"id":2346,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"54694:9:0","memberName":"allowance","nodeType":"MemberAccess","referencedDeclaration":54,"src":"54688:15:0","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_address_$_t_address_$returns$_t_uint256_$","typeString":"function (address,address) view external returns (uint256)"}},"id":2352,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"54688:39:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":2353,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2340,"src":"54730:5:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"54688:47:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"54665:70:0"},{"expression":{"arguments":[{"id":2357,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2336,"src":"54778:5:0","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$77","typeString":"contract IERC20"}},{"arguments":[{"expression":{"expression":{"id":2360,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2336,"src":"54837:5:0","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$77","typeString":"contract IERC20"}},"id":2361,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"54843:7:0","memberName":"approve","nodeType":"MemberAccess","referencedDeclaration":64,"src":"54837:13:0","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_uint256_$returns$_t_bool_$","typeString":"function (address,uint256) external returns (bool)"}},"id":2362,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"54851:8:0","memberName":"selector","nodeType":"MemberAccess","src":"54837:22:0","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},{"id":2363,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2338,"src":"54877:7:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2364,"name":"newAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2344,"src":"54902:12:0","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":2358,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"54797:3:0","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":2359,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"54801:18:0","memberName":"encodeWithSelector","nodeType":"MemberAccess","src":"54797:22:0","typeDescriptions":{"typeIdentifier":"t_function_abiencodewithselector_pure$_t_bytes4_$returns$_t_bytes_memory_ptr_$","typeString":"function (bytes4) pure returns (bytes memory)"}},"id":2365,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"54797:131:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC20_$77","typeString":"contract IERC20"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":2356,"name":"_callOptionalReturn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2455,"src":"54745:19:0","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC20_$77_$_t_bytes_memory_ptr_$returns$__$","typeString":"function (contract IERC20,bytes memory)"}},"id":2366,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"54745:193:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2367,"nodeType":"ExpressionStatement","src":"54745:193:0"}]},"id":2369,"implemented":true,"kind":"function","modifiers":[],"name":"safeIncreaseAllowance","nameLocation":"54548:21:0","nodeType":"FunctionDefinition","parameters":{"id":2341,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2336,"mutability":"mutable","name":"token","nameLocation":"54586:5:0","nodeType":"VariableDeclaration","scope":2369,"src":"54579:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$77","typeString":"contract IERC20"},"typeName":{"id":2335,"nodeType":"UserDefinedTypeName","pathNode":{"id":2334,"name":"IERC20","nameLocations":["54579:6:0"],"nodeType":"IdentifierPath","referencedDeclaration":77,"src":"54579:6:0"},"referencedDeclaration":77,"src":"54579:6:0","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$77","typeString":"contract IERC20"}},"visibility":"internal"},{"constant":false,"id":2338,"mutability":"mutable","name":"spender","nameLocation":"54609:7:0","nodeType":"VariableDeclaration","scope":2369,"src":"54601:15:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2337,"name":"address","nodeType":"ElementaryTypeName","src":"54601:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2340,"mutability":"mutable","name":"value","nameLocation":"54634:5:0","nodeType":"VariableDeclaration","scope":2369,"src":"54626:13:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2339,"name":"uint256","nodeType":"ElementaryTypeName","src":"54626:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"54569:76:0"},"returnParameters":{"id":2342,"nodeType":"ParameterList","parameters":[],"src":"54655:0:0"},"scope":2456,"src":"54539:406:0","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":2416,"nodeType":"Block","src":"55067:540:0","statements":[{"id":2415,"nodeType":"UncheckedBlock","src":"55077:524:0","statements":[{"assignments":[2380],"declarations":[{"constant":false,"id":2380,"mutability":"mutable","name":"oldAllowance","nameLocation":"55109:12:0","nodeType":"VariableDeclaration","scope":2415,"src":"55101:20:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2379,"name":"uint256","nodeType":"ElementaryTypeName","src":"55101:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2389,"initialValue":{"arguments":[{"arguments":[{"id":2385,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"55148:4:0","typeDescriptions":{"typeIdentifier":"t_contract$_SafeERC20_$2456","typeString":"library SafeERC20"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_SafeERC20_$2456","typeString":"library SafeERC20"}],"id":2384,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"55140:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":2383,"name":"address","nodeType":"ElementaryTypeName","src":"55140:7:0","typeDescriptions":{}}},"id":2386,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"55140:13:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2387,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2374,"src":"55155:7:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"}],"expression":{"id":2381,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2372,"src":"55124:5:0","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$77","typeString":"contract IERC20"}},"id":2382,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"55130:9:0","memberName":"allowance","nodeType":"MemberAccess","referencedDeclaration":54,"src":"55124:15:0","typeDescriptions":{"typeIdentifier":"t_function_external_view$_t_address_$_t_address_$returns$_t_uint256_$","typeString":"function (address,address) view external returns (uint256)"}},"id":2388,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"55124:39:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"55101:62:0"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2393,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2391,"name":"oldAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2380,"src":"55202:12:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"id":2392,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2376,"src":"55218:5:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"55202:21:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"5361666545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f","id":2394,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"55241:43:0","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":2390,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"55177:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2395,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"55177:121:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2396,"nodeType":"ExpressionStatement","src":"55177:121:0"},{"assignments":[2398],"declarations":[{"constant":false,"id":2398,"mutability":"mutable","name":"newAllowance","nameLocation":"55320:12:0","nodeType":"VariableDeclaration","scope":2415,"src":"55312:20:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2397,"name":"uint256","nodeType":"ElementaryTypeName","src":"55312:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2402,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2401,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2399,"name":"oldAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2380,"src":"55335:12:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":2400,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2376,"src":"55350:5:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"55335:20:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"55312:43:0"},{"expression":{"arguments":[{"id":2404,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2372,"src":"55406:5:0","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$77","typeString":"contract IERC20"}},{"arguments":[{"expression":{"expression":{"id":2407,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2372,"src":"55473:5:0","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$77","typeString":"contract IERC20"}},"id":2408,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"55479:7:0","memberName":"approve","nodeType":"MemberAccess","referencedDeclaration":64,"src":"55473:13:0","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_uint256_$returns$_t_bool_$","typeString":"function (address,uint256) external returns (bool)"}},"id":2409,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"55487:8:0","memberName":"selector","nodeType":"MemberAccess","src":"55473:22:0","typeDescriptions":{"typeIdentifier":"t_bytes4","typeString":"bytes4"}},{"id":2410,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2374,"src":"55517:7:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2411,"name":"newAllowance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2398,"src":"55546:12:0","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":2405,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"55429:3:0","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":2406,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"55433:18:0","memberName":"encodeWithSelector","nodeType":"MemberAccess","src":"55429:22:0","typeDescriptions":{"typeIdentifier":"t_function_abiencodewithselector_pure$_t_bytes4_$returns$_t_bytes_memory_ptr_$","typeString":"function (bytes4) pure returns (bytes memory)"}},"id":2412,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"55429:147:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC20_$77","typeString":"contract IERC20"},{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":2403,"name":"_callOptionalReturn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2455,"src":"55369:19:0","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC20_$77_$_t_bytes_memory_ptr_$returns$__$","typeString":"function (contract IERC20,bytes memory)"}},"id":2413,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"55369:221:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2414,"nodeType":"ExpressionStatement","src":"55369:221:0"}]}]},"id":2417,"implemented":true,"kind":"function","modifiers":[],"name":"safeDecreaseAllowance","nameLocation":"54960:21:0","nodeType":"FunctionDefinition","parameters":{"id":2377,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2372,"mutability":"mutable","name":"token","nameLocation":"54998:5:0","nodeType":"VariableDeclaration","scope":2417,"src":"54991:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$77","typeString":"contract IERC20"},"typeName":{"id":2371,"nodeType":"UserDefinedTypeName","pathNode":{"id":2370,"name":"IERC20","nameLocations":["54991:6:0"],"nodeType":"IdentifierPath","referencedDeclaration":77,"src":"54991:6:0"},"referencedDeclaration":77,"src":"54991:6:0","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$77","typeString":"contract IERC20"}},"visibility":"internal"},{"constant":false,"id":2374,"mutability":"mutable","name":"spender","nameLocation":"55021:7:0","nodeType":"VariableDeclaration","scope":2417,"src":"55013:15:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2373,"name":"address","nodeType":"ElementaryTypeName","src":"55013:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2376,"mutability":"mutable","name":"value","nameLocation":"55046:5:0","nodeType":"VariableDeclaration","scope":2417,"src":"55038:13:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2375,"name":"uint256","nodeType":"ElementaryTypeName","src":"55038:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"54981:76:0"},"returnParameters":{"id":2378,"nodeType":"ParameterList","parameters":[],"src":"55067:0:0"},"scope":2456,"src":"54951:656:0","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":2454,"nodeType":"Block","src":"56060:716:0","statements":[{"assignments":[2427],"declarations":[{"constant":false,"id":2427,"mutability":"mutable","name":"returndata","nameLocation":"56422:10:0","nodeType":"VariableDeclaration","scope":2454,"src":"56409:23:0","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":2426,"name":"bytes","nodeType":"ElementaryTypeName","src":"56409:5:0","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"id":2436,"initialValue":{"arguments":[{"id":2433,"name":"data","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2423,"src":"56476:4:0","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"hexValue":"5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564","id":2434,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"56494:34:0","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":2430,"name":"token","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2421,"src":"56443:5:0","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$77","typeString":"contract IERC20"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC20_$77","typeString":"contract IERC20"}],"id":2429,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"56435:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":2428,"name":"address","nodeType":"ElementaryTypeName","src":"56435:7:0","typeDescriptions":{}}},"id":2431,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"56435:14:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":2432,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"56450:12:0","memberName":"functionCall","nodeType":"MemberAccess","referencedDeclaration":1995,"src":"56435:27:0","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_bytes_memory_ptr_$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$attached_to$_t_address_$","typeString":"function (address,bytes memory,string memory) returns (bytes memory)"}},"id":2435,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"56435:103:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"nodeType":"VariableDeclarationStatement","src":"56409:129:0"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2440,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":2437,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2427,"src":"56552:10:0","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"id":2438,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"56563:6:0","memberName":"length","nodeType":"MemberAccess","src":"56552:17:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":2439,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"56572:1:0","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"56552:21:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2453,"nodeType":"IfStatement","src":"56548:222:0","trueBody":{"id":2452,"nodeType":"Block","src":"56575:195:0","statements":[{"expression":{"arguments":[{"arguments":[{"id":2444,"name":"returndata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2427,"src":"56664:10:0","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},{"components":[{"id":2446,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"56677:4:0","typeDescriptions":{"typeIdentifier":"t_type$_t_bool_$","typeString":"type(bool)"},"typeName":{"id":2445,"name":"bool","nodeType":"ElementaryTypeName","src":"56677:4:0","typeDescriptions":{}}}],"id":2447,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"56676:6:0","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":2442,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"56653:3:0","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":2443,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"56657:6:0","memberName":"decode","nodeType":"MemberAccess","src":"56653:10:0","typeDescriptions":{"typeIdentifier":"t_function_abidecode_pure$__$returns$__$","typeString":"function () pure"}},"id":2448,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"56653:30:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"5361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564","id":2449,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"56701:44:0","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":2441,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"56628:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2450,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"56628:131:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2451,"nodeType":"ExpressionStatement","src":"56628:131:0"}]}}]},"documentation":{"id":2418,"nodeType":"StructuredDocumentation","src":"55613:372:0","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":2455,"implemented":true,"kind":"function","modifiers":[],"name":"_callOptionalReturn","nameLocation":"55999:19:0","nodeType":"FunctionDefinition","parameters":{"id":2424,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2421,"mutability":"mutable","name":"token","nameLocation":"56026:5:0","nodeType":"VariableDeclaration","scope":2455,"src":"56019:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$77","typeString":"contract IERC20"},"typeName":{"id":2420,"nodeType":"UserDefinedTypeName","pathNode":{"id":2419,"name":"IERC20","nameLocations":["56019:6:0"],"nodeType":"IdentifierPath","referencedDeclaration":77,"src":"56019:6:0"},"referencedDeclaration":77,"src":"56019:6:0","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$77","typeString":"contract IERC20"}},"visibility":"internal"},{"constant":false,"id":2423,"mutability":"mutable","name":"data","nameLocation":"56046:4:0","nodeType":"VariableDeclaration","scope":2455,"src":"56033:17:0","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":2422,"name":"bytes","nodeType":"ElementaryTypeName","src":"56033:5:0","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"56018:33:0"},"returnParameters":{"id":2425,"nodeType":"ParameterList","parameters":[],"src":"56060:0:0"},"scope":2456,"src":"55990:786:0","stateMutability":"nonpayable","virtual":false,"visibility":"private"}],"scope":7298,"src":"53060:3718:0","usedErrors":[],"usedEvents":[]},{"id":2457,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"56886:23:0"},{"abstract":false,"baseContracts":[],"canonicalName":"PegasysDistributionManager","contractDependencies":[],"contractKind":"contract","documentation":{"id":2458,"nodeType":"StructuredDocumentation","src":"56911:116:0","text":" @title PegasysDistributionManager\n @notice Accounting contract to manage multiple staking distributions"},"fullyImplemented":true,"id":2972,"linearizedBaseContracts":[2972],"name":"PegasysDistributionManager","nameLocation":"57037:26:0","nodeType":"ContractDefinition","nodes":[{"canonicalName":"PegasysDistributionManager.AssetData","id":2469,"members":[{"constant":false,"id":2460,"mutability":"mutable","name":"emissionPerSecond","nameLocation":"57099:17:0","nodeType":"VariableDeclaration","scope":2469,"src":"57091:25:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"},"typeName":{"id":2459,"name":"uint128","nodeType":"ElementaryTypeName","src":"57091:7:0","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"visibility":"internal"},{"constant":false,"id":2462,"mutability":"mutable","name":"lastUpdateTimestamp","nameLocation":"57130:19:0","nodeType":"VariableDeclaration","scope":2469,"src":"57122:27:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"},"typeName":{"id":2461,"name":"uint128","nodeType":"ElementaryTypeName","src":"57122:7:0","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"visibility":"internal"},{"constant":false,"id":2464,"mutability":"mutable","name":"index","nameLocation":"57163:5:0","nodeType":"VariableDeclaration","scope":2469,"src":"57155:13:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2463,"name":"uint256","nodeType":"ElementaryTypeName","src":"57155:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2468,"mutability":"mutable","name":"users","nameLocation":"57202:5:0","nodeType":"VariableDeclaration","scope":2469,"src":"57174:33:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"typeName":{"id":2467,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":2465,"name":"address","nodeType":"ElementaryTypeName","src":"57182:7:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"57174:27:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":2466,"name":"uint256","nodeType":"ElementaryTypeName","src":"57193:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}},"visibility":"internal"}],"name":"AssetData","nameLocation":"57075:9:0","nodeType":"StructDefinition","scope":2972,"src":"57068:144:0","visibility":"public"},{"constant":false,"functionSelector":"919cd40f","id":2471,"mutability":"immutable","name":"DISTRIBUTION_END","nameLocation":"57241:16:0","nodeType":"VariableDeclaration","scope":2972,"src":"57216:41:0","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2470,"name":"uint256","nodeType":"ElementaryTypeName","src":"57216:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"public"},{"constant":false,"functionSelector":"cbcbb507","id":2473,"mutability":"immutable","name":"EMISSION_MANAGER","nameLocation":"57287:16:0","nodeType":"VariableDeclaration","scope":2972,"src":"57262:41:0","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2472,"name":"address","nodeType":"ElementaryTypeName","src":"57262:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"public"},{"constant":true,"functionSelector":"aaf5eb68","id":2476,"mutability":"constant","name":"PRECISION","nameLocation":"57330:9:0","nodeType":"VariableDeclaration","scope":2972,"src":"57308:36:0","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":2474,"name":"uint8","nodeType":"ElementaryTypeName","src":"57308:5:0","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"value":{"hexValue":"3138","id":2475,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"57342:2:0","typeDescriptions":{"typeIdentifier":"t_rational_18_by_1","typeString":"int_const 18"},"value":"18"},"visibility":"public"},{"constant":false,"functionSelector":"f11b8188","id":2481,"mutability":"mutable","name":"assets","nameLocation":"57386:6:0","nodeType":"VariableDeclaration","scope":2972,"src":"57349:43:0","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_AssetData_$2469_storage_$","typeString":"mapping(address => struct PegasysDistributionManager.AssetData)"},"typeName":{"id":2480,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":2477,"name":"address","nodeType":"ElementaryTypeName","src":"57357:7:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"57349:29:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_AssetData_$2469_storage_$","typeString":"mapping(address => struct PegasysDistributionManager.AssetData)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":2479,"nodeType":"UserDefinedTypeName","pathNode":{"id":2478,"name":"AssetData","nameLocations":["57368:9:0"],"nodeType":"IdentifierPath","referencedDeclaration":2469,"src":"57368:9:0"},"referencedDeclaration":2469,"src":"57368:9:0","typeDescriptions":{"typeIdentifier":"t_struct$_AssetData_$2469_storage_ptr","typeString":"struct PegasysDistributionManager.AssetData"}}},"visibility":"public"},{"anonymous":false,"eventSelector":"87fa03892a0556cb6b8f97e6d533a150d4d55fcbf275fff5fa003fa636bcc7fa","id":2487,"name":"AssetConfigUpdated","nameLocation":"57403:18:0","nodeType":"EventDefinition","parameters":{"id":2486,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2483,"indexed":true,"mutability":"mutable","name":"asset","nameLocation":"57438:5:0","nodeType":"VariableDeclaration","scope":2487,"src":"57422:21:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2482,"name":"address","nodeType":"ElementaryTypeName","src":"57422:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2485,"indexed":false,"mutability":"mutable","name":"emission","nameLocation":"57453:8:0","nodeType":"VariableDeclaration","scope":2487,"src":"57445:16:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2484,"name":"uint256","nodeType":"ElementaryTypeName","src":"57445:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"57421:41:0"},"src":"57397:66:0"},{"anonymous":false,"eventSelector":"5777ca300dfe5bead41006fbce4389794dbc0ed8d6cccebfaf94630aa04184bc","id":2493,"name":"AssetIndexUpdated","nameLocation":"57472:17:0","nodeType":"EventDefinition","parameters":{"id":2492,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2489,"indexed":true,"mutability":"mutable","name":"asset","nameLocation":"57506:5:0","nodeType":"VariableDeclaration","scope":2493,"src":"57490:21:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2488,"name":"address","nodeType":"ElementaryTypeName","src":"57490:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2491,"indexed":false,"mutability":"mutable","name":"index","nameLocation":"57521:5:0","nodeType":"VariableDeclaration","scope":2493,"src":"57513:13:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2490,"name":"uint256","nodeType":"ElementaryTypeName","src":"57513:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"57489:38:0"},"src":"57466:62:0"},{"anonymous":false,"eventSelector":"bb123b5c06d5408bbea3c4fef481578175cfb432e3b482c6186f02ed9086585b","id":2501,"name":"UserIndexUpdated","nameLocation":"57537:16:0","nodeType":"EventDefinition","parameters":{"id":2500,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2495,"indexed":true,"mutability":"mutable","name":"user","nameLocation":"57575:4:0","nodeType":"VariableDeclaration","scope":2501,"src":"57559:20:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2494,"name":"address","nodeType":"ElementaryTypeName","src":"57559:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2497,"indexed":true,"mutability":"mutable","name":"asset","nameLocation":"57601:5:0","nodeType":"VariableDeclaration","scope":2501,"src":"57585:21:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2496,"name":"address","nodeType":"ElementaryTypeName","src":"57585:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2499,"indexed":false,"mutability":"mutable","name":"index","nameLocation":"57620:5:0","nodeType":"VariableDeclaration","scope":2501,"src":"57612:13:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2498,"name":"uint256","nodeType":"ElementaryTypeName","src":"57612:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"57553:76:0"},"src":"57531:99:0"},{"body":{"id":2519,"nodeType":"Block","src":"57701:108:0","statements":[{"expression":{"id":2513,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":2508,"name":"DISTRIBUTION_END","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2471,"src":"57707:16:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2512,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":2509,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"57726:5:0","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":2510,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"57732:9:0","memberName":"timestamp","nodeType":"MemberAccess","src":"57726:15:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":2511,"name":"distributionDuration","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2505,"src":"57744:20:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"57726:38:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"57707:57:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2514,"nodeType":"ExpressionStatement","src":"57707:57:0"},{"expression":{"id":2517,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":2515,"name":"EMISSION_MANAGER","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2473,"src":"57770:16:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":2516,"name":"emissionManager","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2503,"src":"57789:15:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"57770:34:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":2518,"nodeType":"ExpressionStatement","src":"57770:34:0"}]},"id":2520,"implemented":true,"kind":"constructor","modifiers":[],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":2506,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2503,"mutability":"mutable","name":"emissionManager","nameLocation":"57654:15:0","nodeType":"VariableDeclaration","scope":2520,"src":"57646:23:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2502,"name":"address","nodeType":"ElementaryTypeName","src":"57646:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2505,"mutability":"mutable","name":"distributionDuration","nameLocation":"57679:20:0","nodeType":"VariableDeclaration","scope":2520,"src":"57671:28:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2504,"name":"uint256","nodeType":"ElementaryTypeName","src":"57671:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"57645:55:0"},"returnParameters":{"id":2507,"nodeType":"ParameterList","parameters":[],"src":"57701:0:0"},"scope":2972,"src":"57634:175:0","stateMutability":"nonpayable","virtual":false,"visibility":"public"},{"body":{"id":2583,"nodeType":"Block","src":"58067:536:0","statements":[{"body":{"id":2581,"nodeType":"Block","src":"58128:471:0","statements":[{"assignments":[2541],"declarations":[{"constant":false,"id":2541,"mutability":"mutable","name":"assetConfig","nameLocation":"58154:11:0","nodeType":"VariableDeclaration","scope":2581,"src":"58136:29:0","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_AssetData_$2469_storage_ptr","typeString":"struct PegasysDistributionManager.AssetData"},"typeName":{"id":2540,"nodeType":"UserDefinedTypeName","pathNode":{"id":2539,"name":"AssetData","nameLocations":["58136:9:0"],"nodeType":"IdentifierPath","referencedDeclaration":2469,"src":"58136:9:0"},"referencedDeclaration":2469,"src":"58136:9:0","typeDescriptions":{"typeIdentifier":"t_struct$_AssetData_$2469_storage_ptr","typeString":"struct PegasysDistributionManager.AssetData"}},"visibility":"internal"}],"id":2548,"initialValue":{"baseExpression":{"id":2542,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2481,"src":"58168:6:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_AssetData_$2469_storage_$","typeString":"mapping(address => struct PegasysDistributionManager.AssetData storage ref)"}},"id":2547,"indexExpression":{"expression":{"baseExpression":{"id":2543,"name":"assetsConfigInput","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2525,"src":"58184:17:0","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_AssetConfigInput_$129_memory_ptr_$dyn_memory_ptr","typeString":"struct DistributionTypes.AssetConfigInput memory[] memory"}},"id":2545,"indexExpression":{"id":2544,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2529,"src":"58202:1:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"58184:20:0","typeDescriptions":{"typeIdentifier":"t_struct$_AssetConfigInput_$129_memory_ptr","typeString":"struct DistributionTypes.AssetConfigInput memory"}},"id":2546,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"58205:15:0","memberName":"underlyingAsset","nodeType":"MemberAccess","referencedDeclaration":128,"src":"58184:36:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"58168:60:0","typeDescriptions":{"typeIdentifier":"t_struct$_AssetData_$2469_storage","typeString":"struct PegasysDistributionManager.AssetData storage ref"}},"nodeType":"VariableDeclarationStatement","src":"58136:92:0"},{"expression":{"arguments":[{"expression":{"baseExpression":{"id":2550,"name":"assetsConfigInput","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2525,"src":"58272:17:0","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_AssetConfigInput_$129_memory_ptr_$dyn_memory_ptr","typeString":"struct DistributionTypes.AssetConfigInput memory[] memory"}},"id":2552,"indexExpression":{"id":2551,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2529,"src":"58290:1:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"58272:20:0","typeDescriptions":{"typeIdentifier":"t_struct$_AssetConfigInput_$129_memory_ptr","typeString":"struct DistributionTypes.AssetConfigInput memory"}},"id":2553,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"58293:15:0","memberName":"underlyingAsset","nodeType":"MemberAccess","referencedDeclaration":128,"src":"58272:36:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2554,"name":"assetConfig","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2541,"src":"58318:11:0","typeDescriptions":{"typeIdentifier":"t_struct$_AssetData_$2469_storage_ptr","typeString":"struct PegasysDistributionManager.AssetData storage pointer"}},{"expression":{"baseExpression":{"id":2555,"name":"assetsConfigInput","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2525,"src":"58339:17:0","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_AssetConfigInput_$129_memory_ptr_$dyn_memory_ptr","typeString":"struct DistributionTypes.AssetConfigInput memory[] memory"}},"id":2557,"indexExpression":{"id":2556,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2529,"src":"58357:1:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"58339:20:0","typeDescriptions":{"typeIdentifier":"t_struct$_AssetConfigInput_$129_memory_ptr","typeString":"struct DistributionTypes.AssetConfigInput memory"}},"id":2558,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"58360:11:0","memberName":"totalStaked","nodeType":"MemberAccess","referencedDeclaration":126,"src":"58339:32:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_struct$_AssetData_$2469_storage_ptr","typeString":"struct PegasysDistributionManager.AssetData storage pointer"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2549,"name":"_updateAssetStateInternal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2654,"src":"58237:25:0","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_struct$_AssetData_$2469_storage_ptr_$_t_uint256_$returns$_t_uint256_$","typeString":"function (address,struct PegasysDistributionManager.AssetData storage pointer,uint256) returns (uint256)"}},"id":2559,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"58237:142:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2560,"nodeType":"ExpressionStatement","src":"58237:142:0"},{"expression":{"id":2568,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":2561,"name":"assetConfig","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2541,"src":"58388:11:0","typeDescriptions":{"typeIdentifier":"t_struct$_AssetData_$2469_storage_ptr","typeString":"struct PegasysDistributionManager.AssetData storage pointer"}},"id":2563,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"58400:17:0","memberName":"emissionPerSecond","nodeType":"MemberAccess","referencedDeclaration":2460,"src":"58388:29:0","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"expression":{"baseExpression":{"id":2564,"name":"assetsConfigInput","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2525,"src":"58420:17:0","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_AssetConfigInput_$129_memory_ptr_$dyn_memory_ptr","typeString":"struct DistributionTypes.AssetConfigInput memory[] memory"}},"id":2566,"indexExpression":{"id":2565,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2529,"src":"58438:1:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"58420:20:0","typeDescriptions":{"typeIdentifier":"t_struct$_AssetConfigInput_$129_memory_ptr","typeString":"struct DistributionTypes.AssetConfigInput memory"}},"id":2567,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"58441:17:0","memberName":"emissionPerSecond","nodeType":"MemberAccess","referencedDeclaration":124,"src":"58420:38:0","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"src":"58388:70:0","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"id":2569,"nodeType":"ExpressionStatement","src":"58388:70:0"},{"eventCall":{"arguments":[{"expression":{"baseExpression":{"id":2571,"name":"assetsConfigInput","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2525,"src":"58500:17:0","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_AssetConfigInput_$129_memory_ptr_$dyn_memory_ptr","typeString":"struct DistributionTypes.AssetConfigInput memory[] memory"}},"id":2573,"indexExpression":{"id":2572,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2529,"src":"58518:1:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"58500:20:0","typeDescriptions":{"typeIdentifier":"t_struct$_AssetConfigInput_$129_memory_ptr","typeString":"struct DistributionTypes.AssetConfigInput memory"}},"id":2574,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"58521:15:0","memberName":"underlyingAsset","nodeType":"MemberAccess","referencedDeclaration":128,"src":"58500:36:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"baseExpression":{"id":2575,"name":"assetsConfigInput","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2525,"src":"58546:17:0","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_AssetConfigInput_$129_memory_ptr_$dyn_memory_ptr","typeString":"struct DistributionTypes.AssetConfigInput memory[] memory"}},"id":2577,"indexExpression":{"id":2576,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2529,"src":"58564:1:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"58546:20:0","typeDescriptions":{"typeIdentifier":"t_struct$_AssetConfigInput_$129_memory_ptr","typeString":"struct DistributionTypes.AssetConfigInput memory"}},"id":2578,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"58567:17:0","memberName":"emissionPerSecond","nodeType":"MemberAccess","referencedDeclaration":124,"src":"58546:38:0","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint128","typeString":"uint128"}],"id":2570,"name":"AssetConfigUpdated","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2487,"src":"58472:18:0","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":2579,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"58472:120:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2580,"nodeType":"EmitStatement","src":"58467:125:0"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2535,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2532,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2529,"src":"58093:1:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":2533,"name":"assetsConfigInput","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2525,"src":"58097:17:0","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_AssetConfigInput_$129_memory_ptr_$dyn_memory_ptr","typeString":"struct DistributionTypes.AssetConfigInput memory[] memory"}},"id":2534,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"58115:6:0","memberName":"length","nodeType":"MemberAccess","src":"58097:24:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"58093:28:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2582,"initializationExpression":{"assignments":[2529],"declarations":[{"constant":false,"id":2529,"mutability":"mutable","name":"i","nameLocation":"58086:1:0","nodeType":"VariableDeclaration","scope":2582,"src":"58078:9:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2528,"name":"uint256","nodeType":"ElementaryTypeName","src":"58078:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2531,"initialValue":{"hexValue":"30","id":2530,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"58090:1:0","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"58078:13:0"},"isSimpleCounterLoop":true,"loopExpression":{"expression":{"id":2537,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"58123:3:0","subExpression":{"id":2536,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2529,"src":"58123:1:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2538,"nodeType":"ExpressionStatement","src":"58123:3:0"},"nodeType":"ForStatement","src":"58073:526:0"}]},"documentation":{"id":2521,"nodeType":"StructuredDocumentation","src":"57813:145:0","text":" @dev Configures the distribution of rewards for a list of assets\n @param assetsConfigInput The list of configurations to apply"},"id":2584,"implemented":true,"kind":"function","modifiers":[],"name":"_configureAssets","nameLocation":"57970:16:0","nodeType":"FunctionDefinition","parameters":{"id":2526,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2525,"mutability":"mutable","name":"assetsConfigInput","nameLocation":"58036:17:0","nodeType":"VariableDeclaration","scope":2584,"src":"57992:61:0","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_AssetConfigInput_$129_memory_ptr_$dyn_memory_ptr","typeString":"struct DistributionTypes.AssetConfigInput[]"},"typeName":{"baseType":{"id":2523,"nodeType":"UserDefinedTypeName","pathNode":{"id":2522,"name":"DistributionTypes.AssetConfigInput","nameLocations":["57992:17:0","58010:16:0"],"nodeType":"IdentifierPath","referencedDeclaration":129,"src":"57992:34:0"},"referencedDeclaration":129,"src":"57992:34:0","typeDescriptions":{"typeIdentifier":"t_struct$_AssetConfigInput_$129_storage_ptr","typeString":"struct DistributionTypes.AssetConfigInput"}},"id":2524,"nodeType":"ArrayTypeName","src":"57992:36:0","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_AssetConfigInput_$129_storage_$dyn_storage_ptr","typeString":"struct DistributionTypes.AssetConfigInput[]"}},"visibility":"internal"}],"src":"57986:71:0"},"returnParameters":{"id":2527,"nodeType":"ParameterList","parameters":[],"src":"58067:0:0"},"scope":2972,"src":"57961:642:0","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":2653,"nodeType":"Block","src":"59171:558:0","statements":[{"assignments":[2598],"declarations":[{"constant":false,"id":2598,"mutability":"mutable","name":"oldIndex","nameLocation":"59185:8:0","nodeType":"VariableDeclaration","scope":2653,"src":"59177:16:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2597,"name":"uint256","nodeType":"ElementaryTypeName","src":"59177:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2601,"initialValue":{"expression":{"id":2599,"name":"assetConfig","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2590,"src":"59196:11:0","typeDescriptions":{"typeIdentifier":"t_struct$_AssetData_$2469_storage_ptr","typeString":"struct PegasysDistributionManager.AssetData storage pointer"}},"id":2600,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"59208:5:0","memberName":"index","nodeType":"MemberAccess","referencedDeclaration":2464,"src":"59196:17:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"59177:36:0"},{"assignments":[2603],"declarations":[{"constant":false,"id":2603,"mutability":"mutable","name":"lastUpdateTimestamp","nameLocation":"59227:19:0","nodeType":"VariableDeclaration","scope":2653,"src":"59219:27:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"},"typeName":{"id":2602,"name":"uint128","nodeType":"ElementaryTypeName","src":"59219:7:0","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"visibility":"internal"}],"id":2606,"initialValue":{"expression":{"id":2604,"name":"assetConfig","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2590,"src":"59249:11:0","typeDescriptions":{"typeIdentifier":"t_struct$_AssetData_$2469_storage_ptr","typeString":"struct PegasysDistributionManager.AssetData storage pointer"}},"id":2605,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"59261:19:0","memberName":"lastUpdateTimestamp","nodeType":"MemberAccess","referencedDeclaration":2462,"src":"59249:31:0","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"nodeType":"VariableDeclarationStatement","src":"59219:61:0"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2610,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":2607,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"59291:5:0","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":2608,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"59297:9:0","memberName":"timestamp","nodeType":"MemberAccess","src":"59291:15:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":2609,"name":"lastUpdateTimestamp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2603,"src":"59310:19:0","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"src":"59291:38:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2614,"nodeType":"IfStatement","src":"59287:74:0","trueBody":{"id":2613,"nodeType":"Block","src":"59331:30:0","statements":[{"expression":{"id":2611,"name":"oldIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2598,"src":"59346:8:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":2596,"id":2612,"nodeType":"Return","src":"59339:15:0"}]}},{"assignments":[2616],"declarations":[{"constant":false,"id":2616,"mutability":"mutable","name":"newIndex","nameLocation":"59375:8:0","nodeType":"VariableDeclaration","scope":2653,"src":"59367:16:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2615,"name":"uint256","nodeType":"ElementaryTypeName","src":"59367:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2624,"initialValue":{"arguments":[{"id":2618,"name":"oldIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2598,"src":"59408:8:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":2619,"name":"assetConfig","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2590,"src":"59424:11:0","typeDescriptions":{"typeIdentifier":"t_struct$_AssetData_$2469_storage_ptr","typeString":"struct PegasysDistributionManager.AssetData storage pointer"}},"id":2620,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"59436:17:0","memberName":"emissionPerSecond","nodeType":"MemberAccess","referencedDeclaration":2460,"src":"59424:29:0","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},{"id":2621,"name":"lastUpdateTimestamp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2603,"src":"59461:19:0","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},{"id":2622,"name":"totalStaked","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2592,"src":"59488:11:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint128","typeString":"uint128"},{"typeIdentifier":"t_uint128","typeString":"uint128"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2617,"name":"_getAssetIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2953,"src":"59386:14:0","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$_t_uint256_$_t_uint128_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint128,uint256) view returns (uint256)"}},"id":2623,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"59386:119:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"59367:138:0"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2627,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2625,"name":"newIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2616,"src":"59516:8:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":2626,"name":"oldIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2598,"src":"59528:8:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"59516:20:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2640,"nodeType":"IfStatement","src":"59512:126:0","trueBody":{"id":2639,"nodeType":"Block","src":"59538:100:0","statements":[{"expression":{"id":2632,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":2628,"name":"assetConfig","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2590,"src":"59546:11:0","typeDescriptions":{"typeIdentifier":"t_struct$_AssetData_$2469_storage_ptr","typeString":"struct PegasysDistributionManager.AssetData storage pointer"}},"id":2630,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"59558:5:0","memberName":"index","nodeType":"MemberAccess","referencedDeclaration":2464,"src":"59546:17:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":2631,"name":"newIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2616,"src":"59566:8:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"59546:28:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2633,"nodeType":"ExpressionStatement","src":"59546:28:0"},{"eventCall":{"arguments":[{"id":2635,"name":"underlyingAsset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2587,"src":"59605:15:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2636,"name":"newIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2616,"src":"59622:8:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2634,"name":"AssetIndexUpdated","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2493,"src":"59587:17:0","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":2637,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"59587:44:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2638,"nodeType":"EmitStatement","src":"59582:49:0"}]}},{"expression":{"id":2649,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"id":2641,"name":"assetConfig","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2590,"src":"59644:11:0","typeDescriptions":{"typeIdentifier":"t_struct$_AssetData_$2469_storage_ptr","typeString":"struct PegasysDistributionManager.AssetData storage pointer"}},"id":2643,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"59656:19:0","memberName":"lastUpdateTimestamp","nodeType":"MemberAccess","referencedDeclaration":2462,"src":"59644:31:0","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"expression":{"id":2646,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"59686:5:0","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":2647,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"59692:9:0","memberName":"timestamp","nodeType":"MemberAccess","src":"59686:15:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2645,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"59678:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_uint128_$","typeString":"type(uint128)"},"typeName":{"id":2644,"name":"uint128","nodeType":"ElementaryTypeName","src":"59678:7:0","typeDescriptions":{}}},"id":2648,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"59678:24:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"src":"59644:58:0","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"id":2650,"nodeType":"ExpressionStatement","src":"59644:58:0"},{"expression":{"id":2651,"name":"newIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2616,"src":"59716:8:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":2596,"id":2652,"nodeType":"Return","src":"59709:15:0"}]},"documentation":{"id":2585,"nodeType":"StructuredDocumentation","src":"58607:406:0","text":" @dev Updates the state of one distribution, mainly rewards index and timestamp\n @param underlyingAsset The address used as key in the distribution, for example sPSYS or the aTokens addresses on Pegasys\n @param assetConfig Storage pointer to the distribution's config\n @param totalStaked Current total of staked assets for this distribution\n @return The new distribution index"},"id":2654,"implemented":true,"kind":"function","modifiers":[],"name":"_updateAssetStateInternal","nameLocation":"59025:25:0","nodeType":"FunctionDefinition","parameters":{"id":2593,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2587,"mutability":"mutable","name":"underlyingAsset","nameLocation":"59064:15:0","nodeType":"VariableDeclaration","scope":2654,"src":"59056:23:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2586,"name":"address","nodeType":"ElementaryTypeName","src":"59056:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2590,"mutability":"mutable","name":"assetConfig","nameLocation":"59103:11:0","nodeType":"VariableDeclaration","scope":2654,"src":"59085:29:0","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_AssetData_$2469_storage_ptr","typeString":"struct PegasysDistributionManager.AssetData"},"typeName":{"id":2589,"nodeType":"UserDefinedTypeName","pathNode":{"id":2588,"name":"AssetData","nameLocations":["59085:9:0"],"nodeType":"IdentifierPath","referencedDeclaration":2469,"src":"59085:9:0"},"referencedDeclaration":2469,"src":"59085:9:0","typeDescriptions":{"typeIdentifier":"t_struct$_AssetData_$2469_storage_ptr","typeString":"struct PegasysDistributionManager.AssetData"}},"visibility":"internal"},{"constant":false,"id":2592,"mutability":"mutable","name":"totalStaked","nameLocation":"59128:11:0","nodeType":"VariableDeclaration","scope":2654,"src":"59120:19:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2591,"name":"uint256","nodeType":"ElementaryTypeName","src":"59120:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"59050:93:0"},"returnParameters":{"id":2596,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2595,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2654,"src":"59162:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2594,"name":"uint256","nodeType":"ElementaryTypeName","src":"59162:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"59161:9:0"},"scope":2972,"src":"59016:713:0","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":2728,"nodeType":"Block","src":"60286:488:0","statements":[{"assignments":[2670],"declarations":[{"constant":false,"id":2670,"mutability":"mutable","name":"assetData","nameLocation":"60310:9:0","nodeType":"VariableDeclaration","scope":2728,"src":"60292:27:0","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_AssetData_$2469_storage_ptr","typeString":"struct PegasysDistributionManager.AssetData"},"typeName":{"id":2669,"nodeType":"UserDefinedTypeName","pathNode":{"id":2668,"name":"AssetData","nameLocations":["60292:9:0"],"nodeType":"IdentifierPath","referencedDeclaration":2469,"src":"60292:9:0"},"referencedDeclaration":2469,"src":"60292:9:0","typeDescriptions":{"typeIdentifier":"t_struct$_AssetData_$2469_storage_ptr","typeString":"struct PegasysDistributionManager.AssetData"}},"visibility":"internal"}],"id":2674,"initialValue":{"baseExpression":{"id":2671,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2481,"src":"60322:6:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_AssetData_$2469_storage_$","typeString":"mapping(address => struct PegasysDistributionManager.AssetData storage ref)"}},"id":2673,"indexExpression":{"id":2672,"name":"asset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2659,"src":"60329:5:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"60322:13:0","typeDescriptions":{"typeIdentifier":"t_struct$_AssetData_$2469_storage","typeString":"struct PegasysDistributionManager.AssetData storage ref"}},"nodeType":"VariableDeclarationStatement","src":"60292:43:0"},{"assignments":[2676],"declarations":[{"constant":false,"id":2676,"mutability":"mutable","name":"userIndex","nameLocation":"60349:9:0","nodeType":"VariableDeclaration","scope":2728,"src":"60341:17:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2675,"name":"uint256","nodeType":"ElementaryTypeName","src":"60341:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2681,"initialValue":{"baseExpression":{"expression":{"id":2677,"name":"assetData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2670,"src":"60361:9:0","typeDescriptions":{"typeIdentifier":"t_struct$_AssetData_$2469_storage_ptr","typeString":"struct PegasysDistributionManager.AssetData storage pointer"}},"id":2678,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"60371:5:0","memberName":"users","nodeType":"MemberAccess","referencedDeclaration":2468,"src":"60361:15:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":2680,"indexExpression":{"id":2679,"name":"user","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2657,"src":"60377:4:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"60361:21:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"60341:41:0"},{"assignments":[2683],"declarations":[{"constant":false,"id":2683,"mutability":"mutable","name":"accruedRewards","nameLocation":"60396:14:0","nodeType":"VariableDeclaration","scope":2728,"src":"60388:22:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2682,"name":"uint256","nodeType":"ElementaryTypeName","src":"60388:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2685,"initialValue":{"hexValue":"30","id":2684,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"60413:1:0","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"60388:26:0"},{"assignments":[2687],"declarations":[{"constant":false,"id":2687,"mutability":"mutable","name":"newIndex","nameLocation":"60429:8:0","nodeType":"VariableDeclaration","scope":2728,"src":"60421:16:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2686,"name":"uint256","nodeType":"ElementaryTypeName","src":"60421:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2693,"initialValue":{"arguments":[{"id":2689,"name":"asset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2659,"src":"60466:5:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2690,"name":"assetData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2670,"src":"60473:9:0","typeDescriptions":{"typeIdentifier":"t_struct$_AssetData_$2469_storage_ptr","typeString":"struct PegasysDistributionManager.AssetData storage pointer"}},{"id":2691,"name":"totalStaked","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2663,"src":"60484:11:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_struct$_AssetData_$2469_storage_ptr","typeString":"struct PegasysDistributionManager.AssetData storage pointer"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2688,"name":"_updateAssetStateInternal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2654,"src":"60440:25:0","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_struct$_AssetData_$2469_storage_ptr_$_t_uint256_$returns$_t_uint256_$","typeString":"function (address,struct PegasysDistributionManager.AssetData storage pointer,uint256) returns (uint256)"}},"id":2692,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"60440:56:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"60421:75:0"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2696,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2694,"name":"userIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2676,"src":"60507:9:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":2695,"name":"newIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2687,"src":"60520:8:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"60507:21:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2725,"nodeType":"IfStatement","src":"60503:239:0","trueBody":{"id":2724,"nodeType":"Block","src":"60530:212:0","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2699,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2697,"name":"stakedByUser","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2661,"src":"60542:12:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":2698,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"60558:1:0","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"60542:17:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2709,"nodeType":"IfStatement","src":"60538:105:0","trueBody":{"id":2708,"nodeType":"Block","src":"60561:82:0","statements":[{"expression":{"id":2706,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":2700,"name":"accruedRewards","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2683,"src":"60571:14:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":2702,"name":"stakedByUser","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2661,"src":"60600:12:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":2703,"name":"newIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2687,"src":"60614:8:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":2704,"name":"userIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2676,"src":"60624:9:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2701,"name":"_getRewards","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2883,"src":"60588:11:0","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":2705,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"60588:46:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"60571:63:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2707,"nodeType":"ExpressionStatement","src":"60571:63:0"}]}},{"expression":{"id":2716,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"expression":{"id":2710,"name":"assetData","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2670,"src":"60651:9:0","typeDescriptions":{"typeIdentifier":"t_struct$_AssetData_$2469_storage_ptr","typeString":"struct PegasysDistributionManager.AssetData storage pointer"}},"id":2713,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"60661:5:0","memberName":"users","nodeType":"MemberAccess","referencedDeclaration":2468,"src":"60651:15:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":2714,"indexExpression":{"id":2712,"name":"user","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2657,"src":"60667:4:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"60651:21:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":2715,"name":"newIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2687,"src":"60675:8:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"60651:32:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2717,"nodeType":"ExpressionStatement","src":"60651:32:0"},{"eventCall":{"arguments":[{"id":2719,"name":"user","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2657,"src":"60713:4:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2720,"name":"asset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2659,"src":"60719:5:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":2721,"name":"newIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2687,"src":"60726:8:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2718,"name":"UserIndexUpdated","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2501,"src":"60696:16:0","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":2722,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"60696:39:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2723,"nodeType":"EmitStatement","src":"60691:44:0"}]}},{"expression":{"id":2726,"name":"accruedRewards","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2683,"src":"60755:14:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":2667,"id":2727,"nodeType":"Return","src":"60748:21:0"}]},"documentation":{"id":2655,"nodeType":"StructuredDocumentation","src":"59733:397:0","text":" @dev Updates the state of an user in a distribution\n @param user The user's address\n @param asset The address of the reference asset of the distribution\n @param stakedByUser Amount of tokens staked by the user in the distribution at the moment\n @param totalStaked Total tokens staked in the distribution\n @return The accrued rewards for the user until the moment"},"id":2729,"implemented":true,"kind":"function","modifiers":[],"name":"_updateUserAssetInternal","nameLocation":"60142:24:0","nodeType":"FunctionDefinition","parameters":{"id":2664,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2657,"mutability":"mutable","name":"user","nameLocation":"60180:4:0","nodeType":"VariableDeclaration","scope":2729,"src":"60172:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2656,"name":"address","nodeType":"ElementaryTypeName","src":"60172:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2659,"mutability":"mutable","name":"asset","nameLocation":"60198:5:0","nodeType":"VariableDeclaration","scope":2729,"src":"60190:13:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2658,"name":"address","nodeType":"ElementaryTypeName","src":"60190:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2661,"mutability":"mutable","name":"stakedByUser","nameLocation":"60217:12:0","nodeType":"VariableDeclaration","scope":2729,"src":"60209:20:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2660,"name":"uint256","nodeType":"ElementaryTypeName","src":"60209:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2663,"mutability":"mutable","name":"totalStaked","nameLocation":"60243:11:0","nodeType":"VariableDeclaration","scope":2729,"src":"60235:19:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2662,"name":"uint256","nodeType":"ElementaryTypeName","src":"60235:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"60166:92:0"},"returnParameters":{"id":2667,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2666,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2729,"src":"60277:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2665,"name":"uint256","nodeType":"ElementaryTypeName","src":"60277:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"60276:9:0"},"scope":2972,"src":"60133:641:0","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":2780,"nodeType":"Block","src":"61203:334:0","statements":[{"assignments":[2742],"declarations":[{"constant":false,"id":2742,"mutability":"mutable","name":"accruedRewards","nameLocation":"61217:14:0","nodeType":"VariableDeclaration","scope":2780,"src":"61209:22:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2741,"name":"uint256","nodeType":"ElementaryTypeName","src":"61209:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2744,"initialValue":{"hexValue":"30","id":2743,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"61234:1:0","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"61209:26:0"},{"body":{"id":2776,"nodeType":"Block","src":"61286:219:0","statements":[{"expression":{"id":2774,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":2756,"name":"accruedRewards","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2742,"src":"61294:14:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2773,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2757,"name":"accruedRewards","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2742,"src":"61319:14:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"arguments":[{"id":2759,"name":"user","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2732,"src":"61380:4:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"baseExpression":{"id":2760,"name":"stakes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2736,"src":"61396:6:0","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_UserStakeInput_$136_memory_ptr_$dyn_memory_ptr","typeString":"struct DistributionTypes.UserStakeInput memory[] memory"}},"id":2762,"indexExpression":{"id":2761,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2746,"src":"61403:1:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"61396:9:0","typeDescriptions":{"typeIdentifier":"t_struct$_UserStakeInput_$136_memory_ptr","typeString":"struct DistributionTypes.UserStakeInput memory"}},"id":2763,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"61406:15:0","memberName":"underlyingAsset","nodeType":"MemberAccess","referencedDeclaration":131,"src":"61396:25:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"baseExpression":{"id":2764,"name":"stakes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2736,"src":"61433:6:0","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_UserStakeInput_$136_memory_ptr_$dyn_memory_ptr","typeString":"struct DistributionTypes.UserStakeInput memory[] memory"}},"id":2766,"indexExpression":{"id":2765,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2746,"src":"61440:1:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"61433:9:0","typeDescriptions":{"typeIdentifier":"t_struct$_UserStakeInput_$136_memory_ptr","typeString":"struct DistributionTypes.UserStakeInput memory"}},"id":2767,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"61443:12:0","memberName":"stakedByUser","nodeType":"MemberAccess","referencedDeclaration":133,"src":"61433:22:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"baseExpression":{"id":2768,"name":"stakes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2736,"src":"61467:6:0","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_UserStakeInput_$136_memory_ptr_$dyn_memory_ptr","typeString":"struct DistributionTypes.UserStakeInput memory[] memory"}},"id":2770,"indexExpression":{"id":2769,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2746,"src":"61474:1:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"61467:9:0","typeDescriptions":{"typeIdentifier":"t_struct$_UserStakeInput_$136_memory_ptr","typeString":"struct DistributionTypes.UserStakeInput memory"}},"id":2771,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"61477:11:0","memberName":"totalStaked","nodeType":"MemberAccess","referencedDeclaration":135,"src":"61467:21:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2758,"name":"_updateUserAssetInternal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2729,"src":"61344:24:0","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (address,address,uint256,uint256) returns (uint256)"}},"id":2772,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"61344:154:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"61319:179:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"61294:204:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2775,"nodeType":"ExpressionStatement","src":"61294:204:0"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2752,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2749,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2746,"src":"61262:1:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":2750,"name":"stakes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2736,"src":"61266:6:0","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_UserStakeInput_$136_memory_ptr_$dyn_memory_ptr","typeString":"struct DistributionTypes.UserStakeInput memory[] memory"}},"id":2751,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"61273:6:0","memberName":"length","nodeType":"MemberAccess","src":"61266:13:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"61262:17:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2777,"initializationExpression":{"assignments":[2746],"declarations":[{"constant":false,"id":2746,"mutability":"mutable","name":"i","nameLocation":"61255:1:0","nodeType":"VariableDeclaration","scope":2777,"src":"61247:9:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2745,"name":"uint256","nodeType":"ElementaryTypeName","src":"61247:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2748,"initialValue":{"hexValue":"30","id":2747,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"61259:1:0","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"61247:13:0"},"isSimpleCounterLoop":true,"loopExpression":{"expression":{"id":2754,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"61281:3:0","subExpression":{"id":2753,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2746,"src":"61281:1:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2755,"nodeType":"ExpressionStatement","src":"61281:3:0"},"nodeType":"ForStatement","src":"61242:263:0"},{"expression":{"id":2778,"name":"accruedRewards","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2742,"src":"61518:14:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":2740,"id":2779,"nodeType":"Return","src":"61511:21:0"}]},"documentation":{"id":2730,"nodeType":"StructuredDocumentation","src":"60778:296:0","text":" @dev Used by \"frontend\" stake contracts to update the data of an user when claiming rewards from there\n @param user The address of the user\n @param stakes List of structs of the user data related with his stake\n @return The accrued rewards for the user until the moment"},"id":2781,"implemented":true,"kind":"function","modifiers":[],"name":"_claimRewards","nameLocation":"61086:13:0","nodeType":"FunctionDefinition","parameters":{"id":2737,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2732,"mutability":"mutable","name":"user","nameLocation":"61113:4:0","nodeType":"VariableDeclaration","scope":2781,"src":"61105:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2731,"name":"address","nodeType":"ElementaryTypeName","src":"61105:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2736,"mutability":"mutable","name":"stakes","nameLocation":"61165:6:0","nodeType":"VariableDeclaration","scope":2781,"src":"61123:48:0","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_UserStakeInput_$136_memory_ptr_$dyn_memory_ptr","typeString":"struct DistributionTypes.UserStakeInput[]"},"typeName":{"baseType":{"id":2734,"nodeType":"UserDefinedTypeName","pathNode":{"id":2733,"name":"DistributionTypes.UserStakeInput","nameLocations":["61123:17:0","61141:14:0"],"nodeType":"IdentifierPath","referencedDeclaration":136,"src":"61123:32:0"},"referencedDeclaration":136,"src":"61123:32:0","typeDescriptions":{"typeIdentifier":"t_struct$_UserStakeInput_$136_storage_ptr","typeString":"struct DistributionTypes.UserStakeInput"}},"id":2735,"nodeType":"ArrayTypeName","src":"61123:34:0","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_UserStakeInput_$136_storage_$dyn_storage_ptr","typeString":"struct DistributionTypes.UserStakeInput[]"}},"visibility":"internal"}],"src":"61099:76:0"},"returnParameters":{"id":2740,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2739,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2781,"src":"61194:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2738,"name":"uint256","nodeType":"ElementaryTypeName","src":"61194:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"61193:9:0"},"scope":2972,"src":"61077:460:0","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":2853,"nodeType":"Block","src":"61947:554:0","statements":[{"assignments":[2794],"declarations":[{"constant":false,"id":2794,"mutability":"mutable","name":"accruedRewards","nameLocation":"61961:14:0","nodeType":"VariableDeclaration","scope":2853,"src":"61953:22:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2793,"name":"uint256","nodeType":"ElementaryTypeName","src":"61953:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2796,"initialValue":{"hexValue":"30","id":2795,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"61978:1:0","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"61953:26:0"},{"body":{"id":2849,"nodeType":"Block","src":"62030:440:0","statements":[{"assignments":[2810],"declarations":[{"constant":false,"id":2810,"mutability":"mutable","name":"assetConfig","nameLocation":"62056:11:0","nodeType":"VariableDeclaration","scope":2849,"src":"62038:29:0","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_struct$_AssetData_$2469_storage_ptr","typeString":"struct PegasysDistributionManager.AssetData"},"typeName":{"id":2809,"nodeType":"UserDefinedTypeName","pathNode":{"id":2808,"name":"AssetData","nameLocations":["62038:9:0"],"nodeType":"IdentifierPath","referencedDeclaration":2469,"src":"62038:9:0"},"referencedDeclaration":2469,"src":"62038:9:0","typeDescriptions":{"typeIdentifier":"t_struct$_AssetData_$2469_storage_ptr","typeString":"struct PegasysDistributionManager.AssetData"}},"visibility":"internal"}],"id":2817,"initialValue":{"baseExpression":{"id":2811,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2481,"src":"62070:6:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_AssetData_$2469_storage_$","typeString":"mapping(address => struct PegasysDistributionManager.AssetData storage ref)"}},"id":2816,"indexExpression":{"expression":{"baseExpression":{"id":2812,"name":"stakes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2788,"src":"62077:6:0","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_UserStakeInput_$136_memory_ptr_$dyn_memory_ptr","typeString":"struct DistributionTypes.UserStakeInput memory[] memory"}},"id":2814,"indexExpression":{"id":2813,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2798,"src":"62084:1:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"62077:9:0","typeDescriptions":{"typeIdentifier":"t_struct$_UserStakeInput_$136_memory_ptr","typeString":"struct DistributionTypes.UserStakeInput memory"}},"id":2815,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"62087:15:0","memberName":"underlyingAsset","nodeType":"MemberAccess","referencedDeclaration":131,"src":"62077:25:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"62070:33:0","typeDescriptions":{"typeIdentifier":"t_struct$_AssetData_$2469_storage","typeString":"struct PegasysDistributionManager.AssetData storage ref"}},"nodeType":"VariableDeclarationStatement","src":"62038:65:0"},{"assignments":[2819],"declarations":[{"constant":false,"id":2819,"mutability":"mutable","name":"assetIndex","nameLocation":"62119:10:0","nodeType":"VariableDeclaration","scope":2849,"src":"62111:18:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2818,"name":"uint256","nodeType":"ElementaryTypeName","src":"62111:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2832,"initialValue":{"arguments":[{"expression":{"id":2821,"name":"assetConfig","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2810,"src":"62156:11:0","typeDescriptions":{"typeIdentifier":"t_struct$_AssetData_$2469_storage_ptr","typeString":"struct PegasysDistributionManager.AssetData storage pointer"}},"id":2822,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"62168:5:0","memberName":"index","nodeType":"MemberAccess","referencedDeclaration":2464,"src":"62156:17:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":2823,"name":"assetConfig","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2810,"src":"62183:11:0","typeDescriptions":{"typeIdentifier":"t_struct$_AssetData_$2469_storage_ptr","typeString":"struct PegasysDistributionManager.AssetData storage pointer"}},"id":2824,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"62195:17:0","memberName":"emissionPerSecond","nodeType":"MemberAccess","referencedDeclaration":2460,"src":"62183:29:0","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},{"expression":{"id":2825,"name":"assetConfig","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2810,"src":"62222:11:0","typeDescriptions":{"typeIdentifier":"t_struct$_AssetData_$2469_storage_ptr","typeString":"struct PegasysDistributionManager.AssetData storage pointer"}},"id":2826,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"62234:19:0","memberName":"lastUpdateTimestamp","nodeType":"MemberAccess","referencedDeclaration":2462,"src":"62222:31:0","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},{"expression":{"baseExpression":{"id":2827,"name":"stakes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2788,"src":"62263:6:0","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_UserStakeInput_$136_memory_ptr_$dyn_memory_ptr","typeString":"struct DistributionTypes.UserStakeInput memory[] memory"}},"id":2829,"indexExpression":{"id":2828,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2798,"src":"62270:1:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"62263:9:0","typeDescriptions":{"typeIdentifier":"t_struct$_UserStakeInput_$136_memory_ptr","typeString":"struct DistributionTypes.UserStakeInput memory"}},"id":2830,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"62273:11:0","memberName":"totalStaked","nodeType":"MemberAccess","referencedDeclaration":135,"src":"62263:21:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint128","typeString":"uint128"},{"typeIdentifier":"t_uint128","typeString":"uint128"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2820,"name":"_getAssetIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2953,"src":"62132:14:0","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$_t_uint256_$_t_uint128_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint128,uint256) view returns (uint256)"}},"id":2831,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"62132:160:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"62111:181:0"},{"expression":{"id":2847,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":2833,"name":"accruedRewards","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2794,"src":"62301:14:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2846,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2834,"name":"accruedRewards","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2794,"src":"62326:14:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"arguments":[{"expression":{"baseExpression":{"id":2836,"name":"stakes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2788,"src":"62374:6:0","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_UserStakeInput_$136_memory_ptr_$dyn_memory_ptr","typeString":"struct DistributionTypes.UserStakeInput memory[] memory"}},"id":2838,"indexExpression":{"id":2837,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2798,"src":"62381:1:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"62374:9:0","typeDescriptions":{"typeIdentifier":"t_struct$_UserStakeInput_$136_memory_ptr","typeString":"struct DistributionTypes.UserStakeInput memory"}},"id":2839,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"62384:12:0","memberName":"stakedByUser","nodeType":"MemberAccess","referencedDeclaration":133,"src":"62374:22:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":2840,"name":"assetIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2819,"src":"62408:10:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"baseExpression":{"expression":{"id":2841,"name":"assetConfig","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2810,"src":"62430:11:0","typeDescriptions":{"typeIdentifier":"t_struct$_AssetData_$2469_storage_ptr","typeString":"struct PegasysDistributionManager.AssetData storage pointer"}},"id":2842,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"62442:5:0","memberName":"users","nodeType":"MemberAccess","referencedDeclaration":2468,"src":"62430:17:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":2844,"indexExpression":{"id":2843,"name":"user","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2784,"src":"62448:4:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"62430:23:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2835,"name":"_getRewards","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2883,"src":"62351:11:0","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256,uint256,uint256) pure returns (uint256)"}},"id":2845,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"62351:112:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"62326:137:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"62301:162:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2848,"nodeType":"ExpressionStatement","src":"62301:162:0"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2804,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2801,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2798,"src":"62006:1:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":2802,"name":"stakes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2788,"src":"62010:6:0","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_UserStakeInput_$136_memory_ptr_$dyn_memory_ptr","typeString":"struct DistributionTypes.UserStakeInput memory[] memory"}},"id":2803,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"62017:6:0","memberName":"length","nodeType":"MemberAccess","src":"62010:13:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"62006:17:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2850,"initializationExpression":{"assignments":[2798],"declarations":[{"constant":false,"id":2798,"mutability":"mutable","name":"i","nameLocation":"61999:1:0","nodeType":"VariableDeclaration","scope":2850,"src":"61991:9:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2797,"name":"uint256","nodeType":"ElementaryTypeName","src":"61991:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2800,"initialValue":{"hexValue":"30","id":2799,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"62003:1:0","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"61991:13:0"},"isSimpleCounterLoop":true,"loopExpression":{"expression":{"id":2806,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"62025:3:0","subExpression":{"id":2805,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2798,"src":"62025:1:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2807,"nodeType":"ExpressionStatement","src":"62025:3:0"},"nodeType":"ForStatement","src":"61986:484:0"},{"expression":{"id":2851,"name":"accruedRewards","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2794,"src":"62482:14:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":2792,"id":2852,"nodeType":"Return","src":"62475:21:0"}]},"documentation":{"id":2782,"nodeType":"StructuredDocumentation","src":"61541:265:0","text":" @dev Return the accrued rewards for an user over a list of distribution\n @param user The address of the user\n @param stakes List of structs of the user data related with his stake\n @return The accrued rewards for the user until the moment"},"id":2854,"implemented":true,"kind":"function","modifiers":[],"name":"_getUnclaimedRewards","nameLocation":"61818:20:0","nodeType":"FunctionDefinition","parameters":{"id":2789,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2784,"mutability":"mutable","name":"user","nameLocation":"61852:4:0","nodeType":"VariableDeclaration","scope":2854,"src":"61844:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2783,"name":"address","nodeType":"ElementaryTypeName","src":"61844:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2788,"mutability":"mutable","name":"stakes","nameLocation":"61904:6:0","nodeType":"VariableDeclaration","scope":2854,"src":"61862:48:0","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_UserStakeInput_$136_memory_ptr_$dyn_memory_ptr","typeString":"struct DistributionTypes.UserStakeInput[]"},"typeName":{"baseType":{"id":2786,"nodeType":"UserDefinedTypeName","pathNode":{"id":2785,"name":"DistributionTypes.UserStakeInput","nameLocations":["61862:17:0","61880:14:0"],"nodeType":"IdentifierPath","referencedDeclaration":136,"src":"61862:32:0"},"referencedDeclaration":136,"src":"61862:32:0","typeDescriptions":{"typeIdentifier":"t_struct$_UserStakeInput_$136_storage_ptr","typeString":"struct DistributionTypes.UserStakeInput"}},"id":2787,"nodeType":"ArrayTypeName","src":"61862:34:0","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_UserStakeInput_$136_storage_$dyn_storage_ptr","typeString":"struct DistributionTypes.UserStakeInput[]"}},"visibility":"internal"}],"src":"61838:76:0"},"returnParameters":{"id":2792,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2791,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2854,"src":"61938:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2790,"name":"uint256","nodeType":"ElementaryTypeName","src":"61938:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"61937:9:0"},"scope":2972,"src":"61809:692:0","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":2882,"nodeType":"Block","src":"62985:108:0","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2880,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2871,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2866,"name":"principalUserBalance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2857,"src":"63005:20:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2869,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2867,"name":"reserveIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2859,"src":"63029:12:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":2868,"name":"userIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2861,"src":"63044:9:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"63029:24:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":2870,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"63028:26:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"63005:49:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":2872,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"63004:51:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2878,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":2873,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"63065:2:0","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"arguments":[{"id":2876,"name":"PRECISION","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2476,"src":"63077:9:0","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":2875,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"63069:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":2874,"name":"uint256","nodeType":"ElementaryTypeName","src":"63069:7:0","typeDescriptions":{}}},"id":2877,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"63069:18:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"63065:22:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":2879,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"63064:24:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"63004:84:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":2865,"id":2881,"nodeType":"Return","src":"62991:97:0"}]},"documentation":{"id":2855,"nodeType":"StructuredDocumentation","src":"62505:337:0","text":" @dev Internal function for the calculation of user's rewards on a distribution\n @param principalUserBalance Amount staked by the user on a distribution\n @param reserveIndex Current index of the distribution\n @param userIndex Index stored for the user, representation his staking moment\n @return The rewards"},"id":2883,"implemented":true,"kind":"function","modifiers":[],"name":"_getRewards","nameLocation":"62854:11:0","nodeType":"FunctionDefinition","parameters":{"id":2862,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2857,"mutability":"mutable","name":"principalUserBalance","nameLocation":"62879:20:0","nodeType":"VariableDeclaration","scope":2883,"src":"62871:28:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2856,"name":"uint256","nodeType":"ElementaryTypeName","src":"62871:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2859,"mutability":"mutable","name":"reserveIndex","nameLocation":"62913:12:0","nodeType":"VariableDeclaration","scope":2883,"src":"62905:20:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2858,"name":"uint256","nodeType":"ElementaryTypeName","src":"62905:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2861,"mutability":"mutable","name":"userIndex","nameLocation":"62939:9:0","nodeType":"VariableDeclaration","scope":2883,"src":"62931:17:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2860,"name":"uint256","nodeType":"ElementaryTypeName","src":"62931:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"62865:87:0"},"returnParameters":{"id":2865,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2864,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2883,"src":"62976:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2863,"name":"uint256","nodeType":"ElementaryTypeName","src":"62976:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"62975:9:0"},"scope":2972,"src":"62845:248:0","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":2952,"nodeType":"Block","src":"63721:506:0","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":2912,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":2908,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":2903,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2899,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2897,"name":"emissionPerSecond","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2888,"src":"63738:17:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":2898,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"63759:1:0","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"63738:22:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2902,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2900,"name":"totalBalance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2892,"src":"63770:12:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":2901,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"63786:1:0","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"63770:17:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"63738:49:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2907,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2904,"name":"lastUpdateTimestamp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2890,"src":"63797:19:0","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":2905,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"63820:5:0","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":2906,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"63826:9:0","memberName":"timestamp","nodeType":"MemberAccess","src":"63820:15:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"63797:38:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"63738:97:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2911,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2909,"name":"lastUpdateTimestamp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2890,"src":"63845:19:0","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"id":2910,"name":"DISTRIBUTION_END","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2471,"src":"63868:16:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"63845:39:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"63738:146:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":2916,"nodeType":"IfStatement","src":"63727:198:0","trueBody":{"id":2915,"nodeType":"Block","src":"63891:34:0","statements":[{"expression":{"id":2913,"name":"currentIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2886,"src":"63906:12:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":2896,"id":2914,"nodeType":"Return","src":"63899:19:0"}]}},{"assignments":[2918],"declarations":[{"constant":false,"id":2918,"mutability":"mutable","name":"currentTimestamp","nameLocation":"63939:16:0","nodeType":"VariableDeclaration","scope":2952,"src":"63931:24:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2917,"name":"uint256","nodeType":"ElementaryTypeName","src":"63931:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2927,"initialValue":{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2922,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":2919,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"63958:5:0","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":2920,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"63964:9:0","memberName":"timestamp","nodeType":"MemberAccess","src":"63958:15:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":2921,"name":"DISTRIBUTION_END","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2471,"src":"63976:16:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"63958:34:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"expression":{"id":2924,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"64026:5:0","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":2925,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"64032:9:0","memberName":"timestamp","nodeType":"MemberAccess","src":"64026:15:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":2926,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"63958:83:0","trueExpression":{"id":2923,"name":"DISTRIBUTION_END","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2471,"src":"64001:16:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"63931:110:0"},{"assignments":[2929],"declarations":[{"constant":false,"id":2929,"mutability":"mutable","name":"timeDelta","nameLocation":"64055:9:0","nodeType":"VariableDeclaration","scope":2952,"src":"64047:17:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2928,"name":"uint256","nodeType":"ElementaryTypeName","src":"64047:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":2933,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2932,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2930,"name":"currentTimestamp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2918,"src":"64067:16:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":2931,"name":"lastUpdateTimestamp","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2890,"src":"64086:19:0","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"src":"64067:38:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"64047:58:0"},{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2950,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2947,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2944,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2936,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2934,"name":"emissionPerSecond","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2888,"src":"64126:17:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":2935,"name":"timeDelta","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2929,"src":"64146:9:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"64126:29:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2942,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":2937,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"64159:2:0","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"arguments":[{"id":2940,"name":"PRECISION","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2476,"src":"64171:9:0","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint8","typeString":"uint8"}],"id":2939,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"64163:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":2938,"name":"uint256","nodeType":"ElementaryTypeName","src":"64163:7:0","typeDescriptions":{}}},"id":2941,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"64163:18:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"64159:22:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":2943,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"64158:24:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"64126:56:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":2945,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"64125:58:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":2946,"name":"totalBalance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2892,"src":"64194:12:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"64125:81:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":2948,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"64124:83:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":2949,"name":"currentIndex","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2886,"src":"64210:12:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"64124:98:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":2896,"id":2951,"nodeType":"Return","src":"64111:111:0"}]},"documentation":{"id":2884,"nodeType":"StructuredDocumentation","src":"63097:445:0","text":" @dev Calculates the next value of an specific distribution index, with validations\n @param currentIndex Current index of the distribution\n @param emissionPerSecond Representing the total rewards distributed per second per asset unit, on the distribution\n @param lastUpdateTimestamp Last moment this distribution was updated\n @param totalBalance of tokens considered for the distribution\n @return The new index."},"id":2953,"implemented":true,"kind":"function","modifiers":[],"name":"_getAssetIndex","nameLocation":"63554:14:0","nodeType":"FunctionDefinition","parameters":{"id":2893,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2886,"mutability":"mutable","name":"currentIndex","nameLocation":"63582:12:0","nodeType":"VariableDeclaration","scope":2953,"src":"63574:20:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2885,"name":"uint256","nodeType":"ElementaryTypeName","src":"63574:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2888,"mutability":"mutable","name":"emissionPerSecond","nameLocation":"63608:17:0","nodeType":"VariableDeclaration","scope":2953,"src":"63600:25:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2887,"name":"uint256","nodeType":"ElementaryTypeName","src":"63600:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":2890,"mutability":"mutable","name":"lastUpdateTimestamp","nameLocation":"63639:19:0","nodeType":"VariableDeclaration","scope":2953,"src":"63631:27:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"},"typeName":{"id":2889,"name":"uint128","nodeType":"ElementaryTypeName","src":"63631:7:0","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"visibility":"internal"},{"constant":false,"id":2892,"mutability":"mutable","name":"totalBalance","nameLocation":"63672:12:0","nodeType":"VariableDeclaration","scope":2953,"src":"63664:20:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2891,"name":"uint256","nodeType":"ElementaryTypeName","src":"63664:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"63568:120:0"},"returnParameters":{"id":2896,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2895,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2953,"src":"63712:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2894,"name":"uint256","nodeType":"ElementaryTypeName","src":"63712:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"63711:9:0"},"scope":2972,"src":"63545:682:0","stateMutability":"view","virtual":false,"visibility":"internal"},{"body":{"id":2970,"nodeType":"Block","src":"64535:43:0","statements":[{"expression":{"baseExpression":{"expression":{"baseExpression":{"id":2963,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2481,"src":"64548:6:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_AssetData_$2469_storage_$","typeString":"mapping(address => struct PegasysDistributionManager.AssetData storage ref)"}},"id":2965,"indexExpression":{"id":2964,"name":"asset","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2958,"src":"64555:5:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"64548:13:0","typeDescriptions":{"typeIdentifier":"t_struct$_AssetData_$2469_storage","typeString":"struct PegasysDistributionManager.AssetData storage ref"}},"id":2966,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"64562:5:0","memberName":"users","nodeType":"MemberAccess","referencedDeclaration":2468,"src":"64548:19:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":2968,"indexExpression":{"id":2967,"name":"user","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2956,"src":"64568:4:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"64548:25:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":2962,"id":2969,"nodeType":"Return","src":"64541:32:0"}]},"documentation":{"id":2954,"nodeType":"StructuredDocumentation","src":"64231:202:0","text":" @dev Returns the data of an user on a distribution\n @param user Address of the user\n @param asset The address of the reference asset of the distribution\n @return The new index"},"functionSelector":"3373ee4c","id":2971,"implemented":true,"kind":"function","modifiers":[],"name":"getUserAssetData","nameLocation":"64445:16:0","nodeType":"FunctionDefinition","parameters":{"id":2959,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2956,"mutability":"mutable","name":"user","nameLocation":"64470:4:0","nodeType":"VariableDeclaration","scope":2971,"src":"64462:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2955,"name":"address","nodeType":"ElementaryTypeName","src":"64462:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":2958,"mutability":"mutable","name":"asset","nameLocation":"64484:5:0","nodeType":"VariableDeclaration","scope":2971,"src":"64476:13:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":2957,"name":"address","nodeType":"ElementaryTypeName","src":"64476:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"64461:29:0"},"returnParameters":{"id":2962,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2961,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2971,"src":"64524:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2960,"name":"uint256","nodeType":"ElementaryTypeName","src":"64524:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"64523:9:0"},"scope":2972,"src":"64436:142:0","stateMutability":"view","virtual":false,"visibility":"public"}],"scope":7298,"src":"57028:7552:0","usedErrors":[],"usedEvents":[2487,2493,2501]},{"id":2973,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"64829:23:0"},{"abstract":false,"baseContracts":[],"canonicalName":"SafeCast","contractDependencies":[],"contractKind":"library","documentation":{"id":2974,"nodeType":"StructuredDocumentation","src":"64854:709:0","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":4512,"linearizedBaseContracts":[4512],"name":"SafeCast","nameLocation":"65572:8:0","nodeType":"ContractDefinition","nodes":[{"body":{"id":2998,"nodeType":"Block","src":"65976:126:0","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":2989,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":2983,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2977,"src":"65994:5:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"expression":{"arguments":[{"id":2986,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"66008:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_uint248_$","typeString":"type(uint248)"},"typeName":{"id":2985,"name":"uint248","nodeType":"ElementaryTypeName","src":"66008:7:0","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint248_$","typeString":"type(uint248)"}],"id":2984,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"66003:4:0","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":2987,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"66003:13:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint248","typeString":"type(uint248)"}},"id":2988,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"66017:3:0","memberName":"max","nodeType":"MemberAccess","src":"66003:17:0","typeDescriptions":{"typeIdentifier":"t_uint248","typeString":"uint248"}},"src":"65994:26:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"53616665436173743a2076616c756520646f65736e27742066697420696e203234382062697473","id":2990,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"66022:41:0","typeDescriptions":{"typeIdentifier":"t_stringliteral_6ac19bba4607c9b45ff35f54fbc4ca64c29c7457109a16fa180ea77cdbda8593","typeString":"literal_string \"SafeCast: value doesn't fit in 248 bits\""},"value":"SafeCast: value doesn't fit in 248 bits"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_6ac19bba4607c9b45ff35f54fbc4ca64c29c7457109a16fa180ea77cdbda8593","typeString":"literal_string \"SafeCast: value doesn't fit in 248 bits\""}],"id":2982,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"65986:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":2991,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"65986:78:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":2992,"nodeType":"ExpressionStatement","src":"65986:78:0"},{"expression":{"arguments":[{"id":2995,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2977,"src":"66089:5:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":2994,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"66081:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_uint248_$","typeString":"type(uint248)"},"typeName":{"id":2993,"name":"uint248","nodeType":"ElementaryTypeName","src":"66081:7:0","typeDescriptions":{}}},"id":2996,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"66081:14:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint248","typeString":"uint248"}},"functionReturnParameters":2981,"id":2997,"nodeType":"Return","src":"66074:21:0"}]},"documentation":{"id":2975,"nodeType":"StructuredDocumentation","src":"65587:318:0","text":" @dev Returns the downcasted uint248 from uint256, reverting on\n overflow (when the input is greater than largest uint248).\n Counterpart to Solidity's `uint248` operator.\n Requirements:\n - input must fit into 248 bits\n _Available since v4.7._"},"id":2999,"implemented":true,"kind":"function","modifiers":[],"name":"toUint248","nameLocation":"65919:9:0","nodeType":"FunctionDefinition","parameters":{"id":2978,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2977,"mutability":"mutable","name":"value","nameLocation":"65937:5:0","nodeType":"VariableDeclaration","scope":2999,"src":"65929:13:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":2976,"name":"uint256","nodeType":"ElementaryTypeName","src":"65929:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"65928:15:0"},"returnParameters":{"id":2981,"nodeType":"ParameterList","parameters":[{"constant":false,"id":2980,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":2999,"src":"65967:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint248","typeString":"uint248"},"typeName":{"id":2979,"name":"uint248","nodeType":"ElementaryTypeName","src":"65967:7:0","typeDescriptions":{"typeIdentifier":"t_uint248","typeString":"uint248"}},"visibility":"internal"}],"src":"65966:9:0"},"scope":4512,"src":"65910:192:0","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":3023,"nodeType":"Block","src":"66497:126:0","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3014,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3008,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3002,"src":"66515:5:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"expression":{"arguments":[{"id":3011,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"66529:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_uint240_$","typeString":"type(uint240)"},"typeName":{"id":3010,"name":"uint240","nodeType":"ElementaryTypeName","src":"66529:7:0","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint240_$","typeString":"type(uint240)"}],"id":3009,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"66524:4:0","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":3012,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"66524:13:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint240","typeString":"type(uint240)"}},"id":3013,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"66538:3:0","memberName":"max","nodeType":"MemberAccess","src":"66524:17:0","typeDescriptions":{"typeIdentifier":"t_uint240","typeString":"uint240"}},"src":"66515:26:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"53616665436173743a2076616c756520646f65736e27742066697420696e203234302062697473","id":3015,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"66543:41:0","typeDescriptions":{"typeIdentifier":"t_stringliteral_375fa0f6cb9fb5845d214c630920cedf4424913ed6dc32c297d430efa3d61a87","typeString":"literal_string \"SafeCast: value doesn't fit in 240 bits\""},"value":"SafeCast: value doesn't fit in 240 bits"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_375fa0f6cb9fb5845d214c630920cedf4424913ed6dc32c297d430efa3d61a87","typeString":"literal_string \"SafeCast: value doesn't fit in 240 bits\""}],"id":3007,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"66507:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":3016,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"66507:78:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3017,"nodeType":"ExpressionStatement","src":"66507:78:0"},{"expression":{"arguments":[{"id":3020,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3002,"src":"66610:5:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3019,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"66602:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_uint240_$","typeString":"type(uint240)"},"typeName":{"id":3018,"name":"uint240","nodeType":"ElementaryTypeName","src":"66602:7:0","typeDescriptions":{}}},"id":3021,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"66602:14:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint240","typeString":"uint240"}},"functionReturnParameters":3006,"id":3022,"nodeType":"Return","src":"66595:21:0"}]},"documentation":{"id":3000,"nodeType":"StructuredDocumentation","src":"66108:318:0","text":" @dev Returns the downcasted uint240 from uint256, reverting on\n overflow (when the input is greater than largest uint240).\n Counterpart to Solidity's `uint240` operator.\n Requirements:\n - input must fit into 240 bits\n _Available since v4.7._"},"id":3024,"implemented":true,"kind":"function","modifiers":[],"name":"toUint240","nameLocation":"66440:9:0","nodeType":"FunctionDefinition","parameters":{"id":3003,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3002,"mutability":"mutable","name":"value","nameLocation":"66458:5:0","nodeType":"VariableDeclaration","scope":3024,"src":"66450:13:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3001,"name":"uint256","nodeType":"ElementaryTypeName","src":"66450:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"66449:15:0"},"returnParameters":{"id":3006,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3005,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3024,"src":"66488:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint240","typeString":"uint240"},"typeName":{"id":3004,"name":"uint240","nodeType":"ElementaryTypeName","src":"66488:7:0","typeDescriptions":{"typeIdentifier":"t_uint240","typeString":"uint240"}},"visibility":"internal"}],"src":"66487:9:0"},"scope":4512,"src":"66431:192:0","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":3048,"nodeType":"Block","src":"67018:126:0","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3039,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3033,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3027,"src":"67036:5:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"expression":{"arguments":[{"id":3036,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"67050:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_uint232_$","typeString":"type(uint232)"},"typeName":{"id":3035,"name":"uint232","nodeType":"ElementaryTypeName","src":"67050:7:0","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint232_$","typeString":"type(uint232)"}],"id":3034,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"67045:4:0","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":3037,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"67045:13:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint232","typeString":"type(uint232)"}},"id":3038,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"67059:3:0","memberName":"max","nodeType":"MemberAccess","src":"67045:17:0","typeDescriptions":{"typeIdentifier":"t_uint232","typeString":"uint232"}},"src":"67036:26:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"53616665436173743a2076616c756520646f65736e27742066697420696e203233322062697473","id":3040,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"67064:41:0","typeDescriptions":{"typeIdentifier":"t_stringliteral_5797fb2c4589bd6a92752ce0eacaac67341e37ab28c96c2284ab897e7ac77957","typeString":"literal_string \"SafeCast: value doesn't fit in 232 bits\""},"value":"SafeCast: value doesn't fit in 232 bits"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_5797fb2c4589bd6a92752ce0eacaac67341e37ab28c96c2284ab897e7ac77957","typeString":"literal_string \"SafeCast: value doesn't fit in 232 bits\""}],"id":3032,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"67028:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":3041,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"67028:78:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3042,"nodeType":"ExpressionStatement","src":"67028:78:0"},{"expression":{"arguments":[{"id":3045,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3027,"src":"67131:5:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3044,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"67123:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_uint232_$","typeString":"type(uint232)"},"typeName":{"id":3043,"name":"uint232","nodeType":"ElementaryTypeName","src":"67123:7:0","typeDescriptions":{}}},"id":3046,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"67123:14:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint232","typeString":"uint232"}},"functionReturnParameters":3031,"id":3047,"nodeType":"Return","src":"67116:21:0"}]},"documentation":{"id":3025,"nodeType":"StructuredDocumentation","src":"66629:318:0","text":" @dev Returns the downcasted uint232 from uint256, reverting on\n overflow (when the input is greater than largest uint232).\n Counterpart to Solidity's `uint232` operator.\n Requirements:\n - input must fit into 232 bits\n _Available since v4.7._"},"id":3049,"implemented":true,"kind":"function","modifiers":[],"name":"toUint232","nameLocation":"66961:9:0","nodeType":"FunctionDefinition","parameters":{"id":3028,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3027,"mutability":"mutable","name":"value","nameLocation":"66979:5:0","nodeType":"VariableDeclaration","scope":3049,"src":"66971:13:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3026,"name":"uint256","nodeType":"ElementaryTypeName","src":"66971:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"66970:15:0"},"returnParameters":{"id":3031,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3030,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3049,"src":"67009:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint232","typeString":"uint232"},"typeName":{"id":3029,"name":"uint232","nodeType":"ElementaryTypeName","src":"67009:7:0","typeDescriptions":{"typeIdentifier":"t_uint232","typeString":"uint232"}},"visibility":"internal"}],"src":"67008:9:0"},"scope":4512,"src":"66952:192:0","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":3073,"nodeType":"Block","src":"67539:126:0","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3064,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3058,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3052,"src":"67557:5:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"expression":{"arguments":[{"id":3061,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"67571:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_uint224_$","typeString":"type(uint224)"},"typeName":{"id":3060,"name":"uint224","nodeType":"ElementaryTypeName","src":"67571:7:0","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint224_$","typeString":"type(uint224)"}],"id":3059,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"67566:4:0","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":3062,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"67566:13:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint224","typeString":"type(uint224)"}},"id":3063,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"67580:3:0","memberName":"max","nodeType":"MemberAccess","src":"67566:17:0","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"}},"src":"67557:26:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"53616665436173743a2076616c756520646f65736e27742066697420696e203232342062697473","id":3065,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"67585:41:0","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":3057,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"67549:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":3066,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"67549:78:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3067,"nodeType":"ExpressionStatement","src":"67549:78:0"},{"expression":{"arguments":[{"id":3070,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3052,"src":"67652:5:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3069,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"67644:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_uint224_$","typeString":"type(uint224)"},"typeName":{"id":3068,"name":"uint224","nodeType":"ElementaryTypeName","src":"67644:7:0","typeDescriptions":{}}},"id":3071,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"67644:14:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"}},"functionReturnParameters":3056,"id":3072,"nodeType":"Return","src":"67637:21:0"}]},"documentation":{"id":3050,"nodeType":"StructuredDocumentation","src":"67150:318:0","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\n _Available since v4.2._"},"id":3074,"implemented":true,"kind":"function","modifiers":[],"name":"toUint224","nameLocation":"67482:9:0","nodeType":"FunctionDefinition","parameters":{"id":3053,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3052,"mutability":"mutable","name":"value","nameLocation":"67500:5:0","nodeType":"VariableDeclaration","scope":3074,"src":"67492:13:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3051,"name":"uint256","nodeType":"ElementaryTypeName","src":"67492:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"67491:15:0"},"returnParameters":{"id":3056,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3055,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3074,"src":"67530:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"},"typeName":{"id":3054,"name":"uint224","nodeType":"ElementaryTypeName","src":"67530:7:0","typeDescriptions":{"typeIdentifier":"t_uint224","typeString":"uint224"}},"visibility":"internal"}],"src":"67529:9:0"},"scope":4512,"src":"67473:192:0","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":3098,"nodeType":"Block","src":"68060:126:0","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3089,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3083,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3077,"src":"68078:5:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"expression":{"arguments":[{"id":3086,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"68092:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_uint216_$","typeString":"type(uint216)"},"typeName":{"id":3085,"name":"uint216","nodeType":"ElementaryTypeName","src":"68092:7:0","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint216_$","typeString":"type(uint216)"}],"id":3084,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"68087:4:0","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":3087,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"68087:13:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint216","typeString":"type(uint216)"}},"id":3088,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"68101:3:0","memberName":"max","nodeType":"MemberAccess","src":"68087:17:0","typeDescriptions":{"typeIdentifier":"t_uint216","typeString":"uint216"}},"src":"68078:26:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"53616665436173743a2076616c756520646f65736e27742066697420696e203231362062697473","id":3090,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"68106:41:0","typeDescriptions":{"typeIdentifier":"t_stringliteral_8966adc0aad8dc91b207c69c3eb4937e498af8cc706cfe7edd55f3a6ea53488d","typeString":"literal_string \"SafeCast: value doesn't fit in 216 bits\""},"value":"SafeCast: value doesn't fit in 216 bits"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_8966adc0aad8dc91b207c69c3eb4937e498af8cc706cfe7edd55f3a6ea53488d","typeString":"literal_string \"SafeCast: value doesn't fit in 216 bits\""}],"id":3082,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"68070:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":3091,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"68070:78:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3092,"nodeType":"ExpressionStatement","src":"68070:78:0"},{"expression":{"arguments":[{"id":3095,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3077,"src":"68173:5:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3094,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"68165:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_uint216_$","typeString":"type(uint216)"},"typeName":{"id":3093,"name":"uint216","nodeType":"ElementaryTypeName","src":"68165:7:0","typeDescriptions":{}}},"id":3096,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"68165:14:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint216","typeString":"uint216"}},"functionReturnParameters":3081,"id":3097,"nodeType":"Return","src":"68158:21:0"}]},"documentation":{"id":3075,"nodeType":"StructuredDocumentation","src":"67671:318:0","text":" @dev Returns the downcasted uint216 from uint256, reverting on\n overflow (when the input is greater than largest uint216).\n Counterpart to Solidity's `uint216` operator.\n Requirements:\n - input must fit into 216 bits\n _Available since v4.7._"},"id":3099,"implemented":true,"kind":"function","modifiers":[],"name":"toUint216","nameLocation":"68003:9:0","nodeType":"FunctionDefinition","parameters":{"id":3078,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3077,"mutability":"mutable","name":"value","nameLocation":"68021:5:0","nodeType":"VariableDeclaration","scope":3099,"src":"68013:13:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3076,"name":"uint256","nodeType":"ElementaryTypeName","src":"68013:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"68012:15:0"},"returnParameters":{"id":3081,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3080,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3099,"src":"68051:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint216","typeString":"uint216"},"typeName":{"id":3079,"name":"uint216","nodeType":"ElementaryTypeName","src":"68051:7:0","typeDescriptions":{"typeIdentifier":"t_uint216","typeString":"uint216"}},"visibility":"internal"}],"src":"68050:9:0"},"scope":4512,"src":"67994:192:0","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":3123,"nodeType":"Block","src":"68581:126:0","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3114,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3108,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3102,"src":"68599:5:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"expression":{"arguments":[{"id":3111,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"68613:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_uint208_$","typeString":"type(uint208)"},"typeName":{"id":3110,"name":"uint208","nodeType":"ElementaryTypeName","src":"68613:7:0","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint208_$","typeString":"type(uint208)"}],"id":3109,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"68608:4:0","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":3112,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"68608:13:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint208","typeString":"type(uint208)"}},"id":3113,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"68622:3:0","memberName":"max","nodeType":"MemberAccess","src":"68608:17:0","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"src":"68599:26:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"53616665436173743a2076616c756520646f65736e27742066697420696e203230382062697473","id":3115,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"68627:41:0","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":3107,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"68591:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":3116,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"68591:78:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3117,"nodeType":"ExpressionStatement","src":"68591:78:0"},{"expression":{"arguments":[{"id":3120,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3102,"src":"68694:5:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3119,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"68686:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_uint208_$","typeString":"type(uint208)"},"typeName":{"id":3118,"name":"uint208","nodeType":"ElementaryTypeName","src":"68686:7:0","typeDescriptions":{}}},"id":3121,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"68686:14:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"functionReturnParameters":3106,"id":3122,"nodeType":"Return","src":"68679:21:0"}]},"documentation":{"id":3100,"nodeType":"StructuredDocumentation","src":"68192:318:0","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\n _Available since v4.7._"},"id":3124,"implemented":true,"kind":"function","modifiers":[],"name":"toUint208","nameLocation":"68524:9:0","nodeType":"FunctionDefinition","parameters":{"id":3103,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3102,"mutability":"mutable","name":"value","nameLocation":"68542:5:0","nodeType":"VariableDeclaration","scope":3124,"src":"68534:13:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3101,"name":"uint256","nodeType":"ElementaryTypeName","src":"68534:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"68533:15:0"},"returnParameters":{"id":3106,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3105,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3124,"src":"68572:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"},"typeName":{"id":3104,"name":"uint208","nodeType":"ElementaryTypeName","src":"68572:7:0","typeDescriptions":{"typeIdentifier":"t_uint208","typeString":"uint208"}},"visibility":"internal"}],"src":"68571:9:0"},"scope":4512,"src":"68515:192:0","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":3148,"nodeType":"Block","src":"69102:126:0","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3139,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3133,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3127,"src":"69120:5:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"expression":{"arguments":[{"id":3136,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"69134:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_uint200_$","typeString":"type(uint200)"},"typeName":{"id":3135,"name":"uint200","nodeType":"ElementaryTypeName","src":"69134:7:0","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint200_$","typeString":"type(uint200)"}],"id":3134,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"69129:4:0","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":3137,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"69129:13:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint200","typeString":"type(uint200)"}},"id":3138,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"69143:3:0","memberName":"max","nodeType":"MemberAccess","src":"69129:17:0","typeDescriptions":{"typeIdentifier":"t_uint200","typeString":"uint200"}},"src":"69120:26:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"53616665436173743a2076616c756520646f65736e27742066697420696e203230302062697473","id":3140,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"69148:41:0","typeDescriptions":{"typeIdentifier":"t_stringliteral_df8130f294fe2698967ea9ead82c4da9454490567d976d00551e0174e655314c","typeString":"literal_string \"SafeCast: value doesn't fit in 200 bits\""},"value":"SafeCast: value doesn't fit in 200 bits"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_df8130f294fe2698967ea9ead82c4da9454490567d976d00551e0174e655314c","typeString":"literal_string \"SafeCast: value doesn't fit in 200 bits\""}],"id":3132,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"69112:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":3141,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"69112:78:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3142,"nodeType":"ExpressionStatement","src":"69112:78:0"},{"expression":{"arguments":[{"id":3145,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3127,"src":"69215:5:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3144,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"69207:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_uint200_$","typeString":"type(uint200)"},"typeName":{"id":3143,"name":"uint200","nodeType":"ElementaryTypeName","src":"69207:7:0","typeDescriptions":{}}},"id":3146,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"69207:14:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint200","typeString":"uint200"}},"functionReturnParameters":3131,"id":3147,"nodeType":"Return","src":"69200:21:0"}]},"documentation":{"id":3125,"nodeType":"StructuredDocumentation","src":"68713:318:0","text":" @dev Returns the downcasted uint200 from uint256, reverting on\n overflow (when the input is greater than largest uint200).\n Counterpart to Solidity's `uint200` operator.\n Requirements:\n - input must fit into 200 bits\n _Available since v4.7._"},"id":3149,"implemented":true,"kind":"function","modifiers":[],"name":"toUint200","nameLocation":"69045:9:0","nodeType":"FunctionDefinition","parameters":{"id":3128,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3127,"mutability":"mutable","name":"value","nameLocation":"69063:5:0","nodeType":"VariableDeclaration","scope":3149,"src":"69055:13:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3126,"name":"uint256","nodeType":"ElementaryTypeName","src":"69055:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"69054:15:0"},"returnParameters":{"id":3131,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3130,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3149,"src":"69093:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint200","typeString":"uint200"},"typeName":{"id":3129,"name":"uint200","nodeType":"ElementaryTypeName","src":"69093:7:0","typeDescriptions":{"typeIdentifier":"t_uint200","typeString":"uint200"}},"visibility":"internal"}],"src":"69092:9:0"},"scope":4512,"src":"69036:192:0","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":3173,"nodeType":"Block","src":"69623:126:0","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3164,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3158,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3152,"src":"69641:5:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"expression":{"arguments":[{"id":3161,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"69655:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_uint192_$","typeString":"type(uint192)"},"typeName":{"id":3160,"name":"uint192","nodeType":"ElementaryTypeName","src":"69655:7:0","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint192_$","typeString":"type(uint192)"}],"id":3159,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"69650:4:0","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":3162,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"69650:13:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint192","typeString":"type(uint192)"}},"id":3163,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"69664:3:0","memberName":"max","nodeType":"MemberAccess","src":"69650:17:0","typeDescriptions":{"typeIdentifier":"t_uint192","typeString":"uint192"}},"src":"69641:26:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"53616665436173743a2076616c756520646f65736e27742066697420696e203139322062697473","id":3165,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"69669:41:0","typeDescriptions":{"typeIdentifier":"t_stringliteral_112978800f12a1c4f1eab82789f7b6defd49dc1c17ba270a84ffc28392fb05ae","typeString":"literal_string \"SafeCast: value doesn't fit in 192 bits\""},"value":"SafeCast: value doesn't fit in 192 bits"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_112978800f12a1c4f1eab82789f7b6defd49dc1c17ba270a84ffc28392fb05ae","typeString":"literal_string \"SafeCast: value doesn't fit in 192 bits\""}],"id":3157,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"69633:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":3166,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"69633:78:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3167,"nodeType":"ExpressionStatement","src":"69633:78:0"},{"expression":{"arguments":[{"id":3170,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3152,"src":"69736:5:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3169,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"69728:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_uint192_$","typeString":"type(uint192)"},"typeName":{"id":3168,"name":"uint192","nodeType":"ElementaryTypeName","src":"69728:7:0","typeDescriptions":{}}},"id":3171,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"69728:14:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint192","typeString":"uint192"}},"functionReturnParameters":3156,"id":3172,"nodeType":"Return","src":"69721:21:0"}]},"documentation":{"id":3150,"nodeType":"StructuredDocumentation","src":"69234:318:0","text":" @dev Returns the downcasted uint192 from uint256, reverting on\n overflow (when the input is greater than largest uint192).\n Counterpart to Solidity's `uint192` operator.\n Requirements:\n - input must fit into 192 bits\n _Available since v4.7._"},"id":3174,"implemented":true,"kind":"function","modifiers":[],"name":"toUint192","nameLocation":"69566:9:0","nodeType":"FunctionDefinition","parameters":{"id":3153,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3152,"mutability":"mutable","name":"value","nameLocation":"69584:5:0","nodeType":"VariableDeclaration","scope":3174,"src":"69576:13:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3151,"name":"uint256","nodeType":"ElementaryTypeName","src":"69576:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"69575:15:0"},"returnParameters":{"id":3156,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3155,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3174,"src":"69614:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint192","typeString":"uint192"},"typeName":{"id":3154,"name":"uint192","nodeType":"ElementaryTypeName","src":"69614:7:0","typeDescriptions":{"typeIdentifier":"t_uint192","typeString":"uint192"}},"visibility":"internal"}],"src":"69613:9:0"},"scope":4512,"src":"69557:192:0","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":3198,"nodeType":"Block","src":"70144:126:0","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3189,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3183,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3177,"src":"70162:5:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"expression":{"arguments":[{"id":3186,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"70176:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_uint184_$","typeString":"type(uint184)"},"typeName":{"id":3185,"name":"uint184","nodeType":"ElementaryTypeName","src":"70176:7:0","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint184_$","typeString":"type(uint184)"}],"id":3184,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"70171:4:0","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":3187,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"70171:13:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint184","typeString":"type(uint184)"}},"id":3188,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"70185:3:0","memberName":"max","nodeType":"MemberAccess","src":"70171:17:0","typeDescriptions":{"typeIdentifier":"t_uint184","typeString":"uint184"}},"src":"70162:26:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"53616665436173743a2076616c756520646f65736e27742066697420696e203138342062697473","id":3190,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"70190:41:0","typeDescriptions":{"typeIdentifier":"t_stringliteral_86c53d89b1944d561ecfa42e859033241d1df6ea8d42a57ae02f79d45de4aa75","typeString":"literal_string \"SafeCast: value doesn't fit in 184 bits\""},"value":"SafeCast: value doesn't fit in 184 bits"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_86c53d89b1944d561ecfa42e859033241d1df6ea8d42a57ae02f79d45de4aa75","typeString":"literal_string \"SafeCast: value doesn't fit in 184 bits\""}],"id":3182,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"70154:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":3191,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"70154:78:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3192,"nodeType":"ExpressionStatement","src":"70154:78:0"},{"expression":{"arguments":[{"id":3195,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3177,"src":"70257:5:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3194,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"70249:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_uint184_$","typeString":"type(uint184)"},"typeName":{"id":3193,"name":"uint184","nodeType":"ElementaryTypeName","src":"70249:7:0","typeDescriptions":{}}},"id":3196,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"70249:14:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint184","typeString":"uint184"}},"functionReturnParameters":3181,"id":3197,"nodeType":"Return","src":"70242:21:0"}]},"documentation":{"id":3175,"nodeType":"StructuredDocumentation","src":"69755:318:0","text":" @dev Returns the downcasted uint184 from uint256, reverting on\n overflow (when the input is greater than largest uint184).\n Counterpart to Solidity's `uint184` operator.\n Requirements:\n - input must fit into 184 bits\n _Available since v4.7._"},"id":3199,"implemented":true,"kind":"function","modifiers":[],"name":"toUint184","nameLocation":"70087:9:0","nodeType":"FunctionDefinition","parameters":{"id":3178,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3177,"mutability":"mutable","name":"value","nameLocation":"70105:5:0","nodeType":"VariableDeclaration","scope":3199,"src":"70097:13:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3176,"name":"uint256","nodeType":"ElementaryTypeName","src":"70097:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"70096:15:0"},"returnParameters":{"id":3181,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3180,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3199,"src":"70135:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint184","typeString":"uint184"},"typeName":{"id":3179,"name":"uint184","nodeType":"ElementaryTypeName","src":"70135:7:0","typeDescriptions":{"typeIdentifier":"t_uint184","typeString":"uint184"}},"visibility":"internal"}],"src":"70134:9:0"},"scope":4512,"src":"70078:192:0","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":3223,"nodeType":"Block","src":"70665:126:0","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3214,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3208,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3202,"src":"70683:5:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"expression":{"arguments":[{"id":3211,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"70697:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_uint176_$","typeString":"type(uint176)"},"typeName":{"id":3210,"name":"uint176","nodeType":"ElementaryTypeName","src":"70697:7:0","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint176_$","typeString":"type(uint176)"}],"id":3209,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"70692:4:0","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":3212,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"70692:13:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint176","typeString":"type(uint176)"}},"id":3213,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"70706:3:0","memberName":"max","nodeType":"MemberAccess","src":"70692:17:0","typeDescriptions":{"typeIdentifier":"t_uint176","typeString":"uint176"}},"src":"70683:26:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"53616665436173743a2076616c756520646f65736e27742066697420696e203137362062697473","id":3215,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"70711:41:0","typeDescriptions":{"typeIdentifier":"t_stringliteral_4069e970f734339c7841e84a1b26f503bff22b76884c1168dc24e2e6af9b1e30","typeString":"literal_string \"SafeCast: value doesn't fit in 176 bits\""},"value":"SafeCast: value doesn't fit in 176 bits"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_4069e970f734339c7841e84a1b26f503bff22b76884c1168dc24e2e6af9b1e30","typeString":"literal_string \"SafeCast: value doesn't fit in 176 bits\""}],"id":3207,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"70675:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":3216,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"70675:78:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3217,"nodeType":"ExpressionStatement","src":"70675:78:0"},{"expression":{"arguments":[{"id":3220,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3202,"src":"70778:5:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3219,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"70770:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_uint176_$","typeString":"type(uint176)"},"typeName":{"id":3218,"name":"uint176","nodeType":"ElementaryTypeName","src":"70770:7:0","typeDescriptions":{}}},"id":3221,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"70770:14:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint176","typeString":"uint176"}},"functionReturnParameters":3206,"id":3222,"nodeType":"Return","src":"70763:21:0"}]},"documentation":{"id":3200,"nodeType":"StructuredDocumentation","src":"70276:318:0","text":" @dev Returns the downcasted uint176 from uint256, reverting on\n overflow (when the input is greater than largest uint176).\n Counterpart to Solidity's `uint176` operator.\n Requirements:\n - input must fit into 176 bits\n _Available since v4.7._"},"id":3224,"implemented":true,"kind":"function","modifiers":[],"name":"toUint176","nameLocation":"70608:9:0","nodeType":"FunctionDefinition","parameters":{"id":3203,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3202,"mutability":"mutable","name":"value","nameLocation":"70626:5:0","nodeType":"VariableDeclaration","scope":3224,"src":"70618:13:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3201,"name":"uint256","nodeType":"ElementaryTypeName","src":"70618:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"70617:15:0"},"returnParameters":{"id":3206,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3205,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3224,"src":"70656:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint176","typeString":"uint176"},"typeName":{"id":3204,"name":"uint176","nodeType":"ElementaryTypeName","src":"70656:7:0","typeDescriptions":{"typeIdentifier":"t_uint176","typeString":"uint176"}},"visibility":"internal"}],"src":"70655:9:0"},"scope":4512,"src":"70599:192:0","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":3248,"nodeType":"Block","src":"71186:126:0","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3239,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3233,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3227,"src":"71204:5:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"expression":{"arguments":[{"id":3236,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"71218:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_uint168_$","typeString":"type(uint168)"},"typeName":{"id":3235,"name":"uint168","nodeType":"ElementaryTypeName","src":"71218:7:0","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint168_$","typeString":"type(uint168)"}],"id":3234,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"71213:4:0","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":3237,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"71213:13:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint168","typeString":"type(uint168)"}},"id":3238,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"71227:3:0","memberName":"max","nodeType":"MemberAccess","src":"71213:17:0","typeDescriptions":{"typeIdentifier":"t_uint168","typeString":"uint168"}},"src":"71204:26:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"53616665436173743a2076616c756520646f65736e27742066697420696e203136382062697473","id":3240,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"71232:41:0","typeDescriptions":{"typeIdentifier":"t_stringliteral_67ef32a3cbe7b34392347d335b0a7ae95c74a34ca40e4efb58f6c9a3154e85a1","typeString":"literal_string \"SafeCast: value doesn't fit in 168 bits\""},"value":"SafeCast: value doesn't fit in 168 bits"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_67ef32a3cbe7b34392347d335b0a7ae95c74a34ca40e4efb58f6c9a3154e85a1","typeString":"literal_string \"SafeCast: value doesn't fit in 168 bits\""}],"id":3232,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"71196:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":3241,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"71196:78:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3242,"nodeType":"ExpressionStatement","src":"71196:78:0"},{"expression":{"arguments":[{"id":3245,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3227,"src":"71299:5:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3244,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"71291:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_uint168_$","typeString":"type(uint168)"},"typeName":{"id":3243,"name":"uint168","nodeType":"ElementaryTypeName","src":"71291:7:0","typeDescriptions":{}}},"id":3246,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"71291:14:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint168","typeString":"uint168"}},"functionReturnParameters":3231,"id":3247,"nodeType":"Return","src":"71284:21:0"}]},"documentation":{"id":3225,"nodeType":"StructuredDocumentation","src":"70797:318:0","text":" @dev Returns the downcasted uint168 from uint256, reverting on\n overflow (when the input is greater than largest uint168).\n Counterpart to Solidity's `uint168` operator.\n Requirements:\n - input must fit into 168 bits\n _Available since v4.7._"},"id":3249,"implemented":true,"kind":"function","modifiers":[],"name":"toUint168","nameLocation":"71129:9:0","nodeType":"FunctionDefinition","parameters":{"id":3228,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3227,"mutability":"mutable","name":"value","nameLocation":"71147:5:0","nodeType":"VariableDeclaration","scope":3249,"src":"71139:13:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3226,"name":"uint256","nodeType":"ElementaryTypeName","src":"71139:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"71138:15:0"},"returnParameters":{"id":3231,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3230,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3249,"src":"71177:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint168","typeString":"uint168"},"typeName":{"id":3229,"name":"uint168","nodeType":"ElementaryTypeName","src":"71177:7:0","typeDescriptions":{"typeIdentifier":"t_uint168","typeString":"uint168"}},"visibility":"internal"}],"src":"71176:9:0"},"scope":4512,"src":"71120:192:0","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":3273,"nodeType":"Block","src":"71707:126:0","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3264,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3258,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3252,"src":"71725:5:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"expression":{"arguments":[{"id":3261,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"71739:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_uint160_$","typeString":"type(uint160)"},"typeName":{"id":3260,"name":"uint160","nodeType":"ElementaryTypeName","src":"71739:7:0","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint160_$","typeString":"type(uint160)"}],"id":3259,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"71734:4:0","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":3262,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"71734:13:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint160","typeString":"type(uint160)"}},"id":3263,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"71748:3:0","memberName":"max","nodeType":"MemberAccess","src":"71734:17:0","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}},"src":"71725:26:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"53616665436173743a2076616c756520646f65736e27742066697420696e203136302062697473","id":3265,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"71753:41:0","typeDescriptions":{"typeIdentifier":"t_stringliteral_976ecce9083debfe29d3a99b955facf24b8725f1b964d1a5bb4197ffcd60ab9d","typeString":"literal_string \"SafeCast: value doesn't fit in 160 bits\""},"value":"SafeCast: value doesn't fit in 160 bits"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_976ecce9083debfe29d3a99b955facf24b8725f1b964d1a5bb4197ffcd60ab9d","typeString":"literal_string \"SafeCast: value doesn't fit in 160 bits\""}],"id":3257,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"71717:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":3266,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"71717:78:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3267,"nodeType":"ExpressionStatement","src":"71717:78:0"},{"expression":{"arguments":[{"id":3270,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3252,"src":"71820:5:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3269,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"71812:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_uint160_$","typeString":"type(uint160)"},"typeName":{"id":3268,"name":"uint160","nodeType":"ElementaryTypeName","src":"71812:7:0","typeDescriptions":{}}},"id":3271,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"71812:14:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}},"functionReturnParameters":3256,"id":3272,"nodeType":"Return","src":"71805:21:0"}]},"documentation":{"id":3250,"nodeType":"StructuredDocumentation","src":"71318:318:0","text":" @dev Returns the downcasted uint160 from uint256, reverting on\n overflow (when the input is greater than largest uint160).\n Counterpart to Solidity's `uint160` operator.\n Requirements:\n - input must fit into 160 bits\n _Available since v4.7._"},"id":3274,"implemented":true,"kind":"function","modifiers":[],"name":"toUint160","nameLocation":"71650:9:0","nodeType":"FunctionDefinition","parameters":{"id":3253,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3252,"mutability":"mutable","name":"value","nameLocation":"71668:5:0","nodeType":"VariableDeclaration","scope":3274,"src":"71660:13:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3251,"name":"uint256","nodeType":"ElementaryTypeName","src":"71660:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"71659:15:0"},"returnParameters":{"id":3256,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3255,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3274,"src":"71698:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"},"typeName":{"id":3254,"name":"uint160","nodeType":"ElementaryTypeName","src":"71698:7:0","typeDescriptions":{"typeIdentifier":"t_uint160","typeString":"uint160"}},"visibility":"internal"}],"src":"71697:9:0"},"scope":4512,"src":"71641:192:0","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":3298,"nodeType":"Block","src":"72228:126:0","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3289,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3283,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3277,"src":"72246:5:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"expression":{"arguments":[{"id":3286,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"72260:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_uint152_$","typeString":"type(uint152)"},"typeName":{"id":3285,"name":"uint152","nodeType":"ElementaryTypeName","src":"72260:7:0","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint152_$","typeString":"type(uint152)"}],"id":3284,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"72255:4:0","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":3287,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"72255:13:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint152","typeString":"type(uint152)"}},"id":3288,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"72269:3:0","memberName":"max","nodeType":"MemberAccess","src":"72255:17:0","typeDescriptions":{"typeIdentifier":"t_uint152","typeString":"uint152"}},"src":"72246:26:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"53616665436173743a2076616c756520646f65736e27742066697420696e203135322062697473","id":3290,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"72274:41:0","typeDescriptions":{"typeIdentifier":"t_stringliteral_211cad43a2caf5f01e34af51190b8a7b6f3d9c195bd25586ea12242191b97831","typeString":"literal_string \"SafeCast: value doesn't fit in 152 bits\""},"value":"SafeCast: value doesn't fit in 152 bits"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_211cad43a2caf5f01e34af51190b8a7b6f3d9c195bd25586ea12242191b97831","typeString":"literal_string \"SafeCast: value doesn't fit in 152 bits\""}],"id":3282,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"72238:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":3291,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"72238:78:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3292,"nodeType":"ExpressionStatement","src":"72238:78:0"},{"expression":{"arguments":[{"id":3295,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3277,"src":"72341:5:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3294,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"72333:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_uint152_$","typeString":"type(uint152)"},"typeName":{"id":3293,"name":"uint152","nodeType":"ElementaryTypeName","src":"72333:7:0","typeDescriptions":{}}},"id":3296,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"72333:14:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint152","typeString":"uint152"}},"functionReturnParameters":3281,"id":3297,"nodeType":"Return","src":"72326:21:0"}]},"documentation":{"id":3275,"nodeType":"StructuredDocumentation","src":"71839:318:0","text":" @dev Returns the downcasted uint152 from uint256, reverting on\n overflow (when the input is greater than largest uint152).\n Counterpart to Solidity's `uint152` operator.\n Requirements:\n - input must fit into 152 bits\n _Available since v4.7._"},"id":3299,"implemented":true,"kind":"function","modifiers":[],"name":"toUint152","nameLocation":"72171:9:0","nodeType":"FunctionDefinition","parameters":{"id":3278,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3277,"mutability":"mutable","name":"value","nameLocation":"72189:5:0","nodeType":"VariableDeclaration","scope":3299,"src":"72181:13:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3276,"name":"uint256","nodeType":"ElementaryTypeName","src":"72181:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"72180:15:0"},"returnParameters":{"id":3281,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3280,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3299,"src":"72219:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint152","typeString":"uint152"},"typeName":{"id":3279,"name":"uint152","nodeType":"ElementaryTypeName","src":"72219:7:0","typeDescriptions":{"typeIdentifier":"t_uint152","typeString":"uint152"}},"visibility":"internal"}],"src":"72218:9:0"},"scope":4512,"src":"72162:192:0","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":3323,"nodeType":"Block","src":"72749:126:0","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3314,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3308,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3302,"src":"72767:5:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"expression":{"arguments":[{"id":3311,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"72781:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_uint144_$","typeString":"type(uint144)"},"typeName":{"id":3310,"name":"uint144","nodeType":"ElementaryTypeName","src":"72781:7:0","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint144_$","typeString":"type(uint144)"}],"id":3309,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"72776:4:0","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":3312,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"72776:13:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint144","typeString":"type(uint144)"}},"id":3313,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"72790:3:0","memberName":"max","nodeType":"MemberAccess","src":"72776:17:0","typeDescriptions":{"typeIdentifier":"t_uint144","typeString":"uint144"}},"src":"72767:26:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"53616665436173743a2076616c756520646f65736e27742066697420696e203134342062697473","id":3315,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"72795:41:0","typeDescriptions":{"typeIdentifier":"t_stringliteral_17d8c5a6d3b2fd2517ba2e4a2ac70a3367cd362448f8338aaa6edf8bfd812bab","typeString":"literal_string \"SafeCast: value doesn't fit in 144 bits\""},"value":"SafeCast: value doesn't fit in 144 bits"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_17d8c5a6d3b2fd2517ba2e4a2ac70a3367cd362448f8338aaa6edf8bfd812bab","typeString":"literal_string \"SafeCast: value doesn't fit in 144 bits\""}],"id":3307,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"72759:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":3316,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"72759:78:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3317,"nodeType":"ExpressionStatement","src":"72759:78:0"},{"expression":{"arguments":[{"id":3320,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3302,"src":"72862:5:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3319,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"72854:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_uint144_$","typeString":"type(uint144)"},"typeName":{"id":3318,"name":"uint144","nodeType":"ElementaryTypeName","src":"72854:7:0","typeDescriptions":{}}},"id":3321,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"72854:14:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint144","typeString":"uint144"}},"functionReturnParameters":3306,"id":3322,"nodeType":"Return","src":"72847:21:0"}]},"documentation":{"id":3300,"nodeType":"StructuredDocumentation","src":"72360:318:0","text":" @dev Returns the downcasted uint144 from uint256, reverting on\n overflow (when the input is greater than largest uint144).\n Counterpart to Solidity's `uint144` operator.\n Requirements:\n - input must fit into 144 bits\n _Available since v4.7._"},"id":3324,"implemented":true,"kind":"function","modifiers":[],"name":"toUint144","nameLocation":"72692:9:0","nodeType":"FunctionDefinition","parameters":{"id":3303,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3302,"mutability":"mutable","name":"value","nameLocation":"72710:5:0","nodeType":"VariableDeclaration","scope":3324,"src":"72702:13:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3301,"name":"uint256","nodeType":"ElementaryTypeName","src":"72702:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"72701:15:0"},"returnParameters":{"id":3306,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3305,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3324,"src":"72740:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint144","typeString":"uint144"},"typeName":{"id":3304,"name":"uint144","nodeType":"ElementaryTypeName","src":"72740:7:0","typeDescriptions":{"typeIdentifier":"t_uint144","typeString":"uint144"}},"visibility":"internal"}],"src":"72739:9:0"},"scope":4512,"src":"72683:192:0","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":3348,"nodeType":"Block","src":"73270:126:0","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3339,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3333,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3327,"src":"73288:5:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"expression":{"arguments":[{"id":3336,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"73302:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_uint136_$","typeString":"type(uint136)"},"typeName":{"id":3335,"name":"uint136","nodeType":"ElementaryTypeName","src":"73302:7:0","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint136_$","typeString":"type(uint136)"}],"id":3334,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"73297:4:0","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":3337,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"73297:13:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint136","typeString":"type(uint136)"}},"id":3338,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"73311:3:0","memberName":"max","nodeType":"MemberAccess","src":"73297:17:0","typeDescriptions":{"typeIdentifier":"t_uint136","typeString":"uint136"}},"src":"73288:26:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"53616665436173743a2076616c756520646f65736e27742066697420696e203133362062697473","id":3340,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"73316:41:0","typeDescriptions":{"typeIdentifier":"t_stringliteral_8b1f81e2e2913e1cee9dba7bcd9837bbf8a8122edaac4afc578271db3c25a56a","typeString":"literal_string \"SafeCast: value doesn't fit in 136 bits\""},"value":"SafeCast: value doesn't fit in 136 bits"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_8b1f81e2e2913e1cee9dba7bcd9837bbf8a8122edaac4afc578271db3c25a56a","typeString":"literal_string \"SafeCast: value doesn't fit in 136 bits\""}],"id":3332,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"73280:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":3341,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"73280:78:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3342,"nodeType":"ExpressionStatement","src":"73280:78:0"},{"expression":{"arguments":[{"id":3345,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3327,"src":"73383:5:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3344,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"73375:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_uint136_$","typeString":"type(uint136)"},"typeName":{"id":3343,"name":"uint136","nodeType":"ElementaryTypeName","src":"73375:7:0","typeDescriptions":{}}},"id":3346,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"73375:14:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint136","typeString":"uint136"}},"functionReturnParameters":3331,"id":3347,"nodeType":"Return","src":"73368:21:0"}]},"documentation":{"id":3325,"nodeType":"StructuredDocumentation","src":"72881:318:0","text":" @dev Returns the downcasted uint136 from uint256, reverting on\n overflow (when the input is greater than largest uint136).\n Counterpart to Solidity's `uint136` operator.\n Requirements:\n - input must fit into 136 bits\n _Available since v4.7._"},"id":3349,"implemented":true,"kind":"function","modifiers":[],"name":"toUint136","nameLocation":"73213:9:0","nodeType":"FunctionDefinition","parameters":{"id":3328,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3327,"mutability":"mutable","name":"value","nameLocation":"73231:5:0","nodeType":"VariableDeclaration","scope":3349,"src":"73223:13:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3326,"name":"uint256","nodeType":"ElementaryTypeName","src":"73223:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"73222:15:0"},"returnParameters":{"id":3331,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3330,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3349,"src":"73261:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint136","typeString":"uint136"},"typeName":{"id":3329,"name":"uint136","nodeType":"ElementaryTypeName","src":"73261:7:0","typeDescriptions":{"typeIdentifier":"t_uint136","typeString":"uint136"}},"visibility":"internal"}],"src":"73260:9:0"},"scope":4512,"src":"73204:192:0","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":3373,"nodeType":"Block","src":"73791:126:0","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3364,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3358,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3352,"src":"73809:5:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"expression":{"arguments":[{"id":3361,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"73823:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_uint128_$","typeString":"type(uint128)"},"typeName":{"id":3360,"name":"uint128","nodeType":"ElementaryTypeName","src":"73823:7:0","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint128_$","typeString":"type(uint128)"}],"id":3359,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"73818:4:0","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":3362,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"73818:13:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint128","typeString":"type(uint128)"}},"id":3363,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"73832:3:0","memberName":"max","nodeType":"MemberAccess","src":"73818:17:0","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"src":"73809:26:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"53616665436173743a2076616c756520646f65736e27742066697420696e203132382062697473","id":3365,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"73837:41:0","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":3357,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"73801:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":3366,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"73801:78:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3367,"nodeType":"ExpressionStatement","src":"73801:78:0"},{"expression":{"arguments":[{"id":3370,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3352,"src":"73904:5:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3369,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"73896:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_uint128_$","typeString":"type(uint128)"},"typeName":{"id":3368,"name":"uint128","nodeType":"ElementaryTypeName","src":"73896:7:0","typeDescriptions":{}}},"id":3371,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"73896:14:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"functionReturnParameters":3356,"id":3372,"nodeType":"Return","src":"73889:21:0"}]},"documentation":{"id":3350,"nodeType":"StructuredDocumentation","src":"73402:318:0","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\n _Available since v2.5._"},"id":3374,"implemented":true,"kind":"function","modifiers":[],"name":"toUint128","nameLocation":"73734:9:0","nodeType":"FunctionDefinition","parameters":{"id":3353,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3352,"mutability":"mutable","name":"value","nameLocation":"73752:5:0","nodeType":"VariableDeclaration","scope":3374,"src":"73744:13:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3351,"name":"uint256","nodeType":"ElementaryTypeName","src":"73744:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"73743:15:0"},"returnParameters":{"id":3356,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3355,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3374,"src":"73782:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"},"typeName":{"id":3354,"name":"uint128","nodeType":"ElementaryTypeName","src":"73782:7:0","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"visibility":"internal"}],"src":"73781:9:0"},"scope":4512,"src":"73725:192:0","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":3398,"nodeType":"Block","src":"74312:126:0","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3389,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3383,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3377,"src":"74330:5:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"expression":{"arguments":[{"id":3386,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"74344:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_uint120_$","typeString":"type(uint120)"},"typeName":{"id":3385,"name":"uint120","nodeType":"ElementaryTypeName","src":"74344:7:0","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint120_$","typeString":"type(uint120)"}],"id":3384,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"74339:4:0","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":3387,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"74339:13:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint120","typeString":"type(uint120)"}},"id":3388,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"74353:3:0","memberName":"max","nodeType":"MemberAccess","src":"74339:17:0","typeDescriptions":{"typeIdentifier":"t_uint120","typeString":"uint120"}},"src":"74330:26:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"53616665436173743a2076616c756520646f65736e27742066697420696e203132302062697473","id":3390,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"74358:41:0","typeDescriptions":{"typeIdentifier":"t_stringliteral_3c40c26bb27060cce77002ca0c426dcc1bef2d367c195ca2eb24bd8b2cc1bb09","typeString":"literal_string \"SafeCast: value doesn't fit in 120 bits\""},"value":"SafeCast: value doesn't fit in 120 bits"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_3c40c26bb27060cce77002ca0c426dcc1bef2d367c195ca2eb24bd8b2cc1bb09","typeString":"literal_string \"SafeCast: value doesn't fit in 120 bits\""}],"id":3382,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"74322:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":3391,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"74322:78:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3392,"nodeType":"ExpressionStatement","src":"74322:78:0"},{"expression":{"arguments":[{"id":3395,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3377,"src":"74425:5:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3394,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"74417:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_uint120_$","typeString":"type(uint120)"},"typeName":{"id":3393,"name":"uint120","nodeType":"ElementaryTypeName","src":"74417:7:0","typeDescriptions":{}}},"id":3396,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"74417:14:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint120","typeString":"uint120"}},"functionReturnParameters":3381,"id":3397,"nodeType":"Return","src":"74410:21:0"}]},"documentation":{"id":3375,"nodeType":"StructuredDocumentation","src":"73923:318:0","text":" @dev Returns the downcasted uint120 from uint256, reverting on\n overflow (when the input is greater than largest uint120).\n Counterpart to Solidity's `uint120` operator.\n Requirements:\n - input must fit into 120 bits\n _Available since v4.7._"},"id":3399,"implemented":true,"kind":"function","modifiers":[],"name":"toUint120","nameLocation":"74255:9:0","nodeType":"FunctionDefinition","parameters":{"id":3378,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3377,"mutability":"mutable","name":"value","nameLocation":"74273:5:0","nodeType":"VariableDeclaration","scope":3399,"src":"74265:13:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3376,"name":"uint256","nodeType":"ElementaryTypeName","src":"74265:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"74264:15:0"},"returnParameters":{"id":3381,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3380,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3399,"src":"74303:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint120","typeString":"uint120"},"typeName":{"id":3379,"name":"uint120","nodeType":"ElementaryTypeName","src":"74303:7:0","typeDescriptions":{"typeIdentifier":"t_uint120","typeString":"uint120"}},"visibility":"internal"}],"src":"74302:9:0"},"scope":4512,"src":"74246:192:0","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":3423,"nodeType":"Block","src":"74833:126:0","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3414,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3408,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3402,"src":"74851:5:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"expression":{"arguments":[{"id":3411,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"74865:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_uint112_$","typeString":"type(uint112)"},"typeName":{"id":3410,"name":"uint112","nodeType":"ElementaryTypeName","src":"74865:7:0","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint112_$","typeString":"type(uint112)"}],"id":3409,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"74860:4:0","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":3412,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"74860:13:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint112","typeString":"type(uint112)"}},"id":3413,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"74874:3:0","memberName":"max","nodeType":"MemberAccess","src":"74860:17:0","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}},"src":"74851:26:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"53616665436173743a2076616c756520646f65736e27742066697420696e203131322062697473","id":3415,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"74879:41:0","typeDescriptions":{"typeIdentifier":"t_stringliteral_45659ae152ef697531e1c1115de07c87af91ac22466c3e76b808821799776efd","typeString":"literal_string \"SafeCast: value doesn't fit in 112 bits\""},"value":"SafeCast: value doesn't fit in 112 bits"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_45659ae152ef697531e1c1115de07c87af91ac22466c3e76b808821799776efd","typeString":"literal_string \"SafeCast: value doesn't fit in 112 bits\""}],"id":3407,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"74843:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":3416,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"74843:78:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3417,"nodeType":"ExpressionStatement","src":"74843:78:0"},{"expression":{"arguments":[{"id":3420,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3402,"src":"74946:5:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3419,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"74938:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_uint112_$","typeString":"type(uint112)"},"typeName":{"id":3418,"name":"uint112","nodeType":"ElementaryTypeName","src":"74938:7:0","typeDescriptions":{}}},"id":3421,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"74938:14:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}},"functionReturnParameters":3406,"id":3422,"nodeType":"Return","src":"74931:21:0"}]},"documentation":{"id":3400,"nodeType":"StructuredDocumentation","src":"74444:318:0","text":" @dev Returns the downcasted uint112 from uint256, reverting on\n overflow (when the input is greater than largest uint112).\n Counterpart to Solidity's `uint112` operator.\n Requirements:\n - input must fit into 112 bits\n _Available since v4.7._"},"id":3424,"implemented":true,"kind":"function","modifiers":[],"name":"toUint112","nameLocation":"74776:9:0","nodeType":"FunctionDefinition","parameters":{"id":3403,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3402,"mutability":"mutable","name":"value","nameLocation":"74794:5:0","nodeType":"VariableDeclaration","scope":3424,"src":"74786:13:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3401,"name":"uint256","nodeType":"ElementaryTypeName","src":"74786:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"74785:15:0"},"returnParameters":{"id":3406,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3405,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3424,"src":"74824:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"},"typeName":{"id":3404,"name":"uint112","nodeType":"ElementaryTypeName","src":"74824:7:0","typeDescriptions":{"typeIdentifier":"t_uint112","typeString":"uint112"}},"visibility":"internal"}],"src":"74823:9:0"},"scope":4512,"src":"74767:192:0","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":3448,"nodeType":"Block","src":"75354:126:0","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3439,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3433,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3427,"src":"75372:5:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"expression":{"arguments":[{"id":3436,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"75386:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_uint104_$","typeString":"type(uint104)"},"typeName":{"id":3435,"name":"uint104","nodeType":"ElementaryTypeName","src":"75386:7:0","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint104_$","typeString":"type(uint104)"}],"id":3434,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"75381:4:0","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":3437,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"75381:13:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint104","typeString":"type(uint104)"}},"id":3438,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"75395:3:0","memberName":"max","nodeType":"MemberAccess","src":"75381:17:0","typeDescriptions":{"typeIdentifier":"t_uint104","typeString":"uint104"}},"src":"75372:26:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"53616665436173743a2076616c756520646f65736e27742066697420696e203130342062697473","id":3440,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"75400:41:0","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":3432,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"75364:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":3441,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"75364:78:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3442,"nodeType":"ExpressionStatement","src":"75364:78:0"},{"expression":{"arguments":[{"id":3445,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3427,"src":"75467:5:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3444,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"75459:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_uint104_$","typeString":"type(uint104)"},"typeName":{"id":3443,"name":"uint104","nodeType":"ElementaryTypeName","src":"75459:7:0","typeDescriptions":{}}},"id":3446,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"75459:14:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint104","typeString":"uint104"}},"functionReturnParameters":3431,"id":3447,"nodeType":"Return","src":"75452:21:0"}]},"documentation":{"id":3425,"nodeType":"StructuredDocumentation","src":"74965:318:0","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\n _Available since v4.7._"},"id":3449,"implemented":true,"kind":"function","modifiers":[],"name":"toUint104","nameLocation":"75297:9:0","nodeType":"FunctionDefinition","parameters":{"id":3428,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3427,"mutability":"mutable","name":"value","nameLocation":"75315:5:0","nodeType":"VariableDeclaration","scope":3449,"src":"75307:13:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3426,"name":"uint256","nodeType":"ElementaryTypeName","src":"75307:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"75306:15:0"},"returnParameters":{"id":3431,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3430,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3449,"src":"75345:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint104","typeString":"uint104"},"typeName":{"id":3429,"name":"uint104","nodeType":"ElementaryTypeName","src":"75345:7:0","typeDescriptions":{"typeIdentifier":"t_uint104","typeString":"uint104"}},"visibility":"internal"}],"src":"75344:9:0"},"scope":4512,"src":"75288:192:0","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":3473,"nodeType":"Block","src":"75869:123:0","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3464,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3458,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3452,"src":"75887:5:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"expression":{"arguments":[{"id":3461,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"75901:6:0","typeDescriptions":{"typeIdentifier":"t_type$_t_uint96_$","typeString":"type(uint96)"},"typeName":{"id":3460,"name":"uint96","nodeType":"ElementaryTypeName","src":"75901:6:0","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint96_$","typeString":"type(uint96)"}],"id":3459,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"75896:4:0","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":3462,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"75896:12:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint96","typeString":"type(uint96)"}},"id":3463,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"75909:3:0","memberName":"max","nodeType":"MemberAccess","src":"75896:16:0","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"src":"75887:25:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"53616665436173743a2076616c756520646f65736e27742066697420696e2039362062697473","id":3465,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"75914:40:0","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":3457,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"75879:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":3466,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"75879:76:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3467,"nodeType":"ExpressionStatement","src":"75879:76:0"},{"expression":{"arguments":[{"id":3470,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3452,"src":"75979:5:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3469,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"75972:6:0","typeDescriptions":{"typeIdentifier":"t_type$_t_uint96_$","typeString":"type(uint96)"},"typeName":{"id":3468,"name":"uint96","nodeType":"ElementaryTypeName","src":"75972:6:0","typeDescriptions":{}}},"id":3471,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"75972:13:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"functionReturnParameters":3456,"id":3472,"nodeType":"Return","src":"75965:20:0"}]},"documentation":{"id":3450,"nodeType":"StructuredDocumentation","src":"75486:314:0","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\n _Available since v4.2._"},"id":3474,"implemented":true,"kind":"function","modifiers":[],"name":"toUint96","nameLocation":"75814:8:0","nodeType":"FunctionDefinition","parameters":{"id":3453,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3452,"mutability":"mutable","name":"value","nameLocation":"75831:5:0","nodeType":"VariableDeclaration","scope":3474,"src":"75823:13:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3451,"name":"uint256","nodeType":"ElementaryTypeName","src":"75823:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"75822:15:0"},"returnParameters":{"id":3456,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3455,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3474,"src":"75861:6:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"},"typeName":{"id":3454,"name":"uint96","nodeType":"ElementaryTypeName","src":"75861:6:0","typeDescriptions":{"typeIdentifier":"t_uint96","typeString":"uint96"}},"visibility":"internal"}],"src":"75860:8:0"},"scope":4512,"src":"75805:187:0","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":3498,"nodeType":"Block","src":"76381:123:0","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3489,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3483,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3477,"src":"76399:5:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"expression":{"arguments":[{"id":3486,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"76413:6:0","typeDescriptions":{"typeIdentifier":"t_type$_t_uint88_$","typeString":"type(uint88)"},"typeName":{"id":3485,"name":"uint88","nodeType":"ElementaryTypeName","src":"76413:6:0","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint88_$","typeString":"type(uint88)"}],"id":3484,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"76408:4:0","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":3487,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"76408:12:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint88","typeString":"type(uint88)"}},"id":3488,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"76421:3:0","memberName":"max","nodeType":"MemberAccess","src":"76408:16:0","typeDescriptions":{"typeIdentifier":"t_uint88","typeString":"uint88"}},"src":"76399:25:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"53616665436173743a2076616c756520646f65736e27742066697420696e2038382062697473","id":3490,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"76426:40:0","typeDescriptions":{"typeIdentifier":"t_stringliteral_ae080bd7a76a46f0a0caf00941bc2cdf6002799ca2813a3af7295019576d715d","typeString":"literal_string \"SafeCast: value doesn't fit in 88 bits\""},"value":"SafeCast: value doesn't fit in 88 bits"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_ae080bd7a76a46f0a0caf00941bc2cdf6002799ca2813a3af7295019576d715d","typeString":"literal_string \"SafeCast: value doesn't fit in 88 bits\""}],"id":3482,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"76391:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":3491,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"76391:76:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3492,"nodeType":"ExpressionStatement","src":"76391:76:0"},{"expression":{"arguments":[{"id":3495,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3477,"src":"76491:5:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3494,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"76484:6:0","typeDescriptions":{"typeIdentifier":"t_type$_t_uint88_$","typeString":"type(uint88)"},"typeName":{"id":3493,"name":"uint88","nodeType":"ElementaryTypeName","src":"76484:6:0","typeDescriptions":{}}},"id":3496,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"76484:13:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint88","typeString":"uint88"}},"functionReturnParameters":3481,"id":3497,"nodeType":"Return","src":"76477:20:0"}]},"documentation":{"id":3475,"nodeType":"StructuredDocumentation","src":"75998:314:0","text":" @dev Returns the downcasted uint88 from uint256, reverting on\n overflow (when the input is greater than largest uint88).\n Counterpart to Solidity's `uint88` operator.\n Requirements:\n - input must fit into 88 bits\n _Available since v4.7._"},"id":3499,"implemented":true,"kind":"function","modifiers":[],"name":"toUint88","nameLocation":"76326:8:0","nodeType":"FunctionDefinition","parameters":{"id":3478,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3477,"mutability":"mutable","name":"value","nameLocation":"76343:5:0","nodeType":"VariableDeclaration","scope":3499,"src":"76335:13:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3476,"name":"uint256","nodeType":"ElementaryTypeName","src":"76335:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"76334:15:0"},"returnParameters":{"id":3481,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3480,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3499,"src":"76373:6:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint88","typeString":"uint88"},"typeName":{"id":3479,"name":"uint88","nodeType":"ElementaryTypeName","src":"76373:6:0","typeDescriptions":{"typeIdentifier":"t_uint88","typeString":"uint88"}},"visibility":"internal"}],"src":"76372:8:0"},"scope":4512,"src":"76317:187:0","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":3523,"nodeType":"Block","src":"76893:123:0","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3514,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3508,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3502,"src":"76911:5:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"expression":{"arguments":[{"id":3511,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"76925:6:0","typeDescriptions":{"typeIdentifier":"t_type$_t_uint80_$","typeString":"type(uint80)"},"typeName":{"id":3510,"name":"uint80","nodeType":"ElementaryTypeName","src":"76925:6:0","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint80_$","typeString":"type(uint80)"}],"id":3509,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"76920:4:0","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":3512,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"76920:12:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint80","typeString":"type(uint80)"}},"id":3513,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"76933:3:0","memberName":"max","nodeType":"MemberAccess","src":"76920:16:0","typeDescriptions":{"typeIdentifier":"t_uint80","typeString":"uint80"}},"src":"76911:25:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"53616665436173743a2076616c756520646f65736e27742066697420696e2038302062697473","id":3515,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"76938:40:0","typeDescriptions":{"typeIdentifier":"t_stringliteral_3cba87c71fade7d3cd7b673c159aab98afc040a5369691a33559d905d20ab5d1","typeString":"literal_string \"SafeCast: value doesn't fit in 80 bits\""},"value":"SafeCast: value doesn't fit in 80 bits"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_3cba87c71fade7d3cd7b673c159aab98afc040a5369691a33559d905d20ab5d1","typeString":"literal_string \"SafeCast: value doesn't fit in 80 bits\""}],"id":3507,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"76903:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":3516,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"76903:76:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3517,"nodeType":"ExpressionStatement","src":"76903:76:0"},{"expression":{"arguments":[{"id":3520,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3502,"src":"77003:5:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3519,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"76996:6:0","typeDescriptions":{"typeIdentifier":"t_type$_t_uint80_$","typeString":"type(uint80)"},"typeName":{"id":3518,"name":"uint80","nodeType":"ElementaryTypeName","src":"76996:6:0","typeDescriptions":{}}},"id":3521,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"76996:13:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint80","typeString":"uint80"}},"functionReturnParameters":3506,"id":3522,"nodeType":"Return","src":"76989:20:0"}]},"documentation":{"id":3500,"nodeType":"StructuredDocumentation","src":"76510:314:0","text":" @dev Returns the downcasted uint80 from uint256, reverting on\n overflow (when the input is greater than largest uint80).\n Counterpart to Solidity's `uint80` operator.\n Requirements:\n - input must fit into 80 bits\n _Available since v4.7._"},"id":3524,"implemented":true,"kind":"function","modifiers":[],"name":"toUint80","nameLocation":"76838:8:0","nodeType":"FunctionDefinition","parameters":{"id":3503,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3502,"mutability":"mutable","name":"value","nameLocation":"76855:5:0","nodeType":"VariableDeclaration","scope":3524,"src":"76847:13:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3501,"name":"uint256","nodeType":"ElementaryTypeName","src":"76847:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"76846:15:0"},"returnParameters":{"id":3506,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3505,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3524,"src":"76885:6:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint80","typeString":"uint80"},"typeName":{"id":3504,"name":"uint80","nodeType":"ElementaryTypeName","src":"76885:6:0","typeDescriptions":{"typeIdentifier":"t_uint80","typeString":"uint80"}},"visibility":"internal"}],"src":"76884:8:0"},"scope":4512,"src":"76829:187:0","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":3548,"nodeType":"Block","src":"77405:123:0","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3539,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3533,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3527,"src":"77423:5:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"expression":{"arguments":[{"id":3536,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"77437:6:0","typeDescriptions":{"typeIdentifier":"t_type$_t_uint72_$","typeString":"type(uint72)"},"typeName":{"id":3535,"name":"uint72","nodeType":"ElementaryTypeName","src":"77437:6:0","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint72_$","typeString":"type(uint72)"}],"id":3534,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"77432:4:0","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":3537,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"77432:12:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint72","typeString":"type(uint72)"}},"id":3538,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"77445:3:0","memberName":"max","nodeType":"MemberAccess","src":"77432:16:0","typeDescriptions":{"typeIdentifier":"t_uint72","typeString":"uint72"}},"src":"77423:25:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"53616665436173743a2076616c756520646f65736e27742066697420696e2037322062697473","id":3540,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"77450:40:0","typeDescriptions":{"typeIdentifier":"t_stringliteral_71584237cc5250b8f417982144a947efe8f4c76feba008ff32ac480e69d60606","typeString":"literal_string \"SafeCast: value doesn't fit in 72 bits\""},"value":"SafeCast: value doesn't fit in 72 bits"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_71584237cc5250b8f417982144a947efe8f4c76feba008ff32ac480e69d60606","typeString":"literal_string \"SafeCast: value doesn't fit in 72 bits\""}],"id":3532,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"77415:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":3541,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"77415:76:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3542,"nodeType":"ExpressionStatement","src":"77415:76:0"},{"expression":{"arguments":[{"id":3545,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3527,"src":"77515:5:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3544,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"77508:6:0","typeDescriptions":{"typeIdentifier":"t_type$_t_uint72_$","typeString":"type(uint72)"},"typeName":{"id":3543,"name":"uint72","nodeType":"ElementaryTypeName","src":"77508:6:0","typeDescriptions":{}}},"id":3546,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"77508:13:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint72","typeString":"uint72"}},"functionReturnParameters":3531,"id":3547,"nodeType":"Return","src":"77501:20:0"}]},"documentation":{"id":3525,"nodeType":"StructuredDocumentation","src":"77022:314:0","text":" @dev Returns the downcasted uint72 from uint256, reverting on\n overflow (when the input is greater than largest uint72).\n Counterpart to Solidity's `uint72` operator.\n Requirements:\n - input must fit into 72 bits\n _Available since v4.7._"},"id":3549,"implemented":true,"kind":"function","modifiers":[],"name":"toUint72","nameLocation":"77350:8:0","nodeType":"FunctionDefinition","parameters":{"id":3528,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3527,"mutability":"mutable","name":"value","nameLocation":"77367:5:0","nodeType":"VariableDeclaration","scope":3549,"src":"77359:13:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3526,"name":"uint256","nodeType":"ElementaryTypeName","src":"77359:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"77358:15:0"},"returnParameters":{"id":3531,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3530,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3549,"src":"77397:6:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint72","typeString":"uint72"},"typeName":{"id":3529,"name":"uint72","nodeType":"ElementaryTypeName","src":"77397:6:0","typeDescriptions":{"typeIdentifier":"t_uint72","typeString":"uint72"}},"visibility":"internal"}],"src":"77396:8:0"},"scope":4512,"src":"77341:187:0","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":3573,"nodeType":"Block","src":"77917:123:0","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3564,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3558,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3552,"src":"77935:5:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"expression":{"arguments":[{"id":3561,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"77949:6:0","typeDescriptions":{"typeIdentifier":"t_type$_t_uint64_$","typeString":"type(uint64)"},"typeName":{"id":3560,"name":"uint64","nodeType":"ElementaryTypeName","src":"77949:6:0","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint64_$","typeString":"type(uint64)"}],"id":3559,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"77944:4:0","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":3562,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"77944:12:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint64","typeString":"type(uint64)"}},"id":3563,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"77957:3:0","memberName":"max","nodeType":"MemberAccess","src":"77944:16:0","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"src":"77935:25:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"53616665436173743a2076616c756520646f65736e27742066697420696e2036342062697473","id":3565,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"77962:40:0","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":3557,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"77927:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":3566,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"77927:76:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3567,"nodeType":"ExpressionStatement","src":"77927:76:0"},{"expression":{"arguments":[{"id":3570,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3552,"src":"78027:5:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3569,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"78020:6:0","typeDescriptions":{"typeIdentifier":"t_type$_t_uint64_$","typeString":"type(uint64)"},"typeName":{"id":3568,"name":"uint64","nodeType":"ElementaryTypeName","src":"78020:6:0","typeDescriptions":{}}},"id":3571,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"78020:13:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"functionReturnParameters":3556,"id":3572,"nodeType":"Return","src":"78013:20:0"}]},"documentation":{"id":3550,"nodeType":"StructuredDocumentation","src":"77534:314:0","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\n _Available since v2.5._"},"id":3574,"implemented":true,"kind":"function","modifiers":[],"name":"toUint64","nameLocation":"77862:8:0","nodeType":"FunctionDefinition","parameters":{"id":3553,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3552,"mutability":"mutable","name":"value","nameLocation":"77879:5:0","nodeType":"VariableDeclaration","scope":3574,"src":"77871:13:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3551,"name":"uint256","nodeType":"ElementaryTypeName","src":"77871:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"77870:15:0"},"returnParameters":{"id":3556,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3555,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3574,"src":"77909:6:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"},"typeName":{"id":3554,"name":"uint64","nodeType":"ElementaryTypeName","src":"77909:6:0","typeDescriptions":{"typeIdentifier":"t_uint64","typeString":"uint64"}},"visibility":"internal"}],"src":"77908:8:0"},"scope":4512,"src":"77853:187:0","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":3598,"nodeType":"Block","src":"78429:123:0","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3589,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3583,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3577,"src":"78447:5:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"expression":{"arguments":[{"id":3586,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"78461:6:0","typeDescriptions":{"typeIdentifier":"t_type$_t_uint56_$","typeString":"type(uint56)"},"typeName":{"id":3585,"name":"uint56","nodeType":"ElementaryTypeName","src":"78461:6:0","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint56_$","typeString":"type(uint56)"}],"id":3584,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"78456:4:0","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":3587,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"78456:12:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint56","typeString":"type(uint56)"}},"id":3588,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"78469:3:0","memberName":"max","nodeType":"MemberAccess","src":"78456:16:0","typeDescriptions":{"typeIdentifier":"t_uint56","typeString":"uint56"}},"src":"78447:25:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"53616665436173743a2076616c756520646f65736e27742066697420696e2035362062697473","id":3590,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"78474:40:0","typeDescriptions":{"typeIdentifier":"t_stringliteral_656ad93b5ff6665bfe05d97d51fad7c02ad79e6c43bef066c042a6900f450bc5","typeString":"literal_string \"SafeCast: value doesn't fit in 56 bits\""},"value":"SafeCast: value doesn't fit in 56 bits"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_656ad93b5ff6665bfe05d97d51fad7c02ad79e6c43bef066c042a6900f450bc5","typeString":"literal_string \"SafeCast: value doesn't fit in 56 bits\""}],"id":3582,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"78439:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":3591,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"78439:76:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3592,"nodeType":"ExpressionStatement","src":"78439:76:0"},{"expression":{"arguments":[{"id":3595,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3577,"src":"78539:5:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3594,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"78532:6:0","typeDescriptions":{"typeIdentifier":"t_type$_t_uint56_$","typeString":"type(uint56)"},"typeName":{"id":3593,"name":"uint56","nodeType":"ElementaryTypeName","src":"78532:6:0","typeDescriptions":{}}},"id":3596,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"78532:13:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint56","typeString":"uint56"}},"functionReturnParameters":3581,"id":3597,"nodeType":"Return","src":"78525:20:0"}]},"documentation":{"id":3575,"nodeType":"StructuredDocumentation","src":"78046:314:0","text":" @dev Returns the downcasted uint56 from uint256, reverting on\n overflow (when the input is greater than largest uint56).\n Counterpart to Solidity's `uint56` operator.\n Requirements:\n - input must fit into 56 bits\n _Available since v4.7._"},"id":3599,"implemented":true,"kind":"function","modifiers":[],"name":"toUint56","nameLocation":"78374:8:0","nodeType":"FunctionDefinition","parameters":{"id":3578,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3577,"mutability":"mutable","name":"value","nameLocation":"78391:5:0","nodeType":"VariableDeclaration","scope":3599,"src":"78383:13:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3576,"name":"uint256","nodeType":"ElementaryTypeName","src":"78383:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"78382:15:0"},"returnParameters":{"id":3581,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3580,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3599,"src":"78421:6:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint56","typeString":"uint56"},"typeName":{"id":3579,"name":"uint56","nodeType":"ElementaryTypeName","src":"78421:6:0","typeDescriptions":{"typeIdentifier":"t_uint56","typeString":"uint56"}},"visibility":"internal"}],"src":"78420:8:0"},"scope":4512,"src":"78365:187:0","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":3623,"nodeType":"Block","src":"78941:123:0","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3614,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3608,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3602,"src":"78959:5:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"expression":{"arguments":[{"id":3611,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"78973:6:0","typeDescriptions":{"typeIdentifier":"t_type$_t_uint48_$","typeString":"type(uint48)"},"typeName":{"id":3610,"name":"uint48","nodeType":"ElementaryTypeName","src":"78973:6:0","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint48_$","typeString":"type(uint48)"}],"id":3609,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"78968:4:0","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":3612,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"78968:12:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint48","typeString":"type(uint48)"}},"id":3613,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"78981:3:0","memberName":"max","nodeType":"MemberAccess","src":"78968:16:0","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"src":"78959:25:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"53616665436173743a2076616c756520646f65736e27742066697420696e2034382062697473","id":3615,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"78986:40:0","typeDescriptions":{"typeIdentifier":"t_stringliteral_599034f9324dd4e988c6cea5a00a30f53147fec1b01559682f18cd840028f495","typeString":"literal_string \"SafeCast: value doesn't fit in 48 bits\""},"value":"SafeCast: value doesn't fit in 48 bits"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_599034f9324dd4e988c6cea5a00a30f53147fec1b01559682f18cd840028f495","typeString":"literal_string \"SafeCast: value doesn't fit in 48 bits\""}],"id":3607,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"78951:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":3616,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"78951:76:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3617,"nodeType":"ExpressionStatement","src":"78951:76:0"},{"expression":{"arguments":[{"id":3620,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3602,"src":"79051:5:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3619,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"79044:6:0","typeDescriptions":{"typeIdentifier":"t_type$_t_uint48_$","typeString":"type(uint48)"},"typeName":{"id":3618,"name":"uint48","nodeType":"ElementaryTypeName","src":"79044:6:0","typeDescriptions":{}}},"id":3621,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"79044:13:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"functionReturnParameters":3606,"id":3622,"nodeType":"Return","src":"79037:20:0"}]},"documentation":{"id":3600,"nodeType":"StructuredDocumentation","src":"78558:314:0","text":" @dev Returns the downcasted uint48 from uint256, reverting on\n overflow (when the input is greater than largest uint48).\n Counterpart to Solidity's `uint48` operator.\n Requirements:\n - input must fit into 48 bits\n _Available since v4.7._"},"id":3624,"implemented":true,"kind":"function","modifiers":[],"name":"toUint48","nameLocation":"78886:8:0","nodeType":"FunctionDefinition","parameters":{"id":3603,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3602,"mutability":"mutable","name":"value","nameLocation":"78903:5:0","nodeType":"VariableDeclaration","scope":3624,"src":"78895:13:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3601,"name":"uint256","nodeType":"ElementaryTypeName","src":"78895:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"78894:15:0"},"returnParameters":{"id":3606,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3605,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3624,"src":"78933:6:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"},"typeName":{"id":3604,"name":"uint48","nodeType":"ElementaryTypeName","src":"78933:6:0","typeDescriptions":{"typeIdentifier":"t_uint48","typeString":"uint48"}},"visibility":"internal"}],"src":"78932:8:0"},"scope":4512,"src":"78877:187:0","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":3648,"nodeType":"Block","src":"79453:123:0","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3639,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3633,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3627,"src":"79471:5:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"expression":{"arguments":[{"id":3636,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"79485:6:0","typeDescriptions":{"typeIdentifier":"t_type$_t_uint40_$","typeString":"type(uint40)"},"typeName":{"id":3635,"name":"uint40","nodeType":"ElementaryTypeName","src":"79485:6:0","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint40_$","typeString":"type(uint40)"}],"id":3634,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"79480:4:0","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":3637,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"79480:12:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint40","typeString":"type(uint40)"}},"id":3638,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"79493:3:0","memberName":"max","nodeType":"MemberAccess","src":"79480:16:0","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"src":"79471:25:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"53616665436173743a2076616c756520646f65736e27742066697420696e2034302062697473","id":3640,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"79498:40:0","typeDescriptions":{"typeIdentifier":"t_stringliteral_b23559c58b98a5d3ed7016699c7171ac8defa5a1d180f9a9ffa60468a5701d37","typeString":"literal_string \"SafeCast: value doesn't fit in 40 bits\""},"value":"SafeCast: value doesn't fit in 40 bits"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_b23559c58b98a5d3ed7016699c7171ac8defa5a1d180f9a9ffa60468a5701d37","typeString":"literal_string \"SafeCast: value doesn't fit in 40 bits\""}],"id":3632,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"79463:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":3641,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"79463:76:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3642,"nodeType":"ExpressionStatement","src":"79463:76:0"},{"expression":{"arguments":[{"id":3645,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3627,"src":"79563:5:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3644,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"79556:6:0","typeDescriptions":{"typeIdentifier":"t_type$_t_uint40_$","typeString":"type(uint40)"},"typeName":{"id":3643,"name":"uint40","nodeType":"ElementaryTypeName","src":"79556:6:0","typeDescriptions":{}}},"id":3646,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"79556:13:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"functionReturnParameters":3631,"id":3647,"nodeType":"Return","src":"79549:20:0"}]},"documentation":{"id":3625,"nodeType":"StructuredDocumentation","src":"79070:314:0","text":" @dev Returns the downcasted uint40 from uint256, reverting on\n overflow (when the input is greater than largest uint40).\n Counterpart to Solidity's `uint40` operator.\n Requirements:\n - input must fit into 40 bits\n _Available since v4.7._"},"id":3649,"implemented":true,"kind":"function","modifiers":[],"name":"toUint40","nameLocation":"79398:8:0","nodeType":"FunctionDefinition","parameters":{"id":3628,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3627,"mutability":"mutable","name":"value","nameLocation":"79415:5:0","nodeType":"VariableDeclaration","scope":3649,"src":"79407:13:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3626,"name":"uint256","nodeType":"ElementaryTypeName","src":"79407:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"79406:15:0"},"returnParameters":{"id":3631,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3630,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3649,"src":"79445:6:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"},"typeName":{"id":3629,"name":"uint40","nodeType":"ElementaryTypeName","src":"79445:6:0","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"visibility":"internal"}],"src":"79444:8:0"},"scope":4512,"src":"79389:187:0","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":3673,"nodeType":"Block","src":"79965:123:0","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3664,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3658,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3652,"src":"79983:5:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"expression":{"arguments":[{"id":3661,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"79997:6:0","typeDescriptions":{"typeIdentifier":"t_type$_t_uint32_$","typeString":"type(uint32)"},"typeName":{"id":3660,"name":"uint32","nodeType":"ElementaryTypeName","src":"79997:6:0","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint32_$","typeString":"type(uint32)"}],"id":3659,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"79992:4:0","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":3662,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"79992:12:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint32","typeString":"type(uint32)"}},"id":3663,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"80005:3:0","memberName":"max","nodeType":"MemberAccess","src":"79992:16:0","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"src":"79983:25:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"53616665436173743a2076616c756520646f65736e27742066697420696e2033322062697473","id":3665,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"80010:40:0","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":3657,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"79975:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":3666,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"79975:76:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3667,"nodeType":"ExpressionStatement","src":"79975:76:0"},{"expression":{"arguments":[{"id":3670,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3652,"src":"80075:5:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3669,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"80068:6:0","typeDescriptions":{"typeIdentifier":"t_type$_t_uint32_$","typeString":"type(uint32)"},"typeName":{"id":3668,"name":"uint32","nodeType":"ElementaryTypeName","src":"80068:6:0","typeDescriptions":{}}},"id":3671,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"80068:13:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"functionReturnParameters":3656,"id":3672,"nodeType":"Return","src":"80061:20:0"}]},"documentation":{"id":3650,"nodeType":"StructuredDocumentation","src":"79582:314:0","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\n _Available since v2.5._"},"id":3674,"implemented":true,"kind":"function","modifiers":[],"name":"toUint32","nameLocation":"79910:8:0","nodeType":"FunctionDefinition","parameters":{"id":3653,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3652,"mutability":"mutable","name":"value","nameLocation":"79927:5:0","nodeType":"VariableDeclaration","scope":3674,"src":"79919:13:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3651,"name":"uint256","nodeType":"ElementaryTypeName","src":"79919:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"79918:15:0"},"returnParameters":{"id":3656,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3655,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3674,"src":"79957:6:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":3654,"name":"uint32","nodeType":"ElementaryTypeName","src":"79957:6:0","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"79956:8:0"},"scope":4512,"src":"79901:187:0","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":3698,"nodeType":"Block","src":"80477:123:0","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3689,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3683,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3677,"src":"80495:5:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"expression":{"arguments":[{"id":3686,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"80509:6:0","typeDescriptions":{"typeIdentifier":"t_type$_t_uint24_$","typeString":"type(uint24)"},"typeName":{"id":3685,"name":"uint24","nodeType":"ElementaryTypeName","src":"80509:6:0","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint24_$","typeString":"type(uint24)"}],"id":3684,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"80504:4:0","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":3687,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"80504:12:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint24","typeString":"type(uint24)"}},"id":3688,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"80517:3:0","memberName":"max","nodeType":"MemberAccess","src":"80504:16:0","typeDescriptions":{"typeIdentifier":"t_uint24","typeString":"uint24"}},"src":"80495:25:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"53616665436173743a2076616c756520646f65736e27742066697420696e2032342062697473","id":3690,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"80522:40:0","typeDescriptions":{"typeIdentifier":"t_stringliteral_f68b65aaf4574c34e9b9d1442d19636c6608b8c4dbd9331c7245f7915c8b2f55","typeString":"literal_string \"SafeCast: value doesn't fit in 24 bits\""},"value":"SafeCast: value doesn't fit in 24 bits"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_f68b65aaf4574c34e9b9d1442d19636c6608b8c4dbd9331c7245f7915c8b2f55","typeString":"literal_string \"SafeCast: value doesn't fit in 24 bits\""}],"id":3682,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"80487:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":3691,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"80487:76:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3692,"nodeType":"ExpressionStatement","src":"80487:76:0"},{"expression":{"arguments":[{"id":3695,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3677,"src":"80587:5:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3694,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"80580:6:0","typeDescriptions":{"typeIdentifier":"t_type$_t_uint24_$","typeString":"type(uint24)"},"typeName":{"id":3693,"name":"uint24","nodeType":"ElementaryTypeName","src":"80580:6:0","typeDescriptions":{}}},"id":3696,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"80580:13:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint24","typeString":"uint24"}},"functionReturnParameters":3681,"id":3697,"nodeType":"Return","src":"80573:20:0"}]},"documentation":{"id":3675,"nodeType":"StructuredDocumentation","src":"80094:314:0","text":" @dev Returns the downcasted uint24 from uint256, reverting on\n overflow (when the input is greater than largest uint24).\n Counterpart to Solidity's `uint24` operator.\n Requirements:\n - input must fit into 24 bits\n _Available since v4.7._"},"id":3699,"implemented":true,"kind":"function","modifiers":[],"name":"toUint24","nameLocation":"80422:8:0","nodeType":"FunctionDefinition","parameters":{"id":3678,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3677,"mutability":"mutable","name":"value","nameLocation":"80439:5:0","nodeType":"VariableDeclaration","scope":3699,"src":"80431:13:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3676,"name":"uint256","nodeType":"ElementaryTypeName","src":"80431:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"80430:15:0"},"returnParameters":{"id":3681,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3680,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3699,"src":"80469:6:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint24","typeString":"uint24"},"typeName":{"id":3679,"name":"uint24","nodeType":"ElementaryTypeName","src":"80469:6:0","typeDescriptions":{"typeIdentifier":"t_uint24","typeString":"uint24"}},"visibility":"internal"}],"src":"80468:8:0"},"scope":4512,"src":"80413:187:0","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":3723,"nodeType":"Block","src":"80989:123:0","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3714,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3708,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3702,"src":"81007:5:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"expression":{"arguments":[{"id":3711,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"81021:6:0","typeDescriptions":{"typeIdentifier":"t_type$_t_uint16_$","typeString":"type(uint16)"},"typeName":{"id":3710,"name":"uint16","nodeType":"ElementaryTypeName","src":"81021:6:0","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint16_$","typeString":"type(uint16)"}],"id":3709,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"81016:4:0","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":3712,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"81016:12:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint16","typeString":"type(uint16)"}},"id":3713,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"81029:3:0","memberName":"max","nodeType":"MemberAccess","src":"81016:16:0","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"src":"81007:25:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"53616665436173743a2076616c756520646f65736e27742066697420696e2031362062697473","id":3715,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"81034:40:0","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":3707,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"80999:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":3716,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"80999:76:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3717,"nodeType":"ExpressionStatement","src":"80999:76:0"},{"expression":{"arguments":[{"id":3720,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3702,"src":"81099:5:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3719,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"81092:6:0","typeDescriptions":{"typeIdentifier":"t_type$_t_uint16_$","typeString":"type(uint16)"},"typeName":{"id":3718,"name":"uint16","nodeType":"ElementaryTypeName","src":"81092:6:0","typeDescriptions":{}}},"id":3721,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"81092:13:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"functionReturnParameters":3706,"id":3722,"nodeType":"Return","src":"81085:20:0"}]},"documentation":{"id":3700,"nodeType":"StructuredDocumentation","src":"80606:314:0","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\n _Available since v2.5._"},"id":3724,"implemented":true,"kind":"function","modifiers":[],"name":"toUint16","nameLocation":"80934:8:0","nodeType":"FunctionDefinition","parameters":{"id":3703,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3702,"mutability":"mutable","name":"value","nameLocation":"80951:5:0","nodeType":"VariableDeclaration","scope":3724,"src":"80943:13:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3701,"name":"uint256","nodeType":"ElementaryTypeName","src":"80943:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"80942:15:0"},"returnParameters":{"id":3706,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3705,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3724,"src":"80981:6:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"},"typeName":{"id":3704,"name":"uint16","nodeType":"ElementaryTypeName","src":"80981:6:0","typeDescriptions":{"typeIdentifier":"t_uint16","typeString":"uint16"}},"visibility":"internal"}],"src":"80980:8:0"},"scope":4512,"src":"80925:187:0","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":3748,"nodeType":"Block","src":"81495:120:0","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":3739,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3733,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3727,"src":"81513:5:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"expression":{"arguments":[{"id":3736,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"81527:5:0","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":3735,"name":"uint8","nodeType":"ElementaryTypeName","src":"81527:5:0","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"}],"id":3734,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"81522:4:0","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":3737,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"81522:11:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint8","typeString":"type(uint8)"}},"id":3738,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"81534:3:0","memberName":"max","nodeType":"MemberAccess","src":"81522:15:0","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"src":"81513:24:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"53616665436173743a2076616c756520646f65736e27742066697420696e20382062697473","id":3740,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"81539:39:0","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":3732,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"81505:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":3741,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"81505:74:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3742,"nodeType":"ExpressionStatement","src":"81505:74:0"},{"expression":{"arguments":[{"id":3745,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3727,"src":"81602:5:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":3744,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"81596:5:0","typeDescriptions":{"typeIdentifier":"t_type$_t_uint8_$","typeString":"type(uint8)"},"typeName":{"id":3743,"name":"uint8","nodeType":"ElementaryTypeName","src":"81596:5:0","typeDescriptions":{}}},"id":3746,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"81596:12:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"functionReturnParameters":3731,"id":3747,"nodeType":"Return","src":"81589:19:0"}]},"documentation":{"id":3725,"nodeType":"StructuredDocumentation","src":"81118:310:0","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\n _Available since v2.5._"},"id":3749,"implemented":true,"kind":"function","modifiers":[],"name":"toUint8","nameLocation":"81442:7:0","nodeType":"FunctionDefinition","parameters":{"id":3728,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3727,"mutability":"mutable","name":"value","nameLocation":"81458:5:0","nodeType":"VariableDeclaration","scope":3749,"src":"81450:13:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3726,"name":"uint256","nodeType":"ElementaryTypeName","src":"81450:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"81449:15:0"},"returnParameters":{"id":3731,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3730,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3749,"src":"81488:5:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":3729,"name":"uint8","nodeType":"ElementaryTypeName","src":"81488:5:0","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"}],"src":"81487:7:0"},"scope":4512,"src":"81433:182:0","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":3769,"nodeType":"Block","src":"81889:103:0","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":3760,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3758,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3752,"src":"81907:5:0","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"hexValue":"30","id":3759,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"81916:1:0","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"81907:10:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"53616665436173743a2076616c7565206d75737420626520706f736974697665","id":3761,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"81919:34:0","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":3757,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"81899:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":3762,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"81899:55:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3763,"nodeType":"ExpressionStatement","src":"81899:55:0"},{"expression":{"arguments":[{"id":3766,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3752,"src":"81979:5:0","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":3765,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"81971:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":3764,"name":"uint256","nodeType":"ElementaryTypeName","src":"81971:7:0","typeDescriptions":{}}},"id":3767,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"81971:14:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":3756,"id":3768,"nodeType":"Return","src":"81964:21:0"}]},"documentation":{"id":3750,"nodeType":"StructuredDocumentation","src":"81621:198:0","text":" @dev Converts a signed int256 into an unsigned uint256.\n Requirements:\n - input must be greater than or equal to 0.\n _Available since v3.0._"},"id":3770,"implemented":true,"kind":"function","modifiers":[],"name":"toUint256","nameLocation":"81833:9:0","nodeType":"FunctionDefinition","parameters":{"id":3753,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3752,"mutability":"mutable","name":"value","nameLocation":"81850:5:0","nodeType":"VariableDeclaration","scope":3770,"src":"81843:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":3751,"name":"int256","nodeType":"ElementaryTypeName","src":"81843:6:0","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"81842:14:0"},"returnParameters":{"id":3756,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3755,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":3770,"src":"81880:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":3754,"name":"uint256","nodeType":"ElementaryTypeName","src":"81880:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"81879:9:0"},"scope":4512,"src":"81824:168:0","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":3792,"nodeType":"Block","src":"82427:124:0","statements":[{"expression":{"id":3783,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":3778,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3776,"src":"82437:10:0","typeDescriptions":{"typeIdentifier":"t_int248","typeString":"int248"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":3781,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3773,"src":"82457:5:0","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":3780,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"82450:6:0","typeDescriptions":{"typeIdentifier":"t_type$_t_int248_$","typeString":"type(int248)"},"typeName":{"id":3779,"name":"int248","nodeType":"ElementaryTypeName","src":"82450:6:0","typeDescriptions":{}}},"id":3782,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"82450:13:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int248","typeString":"int248"}},"src":"82437:26:0","typeDescriptions":{"typeIdentifier":"t_int248","typeString":"int248"}},"id":3784,"nodeType":"ExpressionStatement","src":"82437:26:0"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":3788,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3786,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3776,"src":"82481:10:0","typeDescriptions":{"typeIdentifier":"t_int248","typeString":"int248"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":3787,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3773,"src":"82495:5:0","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"82481:19:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"53616665436173743a2076616c756520646f65736e27742066697420696e203234382062697473","id":3789,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"82502:41:0","typeDescriptions":{"typeIdentifier":"t_stringliteral_6ac19bba4607c9b45ff35f54fbc4ca64c29c7457109a16fa180ea77cdbda8593","typeString":"literal_string \"SafeCast: value doesn't fit in 248 bits\""},"value":"SafeCast: value doesn't fit in 248 bits"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_6ac19bba4607c9b45ff35f54fbc4ca64c29c7457109a16fa180ea77cdbda8593","typeString":"literal_string \"SafeCast: value doesn't fit in 248 bits\""}],"id":3785,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"82473:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":3790,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"82473:71:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3791,"nodeType":"ExpressionStatement","src":"82473:71:0"}]},"documentation":{"id":3771,"nodeType":"StructuredDocumentation","src":"81998:350:0","text":" @dev Returns the downcasted int248 from int256, reverting on\n overflow (when the input is less than smallest int248 or\n greater than largest int248).\n Counterpart to Solidity's `int248` operator.\n Requirements:\n - input must fit into 248 bits\n _Available since v4.7._"},"id":3793,"implemented":true,"kind":"function","modifiers":[],"name":"toInt248","nameLocation":"82362:8:0","nodeType":"FunctionDefinition","parameters":{"id":3774,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3773,"mutability":"mutable","name":"value","nameLocation":"82378:5:0","nodeType":"VariableDeclaration","scope":3793,"src":"82371:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":3772,"name":"int256","nodeType":"ElementaryTypeName","src":"82371:6:0","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"82370:14:0"},"returnParameters":{"id":3777,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3776,"mutability":"mutable","name":"downcasted","nameLocation":"82415:10:0","nodeType":"VariableDeclaration","scope":3793,"src":"82408:17:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int248","typeString":"int248"},"typeName":{"id":3775,"name":"int248","nodeType":"ElementaryTypeName","src":"82408:6:0","typeDescriptions":{"typeIdentifier":"t_int248","typeString":"int248"}},"visibility":"internal"}],"src":"82407:19:0"},"scope":4512,"src":"82353:198:0","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":3815,"nodeType":"Block","src":"82986:124:0","statements":[{"expression":{"id":3806,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":3801,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3799,"src":"82996:10:0","typeDescriptions":{"typeIdentifier":"t_int240","typeString":"int240"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":3804,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3796,"src":"83016:5:0","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":3803,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"83009:6:0","typeDescriptions":{"typeIdentifier":"t_type$_t_int240_$","typeString":"type(int240)"},"typeName":{"id":3802,"name":"int240","nodeType":"ElementaryTypeName","src":"83009:6:0","typeDescriptions":{}}},"id":3805,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"83009:13:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int240","typeString":"int240"}},"src":"82996:26:0","typeDescriptions":{"typeIdentifier":"t_int240","typeString":"int240"}},"id":3807,"nodeType":"ExpressionStatement","src":"82996:26:0"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":3811,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3809,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3799,"src":"83040:10:0","typeDescriptions":{"typeIdentifier":"t_int240","typeString":"int240"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":3810,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3796,"src":"83054:5:0","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"83040:19:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"53616665436173743a2076616c756520646f65736e27742066697420696e203234302062697473","id":3812,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"83061:41:0","typeDescriptions":{"typeIdentifier":"t_stringliteral_375fa0f6cb9fb5845d214c630920cedf4424913ed6dc32c297d430efa3d61a87","typeString":"literal_string \"SafeCast: value doesn't fit in 240 bits\""},"value":"SafeCast: value doesn't fit in 240 bits"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_375fa0f6cb9fb5845d214c630920cedf4424913ed6dc32c297d430efa3d61a87","typeString":"literal_string \"SafeCast: value doesn't fit in 240 bits\""}],"id":3808,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"83032:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":3813,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"83032:71:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3814,"nodeType":"ExpressionStatement","src":"83032:71:0"}]},"documentation":{"id":3794,"nodeType":"StructuredDocumentation","src":"82557:350:0","text":" @dev Returns the downcasted int240 from int256, reverting on\n overflow (when the input is less than smallest int240 or\n greater than largest int240).\n Counterpart to Solidity's `int240` operator.\n Requirements:\n - input must fit into 240 bits\n _Available since v4.7._"},"id":3816,"implemented":true,"kind":"function","modifiers":[],"name":"toInt240","nameLocation":"82921:8:0","nodeType":"FunctionDefinition","parameters":{"id":3797,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3796,"mutability":"mutable","name":"value","nameLocation":"82937:5:0","nodeType":"VariableDeclaration","scope":3816,"src":"82930:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":3795,"name":"int256","nodeType":"ElementaryTypeName","src":"82930:6:0","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"82929:14:0"},"returnParameters":{"id":3800,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3799,"mutability":"mutable","name":"downcasted","nameLocation":"82974:10:0","nodeType":"VariableDeclaration","scope":3816,"src":"82967:17:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int240","typeString":"int240"},"typeName":{"id":3798,"name":"int240","nodeType":"ElementaryTypeName","src":"82967:6:0","typeDescriptions":{"typeIdentifier":"t_int240","typeString":"int240"}},"visibility":"internal"}],"src":"82966:19:0"},"scope":4512,"src":"82912:198:0","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":3838,"nodeType":"Block","src":"83545:124:0","statements":[{"expression":{"id":3829,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":3824,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3822,"src":"83555:10:0","typeDescriptions":{"typeIdentifier":"t_int232","typeString":"int232"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":3827,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3819,"src":"83575:5:0","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":3826,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"83568:6:0","typeDescriptions":{"typeIdentifier":"t_type$_t_int232_$","typeString":"type(int232)"},"typeName":{"id":3825,"name":"int232","nodeType":"ElementaryTypeName","src":"83568:6:0","typeDescriptions":{}}},"id":3828,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"83568:13:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int232","typeString":"int232"}},"src":"83555:26:0","typeDescriptions":{"typeIdentifier":"t_int232","typeString":"int232"}},"id":3830,"nodeType":"ExpressionStatement","src":"83555:26:0"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":3834,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3832,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3822,"src":"83599:10:0","typeDescriptions":{"typeIdentifier":"t_int232","typeString":"int232"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":3833,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3819,"src":"83613:5:0","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"83599:19:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"53616665436173743a2076616c756520646f65736e27742066697420696e203233322062697473","id":3835,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"83620:41:0","typeDescriptions":{"typeIdentifier":"t_stringliteral_5797fb2c4589bd6a92752ce0eacaac67341e37ab28c96c2284ab897e7ac77957","typeString":"literal_string \"SafeCast: value doesn't fit in 232 bits\""},"value":"SafeCast: value doesn't fit in 232 bits"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_5797fb2c4589bd6a92752ce0eacaac67341e37ab28c96c2284ab897e7ac77957","typeString":"literal_string \"SafeCast: value doesn't fit in 232 bits\""}],"id":3831,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"83591:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":3836,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"83591:71:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3837,"nodeType":"ExpressionStatement","src":"83591:71:0"}]},"documentation":{"id":3817,"nodeType":"StructuredDocumentation","src":"83116:350:0","text":" @dev Returns the downcasted int232 from int256, reverting on\n overflow (when the input is less than smallest int232 or\n greater than largest int232).\n Counterpart to Solidity's `int232` operator.\n Requirements:\n - input must fit into 232 bits\n _Available since v4.7._"},"id":3839,"implemented":true,"kind":"function","modifiers":[],"name":"toInt232","nameLocation":"83480:8:0","nodeType":"FunctionDefinition","parameters":{"id":3820,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3819,"mutability":"mutable","name":"value","nameLocation":"83496:5:0","nodeType":"VariableDeclaration","scope":3839,"src":"83489:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":3818,"name":"int256","nodeType":"ElementaryTypeName","src":"83489:6:0","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"83488:14:0"},"returnParameters":{"id":3823,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3822,"mutability":"mutable","name":"downcasted","nameLocation":"83533:10:0","nodeType":"VariableDeclaration","scope":3839,"src":"83526:17:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int232","typeString":"int232"},"typeName":{"id":3821,"name":"int232","nodeType":"ElementaryTypeName","src":"83526:6:0","typeDescriptions":{"typeIdentifier":"t_int232","typeString":"int232"}},"visibility":"internal"}],"src":"83525:19:0"},"scope":4512,"src":"83471:198:0","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":3861,"nodeType":"Block","src":"84104:124:0","statements":[{"expression":{"id":3852,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":3847,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3845,"src":"84114:10:0","typeDescriptions":{"typeIdentifier":"t_int224","typeString":"int224"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":3850,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3842,"src":"84134:5:0","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":3849,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"84127:6:0","typeDescriptions":{"typeIdentifier":"t_type$_t_int224_$","typeString":"type(int224)"},"typeName":{"id":3848,"name":"int224","nodeType":"ElementaryTypeName","src":"84127:6:0","typeDescriptions":{}}},"id":3851,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"84127:13:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int224","typeString":"int224"}},"src":"84114:26:0","typeDescriptions":{"typeIdentifier":"t_int224","typeString":"int224"}},"id":3853,"nodeType":"ExpressionStatement","src":"84114:26:0"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":3857,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3855,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3845,"src":"84158:10:0","typeDescriptions":{"typeIdentifier":"t_int224","typeString":"int224"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":3856,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3842,"src":"84172:5:0","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"84158:19:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"53616665436173743a2076616c756520646f65736e27742066697420696e203232342062697473","id":3858,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"84179:41:0","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":3854,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"84150:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":3859,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"84150:71:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3860,"nodeType":"ExpressionStatement","src":"84150:71:0"}]},"documentation":{"id":3840,"nodeType":"StructuredDocumentation","src":"83675:350:0","text":" @dev Returns the downcasted int224 from int256, reverting on\n overflow (when the input is less than smallest int224 or\n greater than largest int224).\n Counterpart to Solidity's `int224` operator.\n Requirements:\n - input must fit into 224 bits\n _Available since v4.7._"},"id":3862,"implemented":true,"kind":"function","modifiers":[],"name":"toInt224","nameLocation":"84039:8:0","nodeType":"FunctionDefinition","parameters":{"id":3843,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3842,"mutability":"mutable","name":"value","nameLocation":"84055:5:0","nodeType":"VariableDeclaration","scope":3862,"src":"84048:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":3841,"name":"int256","nodeType":"ElementaryTypeName","src":"84048:6:0","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"84047:14:0"},"returnParameters":{"id":3846,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3845,"mutability":"mutable","name":"downcasted","nameLocation":"84092:10:0","nodeType":"VariableDeclaration","scope":3862,"src":"84085:17:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int224","typeString":"int224"},"typeName":{"id":3844,"name":"int224","nodeType":"ElementaryTypeName","src":"84085:6:0","typeDescriptions":{"typeIdentifier":"t_int224","typeString":"int224"}},"visibility":"internal"}],"src":"84084:19:0"},"scope":4512,"src":"84030:198:0","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":3884,"nodeType":"Block","src":"84663:124:0","statements":[{"expression":{"id":3875,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":3870,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3868,"src":"84673:10:0","typeDescriptions":{"typeIdentifier":"t_int216","typeString":"int216"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":3873,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3865,"src":"84693:5:0","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":3872,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"84686:6:0","typeDescriptions":{"typeIdentifier":"t_type$_t_int216_$","typeString":"type(int216)"},"typeName":{"id":3871,"name":"int216","nodeType":"ElementaryTypeName","src":"84686:6:0","typeDescriptions":{}}},"id":3874,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"84686:13:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int216","typeString":"int216"}},"src":"84673:26:0","typeDescriptions":{"typeIdentifier":"t_int216","typeString":"int216"}},"id":3876,"nodeType":"ExpressionStatement","src":"84673:26:0"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":3880,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3878,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3868,"src":"84717:10:0","typeDescriptions":{"typeIdentifier":"t_int216","typeString":"int216"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":3879,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3865,"src":"84731:5:0","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"84717:19:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"53616665436173743a2076616c756520646f65736e27742066697420696e203231362062697473","id":3881,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"84738:41:0","typeDescriptions":{"typeIdentifier":"t_stringliteral_8966adc0aad8dc91b207c69c3eb4937e498af8cc706cfe7edd55f3a6ea53488d","typeString":"literal_string \"SafeCast: value doesn't fit in 216 bits\""},"value":"SafeCast: value doesn't fit in 216 bits"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_8966adc0aad8dc91b207c69c3eb4937e498af8cc706cfe7edd55f3a6ea53488d","typeString":"literal_string \"SafeCast: value doesn't fit in 216 bits\""}],"id":3877,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"84709:7:0","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,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"84709:71:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3883,"nodeType":"ExpressionStatement","src":"84709:71:0"}]},"documentation":{"id":3863,"nodeType":"StructuredDocumentation","src":"84234:350:0","text":" @dev Returns the downcasted int216 from int256, reverting on\n overflow (when the input is less than smallest int216 or\n greater than largest int216).\n Counterpart to Solidity's `int216` operator.\n Requirements:\n - input must fit into 216 bits\n _Available since v4.7._"},"id":3885,"implemented":true,"kind":"function","modifiers":[],"name":"toInt216","nameLocation":"84598:8:0","nodeType":"FunctionDefinition","parameters":{"id":3866,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3865,"mutability":"mutable","name":"value","nameLocation":"84614:5:0","nodeType":"VariableDeclaration","scope":3885,"src":"84607:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":3864,"name":"int256","nodeType":"ElementaryTypeName","src":"84607:6:0","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"84606:14:0"},"returnParameters":{"id":3869,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3868,"mutability":"mutable","name":"downcasted","nameLocation":"84651:10:0","nodeType":"VariableDeclaration","scope":3885,"src":"84644:17:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int216","typeString":"int216"},"typeName":{"id":3867,"name":"int216","nodeType":"ElementaryTypeName","src":"84644:6:0","typeDescriptions":{"typeIdentifier":"t_int216","typeString":"int216"}},"visibility":"internal"}],"src":"84643:19:0"},"scope":4512,"src":"84589:198:0","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":3907,"nodeType":"Block","src":"85222:124:0","statements":[{"expression":{"id":3898,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":3893,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3891,"src":"85232:10:0","typeDescriptions":{"typeIdentifier":"t_int208","typeString":"int208"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":3896,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3888,"src":"85252:5:0","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":3895,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"85245:6:0","typeDescriptions":{"typeIdentifier":"t_type$_t_int208_$","typeString":"type(int208)"},"typeName":{"id":3894,"name":"int208","nodeType":"ElementaryTypeName","src":"85245:6:0","typeDescriptions":{}}},"id":3897,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"85245:13:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int208","typeString":"int208"}},"src":"85232:26:0","typeDescriptions":{"typeIdentifier":"t_int208","typeString":"int208"}},"id":3899,"nodeType":"ExpressionStatement","src":"85232:26:0"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":3903,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3901,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3891,"src":"85276:10:0","typeDescriptions":{"typeIdentifier":"t_int208","typeString":"int208"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":3902,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3888,"src":"85290:5:0","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"85276:19:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"53616665436173743a2076616c756520646f65736e27742066697420696e203230382062697473","id":3904,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"85297:41:0","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":3900,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"85268:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":3905,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"85268:71:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3906,"nodeType":"ExpressionStatement","src":"85268:71:0"}]},"documentation":{"id":3886,"nodeType":"StructuredDocumentation","src":"84793:350:0","text":" @dev Returns the downcasted int208 from int256, reverting on\n overflow (when the input is less than smallest int208 or\n greater than largest int208).\n Counterpart to Solidity's `int208` operator.\n Requirements:\n - input must fit into 208 bits\n _Available since v4.7._"},"id":3908,"implemented":true,"kind":"function","modifiers":[],"name":"toInt208","nameLocation":"85157:8:0","nodeType":"FunctionDefinition","parameters":{"id":3889,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3888,"mutability":"mutable","name":"value","nameLocation":"85173:5:0","nodeType":"VariableDeclaration","scope":3908,"src":"85166:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":3887,"name":"int256","nodeType":"ElementaryTypeName","src":"85166:6:0","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"85165:14:0"},"returnParameters":{"id":3892,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3891,"mutability":"mutable","name":"downcasted","nameLocation":"85210:10:0","nodeType":"VariableDeclaration","scope":3908,"src":"85203:17:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int208","typeString":"int208"},"typeName":{"id":3890,"name":"int208","nodeType":"ElementaryTypeName","src":"85203:6:0","typeDescriptions":{"typeIdentifier":"t_int208","typeString":"int208"}},"visibility":"internal"}],"src":"85202:19:0"},"scope":4512,"src":"85148:198:0","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":3930,"nodeType":"Block","src":"85781:124:0","statements":[{"expression":{"id":3921,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":3916,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3914,"src":"85791:10:0","typeDescriptions":{"typeIdentifier":"t_int200","typeString":"int200"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":3919,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3911,"src":"85811:5:0","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":3918,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"85804:6:0","typeDescriptions":{"typeIdentifier":"t_type$_t_int200_$","typeString":"type(int200)"},"typeName":{"id":3917,"name":"int200","nodeType":"ElementaryTypeName","src":"85804:6:0","typeDescriptions":{}}},"id":3920,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"85804:13:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int200","typeString":"int200"}},"src":"85791:26:0","typeDescriptions":{"typeIdentifier":"t_int200","typeString":"int200"}},"id":3922,"nodeType":"ExpressionStatement","src":"85791:26:0"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":3926,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3924,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3914,"src":"85835:10:0","typeDescriptions":{"typeIdentifier":"t_int200","typeString":"int200"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":3925,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3911,"src":"85849:5:0","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"85835:19:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"53616665436173743a2076616c756520646f65736e27742066697420696e203230302062697473","id":3927,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"85856:41:0","typeDescriptions":{"typeIdentifier":"t_stringliteral_df8130f294fe2698967ea9ead82c4da9454490567d976d00551e0174e655314c","typeString":"literal_string \"SafeCast: value doesn't fit in 200 bits\""},"value":"SafeCast: value doesn't fit in 200 bits"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_df8130f294fe2698967ea9ead82c4da9454490567d976d00551e0174e655314c","typeString":"literal_string \"SafeCast: value doesn't fit in 200 bits\""}],"id":3923,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"85827:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":3928,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"85827:71:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3929,"nodeType":"ExpressionStatement","src":"85827:71:0"}]},"documentation":{"id":3909,"nodeType":"StructuredDocumentation","src":"85352:350:0","text":" @dev Returns the downcasted int200 from int256, reverting on\n overflow (when the input is less than smallest int200 or\n greater than largest int200).\n Counterpart to Solidity's `int200` operator.\n Requirements:\n - input must fit into 200 bits\n _Available since v4.7._"},"id":3931,"implemented":true,"kind":"function","modifiers":[],"name":"toInt200","nameLocation":"85716:8:0","nodeType":"FunctionDefinition","parameters":{"id":3912,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3911,"mutability":"mutable","name":"value","nameLocation":"85732:5:0","nodeType":"VariableDeclaration","scope":3931,"src":"85725:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":3910,"name":"int256","nodeType":"ElementaryTypeName","src":"85725:6:0","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"85724:14:0"},"returnParameters":{"id":3915,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3914,"mutability":"mutable","name":"downcasted","nameLocation":"85769:10:0","nodeType":"VariableDeclaration","scope":3931,"src":"85762:17:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int200","typeString":"int200"},"typeName":{"id":3913,"name":"int200","nodeType":"ElementaryTypeName","src":"85762:6:0","typeDescriptions":{"typeIdentifier":"t_int200","typeString":"int200"}},"visibility":"internal"}],"src":"85761:19:0"},"scope":4512,"src":"85707:198:0","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":3953,"nodeType":"Block","src":"86340:124:0","statements":[{"expression":{"id":3944,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":3939,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3937,"src":"86350:10:0","typeDescriptions":{"typeIdentifier":"t_int192","typeString":"int192"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":3942,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3934,"src":"86370:5:0","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":3941,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"86363:6:0","typeDescriptions":{"typeIdentifier":"t_type$_t_int192_$","typeString":"type(int192)"},"typeName":{"id":3940,"name":"int192","nodeType":"ElementaryTypeName","src":"86363:6:0","typeDescriptions":{}}},"id":3943,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"86363:13:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int192","typeString":"int192"}},"src":"86350:26:0","typeDescriptions":{"typeIdentifier":"t_int192","typeString":"int192"}},"id":3945,"nodeType":"ExpressionStatement","src":"86350:26:0"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":3949,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3947,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3937,"src":"86394:10:0","typeDescriptions":{"typeIdentifier":"t_int192","typeString":"int192"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":3948,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3934,"src":"86408:5:0","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"86394:19:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"53616665436173743a2076616c756520646f65736e27742066697420696e203139322062697473","id":3950,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"86415:41:0","typeDescriptions":{"typeIdentifier":"t_stringliteral_112978800f12a1c4f1eab82789f7b6defd49dc1c17ba270a84ffc28392fb05ae","typeString":"literal_string \"SafeCast: value doesn't fit in 192 bits\""},"value":"SafeCast: value doesn't fit in 192 bits"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_112978800f12a1c4f1eab82789f7b6defd49dc1c17ba270a84ffc28392fb05ae","typeString":"literal_string \"SafeCast: value doesn't fit in 192 bits\""}],"id":3946,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"86386:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":3951,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"86386:71:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3952,"nodeType":"ExpressionStatement","src":"86386:71:0"}]},"documentation":{"id":3932,"nodeType":"StructuredDocumentation","src":"85911:350:0","text":" @dev Returns the downcasted int192 from int256, reverting on\n overflow (when the input is less than smallest int192 or\n greater than largest int192).\n Counterpart to Solidity's `int192` operator.\n Requirements:\n - input must fit into 192 bits\n _Available since v4.7._"},"id":3954,"implemented":true,"kind":"function","modifiers":[],"name":"toInt192","nameLocation":"86275:8:0","nodeType":"FunctionDefinition","parameters":{"id":3935,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3934,"mutability":"mutable","name":"value","nameLocation":"86291:5:0","nodeType":"VariableDeclaration","scope":3954,"src":"86284:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":3933,"name":"int256","nodeType":"ElementaryTypeName","src":"86284:6:0","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"86283:14:0"},"returnParameters":{"id":3938,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3937,"mutability":"mutable","name":"downcasted","nameLocation":"86328:10:0","nodeType":"VariableDeclaration","scope":3954,"src":"86321:17:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int192","typeString":"int192"},"typeName":{"id":3936,"name":"int192","nodeType":"ElementaryTypeName","src":"86321:6:0","typeDescriptions":{"typeIdentifier":"t_int192","typeString":"int192"}},"visibility":"internal"}],"src":"86320:19:0"},"scope":4512,"src":"86266:198:0","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":3976,"nodeType":"Block","src":"86899:124:0","statements":[{"expression":{"id":3967,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":3962,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3960,"src":"86909:10:0","typeDescriptions":{"typeIdentifier":"t_int184","typeString":"int184"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":3965,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3957,"src":"86929:5:0","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":3964,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"86922:6:0","typeDescriptions":{"typeIdentifier":"t_type$_t_int184_$","typeString":"type(int184)"},"typeName":{"id":3963,"name":"int184","nodeType":"ElementaryTypeName","src":"86922:6:0","typeDescriptions":{}}},"id":3966,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"86922:13:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int184","typeString":"int184"}},"src":"86909:26:0","typeDescriptions":{"typeIdentifier":"t_int184","typeString":"int184"}},"id":3968,"nodeType":"ExpressionStatement","src":"86909:26:0"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":3972,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3970,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3960,"src":"86953:10:0","typeDescriptions":{"typeIdentifier":"t_int184","typeString":"int184"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":3971,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3957,"src":"86967:5:0","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"86953:19:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"53616665436173743a2076616c756520646f65736e27742066697420696e203138342062697473","id":3973,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"86974:41:0","typeDescriptions":{"typeIdentifier":"t_stringliteral_86c53d89b1944d561ecfa42e859033241d1df6ea8d42a57ae02f79d45de4aa75","typeString":"literal_string \"SafeCast: value doesn't fit in 184 bits\""},"value":"SafeCast: value doesn't fit in 184 bits"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_86c53d89b1944d561ecfa42e859033241d1df6ea8d42a57ae02f79d45de4aa75","typeString":"literal_string \"SafeCast: value doesn't fit in 184 bits\""}],"id":3969,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"86945:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":3974,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"86945:71:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3975,"nodeType":"ExpressionStatement","src":"86945:71:0"}]},"documentation":{"id":3955,"nodeType":"StructuredDocumentation","src":"86470:350:0","text":" @dev Returns the downcasted int184 from int256, reverting on\n overflow (when the input is less than smallest int184 or\n greater than largest int184).\n Counterpart to Solidity's `int184` operator.\n Requirements:\n - input must fit into 184 bits\n _Available since v4.7._"},"id":3977,"implemented":true,"kind":"function","modifiers":[],"name":"toInt184","nameLocation":"86834:8:0","nodeType":"FunctionDefinition","parameters":{"id":3958,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3957,"mutability":"mutable","name":"value","nameLocation":"86850:5:0","nodeType":"VariableDeclaration","scope":3977,"src":"86843:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":3956,"name":"int256","nodeType":"ElementaryTypeName","src":"86843:6:0","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"86842:14:0"},"returnParameters":{"id":3961,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3960,"mutability":"mutable","name":"downcasted","nameLocation":"86887:10:0","nodeType":"VariableDeclaration","scope":3977,"src":"86880:17:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int184","typeString":"int184"},"typeName":{"id":3959,"name":"int184","nodeType":"ElementaryTypeName","src":"86880:6:0","typeDescriptions":{"typeIdentifier":"t_int184","typeString":"int184"}},"visibility":"internal"}],"src":"86879:19:0"},"scope":4512,"src":"86825:198:0","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":3999,"nodeType":"Block","src":"87458:124:0","statements":[{"expression":{"id":3990,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":3985,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3983,"src":"87468:10:0","typeDescriptions":{"typeIdentifier":"t_int176","typeString":"int176"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":3988,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3980,"src":"87488:5:0","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":3987,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"87481:6:0","typeDescriptions":{"typeIdentifier":"t_type$_t_int176_$","typeString":"type(int176)"},"typeName":{"id":3986,"name":"int176","nodeType":"ElementaryTypeName","src":"87481:6:0","typeDescriptions":{}}},"id":3989,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"87481:13:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int176","typeString":"int176"}},"src":"87468:26:0","typeDescriptions":{"typeIdentifier":"t_int176","typeString":"int176"}},"id":3991,"nodeType":"ExpressionStatement","src":"87468:26:0"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":3995,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":3993,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3983,"src":"87512:10:0","typeDescriptions":{"typeIdentifier":"t_int176","typeString":"int176"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":3994,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":3980,"src":"87526:5:0","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"87512:19:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"53616665436173743a2076616c756520646f65736e27742066697420696e203137362062697473","id":3996,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"87533:41:0","typeDescriptions":{"typeIdentifier":"t_stringliteral_4069e970f734339c7841e84a1b26f503bff22b76884c1168dc24e2e6af9b1e30","typeString":"literal_string \"SafeCast: value doesn't fit in 176 bits\""},"value":"SafeCast: value doesn't fit in 176 bits"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_4069e970f734339c7841e84a1b26f503bff22b76884c1168dc24e2e6af9b1e30","typeString":"literal_string \"SafeCast: value doesn't fit in 176 bits\""}],"id":3992,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"87504:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":3997,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"87504:71:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":3998,"nodeType":"ExpressionStatement","src":"87504:71:0"}]},"documentation":{"id":3978,"nodeType":"StructuredDocumentation","src":"87029:350:0","text":" @dev Returns the downcasted int176 from int256, reverting on\n overflow (when the input is less than smallest int176 or\n greater than largest int176).\n Counterpart to Solidity's `int176` operator.\n Requirements:\n - input must fit into 176 bits\n _Available since v4.7._"},"id":4000,"implemented":true,"kind":"function","modifiers":[],"name":"toInt176","nameLocation":"87393:8:0","nodeType":"FunctionDefinition","parameters":{"id":3981,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3980,"mutability":"mutable","name":"value","nameLocation":"87409:5:0","nodeType":"VariableDeclaration","scope":4000,"src":"87402:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":3979,"name":"int256","nodeType":"ElementaryTypeName","src":"87402:6:0","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"87401:14:0"},"returnParameters":{"id":3984,"nodeType":"ParameterList","parameters":[{"constant":false,"id":3983,"mutability":"mutable","name":"downcasted","nameLocation":"87446:10:0","nodeType":"VariableDeclaration","scope":4000,"src":"87439:17:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int176","typeString":"int176"},"typeName":{"id":3982,"name":"int176","nodeType":"ElementaryTypeName","src":"87439:6:0","typeDescriptions":{"typeIdentifier":"t_int176","typeString":"int176"}},"visibility":"internal"}],"src":"87438:19:0"},"scope":4512,"src":"87384:198:0","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":4022,"nodeType":"Block","src":"88017:124:0","statements":[{"expression":{"id":4013,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4008,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4006,"src":"88027:10:0","typeDescriptions":{"typeIdentifier":"t_int168","typeString":"int168"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":4011,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4003,"src":"88047:5:0","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":4010,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"88040:6:0","typeDescriptions":{"typeIdentifier":"t_type$_t_int168_$","typeString":"type(int168)"},"typeName":{"id":4009,"name":"int168","nodeType":"ElementaryTypeName","src":"88040:6:0","typeDescriptions":{}}},"id":4012,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"88040:13:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int168","typeString":"int168"}},"src":"88027:26:0","typeDescriptions":{"typeIdentifier":"t_int168","typeString":"int168"}},"id":4014,"nodeType":"ExpressionStatement","src":"88027:26:0"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":4018,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4016,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4006,"src":"88071:10:0","typeDescriptions":{"typeIdentifier":"t_int168","typeString":"int168"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":4017,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4003,"src":"88085:5:0","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"88071:19:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"53616665436173743a2076616c756520646f65736e27742066697420696e203136382062697473","id":4019,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"88092:41:0","typeDescriptions":{"typeIdentifier":"t_stringliteral_67ef32a3cbe7b34392347d335b0a7ae95c74a34ca40e4efb58f6c9a3154e85a1","typeString":"literal_string \"SafeCast: value doesn't fit in 168 bits\""},"value":"SafeCast: value doesn't fit in 168 bits"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_67ef32a3cbe7b34392347d335b0a7ae95c74a34ca40e4efb58f6c9a3154e85a1","typeString":"literal_string \"SafeCast: value doesn't fit in 168 bits\""}],"id":4015,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"88063:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":4020,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"88063:71:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4021,"nodeType":"ExpressionStatement","src":"88063:71:0"}]},"documentation":{"id":4001,"nodeType":"StructuredDocumentation","src":"87588:350:0","text":" @dev Returns the downcasted int168 from int256, reverting on\n overflow (when the input is less than smallest int168 or\n greater than largest int168).\n Counterpart to Solidity's `int168` operator.\n Requirements:\n - input must fit into 168 bits\n _Available since v4.7._"},"id":4023,"implemented":true,"kind":"function","modifiers":[],"name":"toInt168","nameLocation":"87952:8:0","nodeType":"FunctionDefinition","parameters":{"id":4004,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4003,"mutability":"mutable","name":"value","nameLocation":"87968:5:0","nodeType":"VariableDeclaration","scope":4023,"src":"87961:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":4002,"name":"int256","nodeType":"ElementaryTypeName","src":"87961:6:0","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"87960:14:0"},"returnParameters":{"id":4007,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4006,"mutability":"mutable","name":"downcasted","nameLocation":"88005:10:0","nodeType":"VariableDeclaration","scope":4023,"src":"87998:17:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int168","typeString":"int168"},"typeName":{"id":4005,"name":"int168","nodeType":"ElementaryTypeName","src":"87998:6:0","typeDescriptions":{"typeIdentifier":"t_int168","typeString":"int168"}},"visibility":"internal"}],"src":"87997:19:0"},"scope":4512,"src":"87943:198:0","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":4045,"nodeType":"Block","src":"88576:124:0","statements":[{"expression":{"id":4036,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4031,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4029,"src":"88586:10:0","typeDescriptions":{"typeIdentifier":"t_int160","typeString":"int160"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":4034,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4026,"src":"88606:5:0","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":4033,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"88599:6:0","typeDescriptions":{"typeIdentifier":"t_type$_t_int160_$","typeString":"type(int160)"},"typeName":{"id":4032,"name":"int160","nodeType":"ElementaryTypeName","src":"88599:6:0","typeDescriptions":{}}},"id":4035,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"88599:13:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int160","typeString":"int160"}},"src":"88586:26:0","typeDescriptions":{"typeIdentifier":"t_int160","typeString":"int160"}},"id":4037,"nodeType":"ExpressionStatement","src":"88586:26:0"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":4041,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4039,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4029,"src":"88630:10:0","typeDescriptions":{"typeIdentifier":"t_int160","typeString":"int160"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":4040,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4026,"src":"88644:5:0","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"88630:19:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"53616665436173743a2076616c756520646f65736e27742066697420696e203136302062697473","id":4042,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"88651:41:0","typeDescriptions":{"typeIdentifier":"t_stringliteral_976ecce9083debfe29d3a99b955facf24b8725f1b964d1a5bb4197ffcd60ab9d","typeString":"literal_string \"SafeCast: value doesn't fit in 160 bits\""},"value":"SafeCast: value doesn't fit in 160 bits"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_976ecce9083debfe29d3a99b955facf24b8725f1b964d1a5bb4197ffcd60ab9d","typeString":"literal_string \"SafeCast: value doesn't fit in 160 bits\""}],"id":4038,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"88622:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":4043,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"88622:71:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4044,"nodeType":"ExpressionStatement","src":"88622:71:0"}]},"documentation":{"id":4024,"nodeType":"StructuredDocumentation","src":"88147:350:0","text":" @dev Returns the downcasted int160 from int256, reverting on\n overflow (when the input is less than smallest int160 or\n greater than largest int160).\n Counterpart to Solidity's `int160` operator.\n Requirements:\n - input must fit into 160 bits\n _Available since v4.7._"},"id":4046,"implemented":true,"kind":"function","modifiers":[],"name":"toInt160","nameLocation":"88511:8:0","nodeType":"FunctionDefinition","parameters":{"id":4027,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4026,"mutability":"mutable","name":"value","nameLocation":"88527:5:0","nodeType":"VariableDeclaration","scope":4046,"src":"88520:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":4025,"name":"int256","nodeType":"ElementaryTypeName","src":"88520:6:0","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"88519:14:0"},"returnParameters":{"id":4030,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4029,"mutability":"mutable","name":"downcasted","nameLocation":"88564:10:0","nodeType":"VariableDeclaration","scope":4046,"src":"88557:17:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int160","typeString":"int160"},"typeName":{"id":4028,"name":"int160","nodeType":"ElementaryTypeName","src":"88557:6:0","typeDescriptions":{"typeIdentifier":"t_int160","typeString":"int160"}},"visibility":"internal"}],"src":"88556:19:0"},"scope":4512,"src":"88502:198:0","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":4068,"nodeType":"Block","src":"89135:124:0","statements":[{"expression":{"id":4059,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4054,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4052,"src":"89145:10:0","typeDescriptions":{"typeIdentifier":"t_int152","typeString":"int152"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":4057,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4049,"src":"89165:5:0","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":4056,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"89158:6:0","typeDescriptions":{"typeIdentifier":"t_type$_t_int152_$","typeString":"type(int152)"},"typeName":{"id":4055,"name":"int152","nodeType":"ElementaryTypeName","src":"89158:6:0","typeDescriptions":{}}},"id":4058,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"89158:13:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int152","typeString":"int152"}},"src":"89145:26:0","typeDescriptions":{"typeIdentifier":"t_int152","typeString":"int152"}},"id":4060,"nodeType":"ExpressionStatement","src":"89145:26:0"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":4064,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4062,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4052,"src":"89189:10:0","typeDescriptions":{"typeIdentifier":"t_int152","typeString":"int152"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":4063,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4049,"src":"89203:5:0","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"89189:19:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"53616665436173743a2076616c756520646f65736e27742066697420696e203135322062697473","id":4065,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"89210:41:0","typeDescriptions":{"typeIdentifier":"t_stringliteral_211cad43a2caf5f01e34af51190b8a7b6f3d9c195bd25586ea12242191b97831","typeString":"literal_string \"SafeCast: value doesn't fit in 152 bits\""},"value":"SafeCast: value doesn't fit in 152 bits"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_211cad43a2caf5f01e34af51190b8a7b6f3d9c195bd25586ea12242191b97831","typeString":"literal_string \"SafeCast: value doesn't fit in 152 bits\""}],"id":4061,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"89181:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":4066,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"89181:71:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4067,"nodeType":"ExpressionStatement","src":"89181:71:0"}]},"documentation":{"id":4047,"nodeType":"StructuredDocumentation","src":"88706:350:0","text":" @dev Returns the downcasted int152 from int256, reverting on\n overflow (when the input is less than smallest int152 or\n greater than largest int152).\n Counterpart to Solidity's `int152` operator.\n Requirements:\n - input must fit into 152 bits\n _Available since v4.7._"},"id":4069,"implemented":true,"kind":"function","modifiers":[],"name":"toInt152","nameLocation":"89070:8:0","nodeType":"FunctionDefinition","parameters":{"id":4050,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4049,"mutability":"mutable","name":"value","nameLocation":"89086:5:0","nodeType":"VariableDeclaration","scope":4069,"src":"89079:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":4048,"name":"int256","nodeType":"ElementaryTypeName","src":"89079:6:0","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"89078:14:0"},"returnParameters":{"id":4053,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4052,"mutability":"mutable","name":"downcasted","nameLocation":"89123:10:0","nodeType":"VariableDeclaration","scope":4069,"src":"89116:17:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int152","typeString":"int152"},"typeName":{"id":4051,"name":"int152","nodeType":"ElementaryTypeName","src":"89116:6:0","typeDescriptions":{"typeIdentifier":"t_int152","typeString":"int152"}},"visibility":"internal"}],"src":"89115:19:0"},"scope":4512,"src":"89061:198:0","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":4091,"nodeType":"Block","src":"89694:124:0","statements":[{"expression":{"id":4082,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4077,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4075,"src":"89704:10:0","typeDescriptions":{"typeIdentifier":"t_int144","typeString":"int144"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":4080,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4072,"src":"89724:5:0","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":4079,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"89717:6:0","typeDescriptions":{"typeIdentifier":"t_type$_t_int144_$","typeString":"type(int144)"},"typeName":{"id":4078,"name":"int144","nodeType":"ElementaryTypeName","src":"89717:6:0","typeDescriptions":{}}},"id":4081,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"89717:13:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int144","typeString":"int144"}},"src":"89704:26:0","typeDescriptions":{"typeIdentifier":"t_int144","typeString":"int144"}},"id":4083,"nodeType":"ExpressionStatement","src":"89704:26:0"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":4087,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4085,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4075,"src":"89748:10:0","typeDescriptions":{"typeIdentifier":"t_int144","typeString":"int144"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":4086,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4072,"src":"89762:5:0","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"89748:19:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"53616665436173743a2076616c756520646f65736e27742066697420696e203134342062697473","id":4088,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"89769:41:0","typeDescriptions":{"typeIdentifier":"t_stringliteral_17d8c5a6d3b2fd2517ba2e4a2ac70a3367cd362448f8338aaa6edf8bfd812bab","typeString":"literal_string \"SafeCast: value doesn't fit in 144 bits\""},"value":"SafeCast: value doesn't fit in 144 bits"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_17d8c5a6d3b2fd2517ba2e4a2ac70a3367cd362448f8338aaa6edf8bfd812bab","typeString":"literal_string \"SafeCast: value doesn't fit in 144 bits\""}],"id":4084,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"89740:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":4089,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"89740:71:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4090,"nodeType":"ExpressionStatement","src":"89740:71:0"}]},"documentation":{"id":4070,"nodeType":"StructuredDocumentation","src":"89265:350:0","text":" @dev Returns the downcasted int144 from int256, reverting on\n overflow (when the input is less than smallest int144 or\n greater than largest int144).\n Counterpart to Solidity's `int144` operator.\n Requirements:\n - input must fit into 144 bits\n _Available since v4.7._"},"id":4092,"implemented":true,"kind":"function","modifiers":[],"name":"toInt144","nameLocation":"89629:8:0","nodeType":"FunctionDefinition","parameters":{"id":4073,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4072,"mutability":"mutable","name":"value","nameLocation":"89645:5:0","nodeType":"VariableDeclaration","scope":4092,"src":"89638:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":4071,"name":"int256","nodeType":"ElementaryTypeName","src":"89638:6:0","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"89637:14:0"},"returnParameters":{"id":4076,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4075,"mutability":"mutable","name":"downcasted","nameLocation":"89682:10:0","nodeType":"VariableDeclaration","scope":4092,"src":"89675:17:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int144","typeString":"int144"},"typeName":{"id":4074,"name":"int144","nodeType":"ElementaryTypeName","src":"89675:6:0","typeDescriptions":{"typeIdentifier":"t_int144","typeString":"int144"}},"visibility":"internal"}],"src":"89674:19:0"},"scope":4512,"src":"89620:198:0","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":4114,"nodeType":"Block","src":"90253:124:0","statements":[{"expression":{"id":4105,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4100,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4098,"src":"90263:10:0","typeDescriptions":{"typeIdentifier":"t_int136","typeString":"int136"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":4103,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4095,"src":"90283:5:0","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":4102,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"90276:6:0","typeDescriptions":{"typeIdentifier":"t_type$_t_int136_$","typeString":"type(int136)"},"typeName":{"id":4101,"name":"int136","nodeType":"ElementaryTypeName","src":"90276:6:0","typeDescriptions":{}}},"id":4104,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"90276:13:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int136","typeString":"int136"}},"src":"90263:26:0","typeDescriptions":{"typeIdentifier":"t_int136","typeString":"int136"}},"id":4106,"nodeType":"ExpressionStatement","src":"90263:26:0"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":4110,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4108,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4098,"src":"90307:10:0","typeDescriptions":{"typeIdentifier":"t_int136","typeString":"int136"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":4109,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4095,"src":"90321:5:0","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"90307:19:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"53616665436173743a2076616c756520646f65736e27742066697420696e203133362062697473","id":4111,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"90328:41:0","typeDescriptions":{"typeIdentifier":"t_stringliteral_8b1f81e2e2913e1cee9dba7bcd9837bbf8a8122edaac4afc578271db3c25a56a","typeString":"literal_string \"SafeCast: value doesn't fit in 136 bits\""},"value":"SafeCast: value doesn't fit in 136 bits"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_8b1f81e2e2913e1cee9dba7bcd9837bbf8a8122edaac4afc578271db3c25a56a","typeString":"literal_string \"SafeCast: value doesn't fit in 136 bits\""}],"id":4107,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"90299:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":4112,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"90299:71:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4113,"nodeType":"ExpressionStatement","src":"90299:71:0"}]},"documentation":{"id":4093,"nodeType":"StructuredDocumentation","src":"89824:350:0","text":" @dev Returns the downcasted int136 from int256, reverting on\n overflow (when the input is less than smallest int136 or\n greater than largest int136).\n Counterpart to Solidity's `int136` operator.\n Requirements:\n - input must fit into 136 bits\n _Available since v4.7._"},"id":4115,"implemented":true,"kind":"function","modifiers":[],"name":"toInt136","nameLocation":"90188:8:0","nodeType":"FunctionDefinition","parameters":{"id":4096,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4095,"mutability":"mutable","name":"value","nameLocation":"90204:5:0","nodeType":"VariableDeclaration","scope":4115,"src":"90197:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":4094,"name":"int256","nodeType":"ElementaryTypeName","src":"90197:6:0","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"90196:14:0"},"returnParameters":{"id":4099,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4098,"mutability":"mutable","name":"downcasted","nameLocation":"90241:10:0","nodeType":"VariableDeclaration","scope":4115,"src":"90234:17:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int136","typeString":"int136"},"typeName":{"id":4097,"name":"int136","nodeType":"ElementaryTypeName","src":"90234:6:0","typeDescriptions":{"typeIdentifier":"t_int136","typeString":"int136"}},"visibility":"internal"}],"src":"90233:19:0"},"scope":4512,"src":"90179:198:0","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":4137,"nodeType":"Block","src":"90812:124:0","statements":[{"expression":{"id":4128,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4123,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4121,"src":"90822:10:0","typeDescriptions":{"typeIdentifier":"t_int128","typeString":"int128"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":4126,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4118,"src":"90842:5:0","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":4125,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"90835:6:0","typeDescriptions":{"typeIdentifier":"t_type$_t_int128_$","typeString":"type(int128)"},"typeName":{"id":4124,"name":"int128","nodeType":"ElementaryTypeName","src":"90835:6:0","typeDescriptions":{}}},"id":4127,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"90835:13:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int128","typeString":"int128"}},"src":"90822:26:0","typeDescriptions":{"typeIdentifier":"t_int128","typeString":"int128"}},"id":4129,"nodeType":"ExpressionStatement","src":"90822:26:0"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":4133,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4131,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4121,"src":"90866:10:0","typeDescriptions":{"typeIdentifier":"t_int128","typeString":"int128"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":4132,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4118,"src":"90880:5:0","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"90866:19:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"53616665436173743a2076616c756520646f65736e27742066697420696e203132382062697473","id":4134,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"90887:41:0","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":4130,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"90858:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":4135,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"90858:71:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4136,"nodeType":"ExpressionStatement","src":"90858:71:0"}]},"documentation":{"id":4116,"nodeType":"StructuredDocumentation","src":"90383:350:0","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":4138,"implemented":true,"kind":"function","modifiers":[],"name":"toInt128","nameLocation":"90747:8:0","nodeType":"FunctionDefinition","parameters":{"id":4119,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4118,"mutability":"mutable","name":"value","nameLocation":"90763:5:0","nodeType":"VariableDeclaration","scope":4138,"src":"90756:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":4117,"name":"int256","nodeType":"ElementaryTypeName","src":"90756:6:0","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"90755:14:0"},"returnParameters":{"id":4122,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4121,"mutability":"mutable","name":"downcasted","nameLocation":"90800:10:0","nodeType":"VariableDeclaration","scope":4138,"src":"90793:17:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int128","typeString":"int128"},"typeName":{"id":4120,"name":"int128","nodeType":"ElementaryTypeName","src":"90793:6:0","typeDescriptions":{"typeIdentifier":"t_int128","typeString":"int128"}},"visibility":"internal"}],"src":"90792:19:0"},"scope":4512,"src":"90738:198:0","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":4160,"nodeType":"Block","src":"91371:124:0","statements":[{"expression":{"id":4151,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4146,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4144,"src":"91381:10:0","typeDescriptions":{"typeIdentifier":"t_int120","typeString":"int120"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":4149,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4141,"src":"91401:5:0","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":4148,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"91394:6:0","typeDescriptions":{"typeIdentifier":"t_type$_t_int120_$","typeString":"type(int120)"},"typeName":{"id":4147,"name":"int120","nodeType":"ElementaryTypeName","src":"91394:6:0","typeDescriptions":{}}},"id":4150,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"91394:13:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int120","typeString":"int120"}},"src":"91381:26:0","typeDescriptions":{"typeIdentifier":"t_int120","typeString":"int120"}},"id":4152,"nodeType":"ExpressionStatement","src":"91381:26:0"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":4156,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4154,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4144,"src":"91425:10:0","typeDescriptions":{"typeIdentifier":"t_int120","typeString":"int120"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":4155,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4141,"src":"91439:5:0","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"91425:19:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"53616665436173743a2076616c756520646f65736e27742066697420696e203132302062697473","id":4157,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"91446:41:0","typeDescriptions":{"typeIdentifier":"t_stringliteral_3c40c26bb27060cce77002ca0c426dcc1bef2d367c195ca2eb24bd8b2cc1bb09","typeString":"literal_string \"SafeCast: value doesn't fit in 120 bits\""},"value":"SafeCast: value doesn't fit in 120 bits"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_3c40c26bb27060cce77002ca0c426dcc1bef2d367c195ca2eb24bd8b2cc1bb09","typeString":"literal_string \"SafeCast: value doesn't fit in 120 bits\""}],"id":4153,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"91417:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":4158,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"91417:71:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4159,"nodeType":"ExpressionStatement","src":"91417:71:0"}]},"documentation":{"id":4139,"nodeType":"StructuredDocumentation","src":"90942:350:0","text":" @dev Returns the downcasted int120 from int256, reverting on\n overflow (when the input is less than smallest int120 or\n greater than largest int120).\n Counterpart to Solidity's `int120` operator.\n Requirements:\n - input must fit into 120 bits\n _Available since v4.7._"},"id":4161,"implemented":true,"kind":"function","modifiers":[],"name":"toInt120","nameLocation":"91306:8:0","nodeType":"FunctionDefinition","parameters":{"id":4142,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4141,"mutability":"mutable","name":"value","nameLocation":"91322:5:0","nodeType":"VariableDeclaration","scope":4161,"src":"91315:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":4140,"name":"int256","nodeType":"ElementaryTypeName","src":"91315:6:0","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"91314:14:0"},"returnParameters":{"id":4145,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4144,"mutability":"mutable","name":"downcasted","nameLocation":"91359:10:0","nodeType":"VariableDeclaration","scope":4161,"src":"91352:17:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int120","typeString":"int120"},"typeName":{"id":4143,"name":"int120","nodeType":"ElementaryTypeName","src":"91352:6:0","typeDescriptions":{"typeIdentifier":"t_int120","typeString":"int120"}},"visibility":"internal"}],"src":"91351:19:0"},"scope":4512,"src":"91297:198:0","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":4183,"nodeType":"Block","src":"91930:124:0","statements":[{"expression":{"id":4174,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4169,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4167,"src":"91940:10:0","typeDescriptions":{"typeIdentifier":"t_int112","typeString":"int112"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":4172,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4164,"src":"91960:5:0","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":4171,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"91953:6:0","typeDescriptions":{"typeIdentifier":"t_type$_t_int112_$","typeString":"type(int112)"},"typeName":{"id":4170,"name":"int112","nodeType":"ElementaryTypeName","src":"91953:6:0","typeDescriptions":{}}},"id":4173,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"91953:13:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int112","typeString":"int112"}},"src":"91940:26:0","typeDescriptions":{"typeIdentifier":"t_int112","typeString":"int112"}},"id":4175,"nodeType":"ExpressionStatement","src":"91940:26:0"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":4179,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4177,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4167,"src":"91984:10:0","typeDescriptions":{"typeIdentifier":"t_int112","typeString":"int112"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":4178,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4164,"src":"91998:5:0","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"91984:19:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"53616665436173743a2076616c756520646f65736e27742066697420696e203131322062697473","id":4180,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"92005:41:0","typeDescriptions":{"typeIdentifier":"t_stringliteral_45659ae152ef697531e1c1115de07c87af91ac22466c3e76b808821799776efd","typeString":"literal_string \"SafeCast: value doesn't fit in 112 bits\""},"value":"SafeCast: value doesn't fit in 112 bits"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_45659ae152ef697531e1c1115de07c87af91ac22466c3e76b808821799776efd","typeString":"literal_string \"SafeCast: value doesn't fit in 112 bits\""}],"id":4176,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"91976:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":4181,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"91976:71:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4182,"nodeType":"ExpressionStatement","src":"91976:71:0"}]},"documentation":{"id":4162,"nodeType":"StructuredDocumentation","src":"91501:350:0","text":" @dev Returns the downcasted int112 from int256, reverting on\n overflow (when the input is less than smallest int112 or\n greater than largest int112).\n Counterpart to Solidity's `int112` operator.\n Requirements:\n - input must fit into 112 bits\n _Available since v4.7._"},"id":4184,"implemented":true,"kind":"function","modifiers":[],"name":"toInt112","nameLocation":"91865:8:0","nodeType":"FunctionDefinition","parameters":{"id":4165,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4164,"mutability":"mutable","name":"value","nameLocation":"91881:5:0","nodeType":"VariableDeclaration","scope":4184,"src":"91874:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":4163,"name":"int256","nodeType":"ElementaryTypeName","src":"91874:6:0","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"91873:14:0"},"returnParameters":{"id":4168,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4167,"mutability":"mutable","name":"downcasted","nameLocation":"91918:10:0","nodeType":"VariableDeclaration","scope":4184,"src":"91911:17:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int112","typeString":"int112"},"typeName":{"id":4166,"name":"int112","nodeType":"ElementaryTypeName","src":"91911:6:0","typeDescriptions":{"typeIdentifier":"t_int112","typeString":"int112"}},"visibility":"internal"}],"src":"91910:19:0"},"scope":4512,"src":"91856:198:0","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":4206,"nodeType":"Block","src":"92489:124:0","statements":[{"expression":{"id":4197,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4192,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4190,"src":"92499:10:0","typeDescriptions":{"typeIdentifier":"t_int104","typeString":"int104"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":4195,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4187,"src":"92519:5:0","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":4194,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"92512:6:0","typeDescriptions":{"typeIdentifier":"t_type$_t_int104_$","typeString":"type(int104)"},"typeName":{"id":4193,"name":"int104","nodeType":"ElementaryTypeName","src":"92512:6:0","typeDescriptions":{}}},"id":4196,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"92512:13:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int104","typeString":"int104"}},"src":"92499:26:0","typeDescriptions":{"typeIdentifier":"t_int104","typeString":"int104"}},"id":4198,"nodeType":"ExpressionStatement","src":"92499:26:0"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":4202,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4200,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4190,"src":"92543:10:0","typeDescriptions":{"typeIdentifier":"t_int104","typeString":"int104"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":4201,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4187,"src":"92557:5:0","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"92543:19:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"53616665436173743a2076616c756520646f65736e27742066697420696e203130342062697473","id":4203,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"92564:41:0","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":4199,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"92535:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":4204,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"92535:71:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4205,"nodeType":"ExpressionStatement","src":"92535:71:0"}]},"documentation":{"id":4185,"nodeType":"StructuredDocumentation","src":"92060:350:0","text":" @dev Returns the downcasted int104 from int256, reverting on\n overflow (when the input is less than smallest int104 or\n greater than largest int104).\n Counterpart to Solidity's `int104` operator.\n Requirements:\n - input must fit into 104 bits\n _Available since v4.7._"},"id":4207,"implemented":true,"kind":"function","modifiers":[],"name":"toInt104","nameLocation":"92424:8:0","nodeType":"FunctionDefinition","parameters":{"id":4188,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4187,"mutability":"mutable","name":"value","nameLocation":"92440:5:0","nodeType":"VariableDeclaration","scope":4207,"src":"92433:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":4186,"name":"int256","nodeType":"ElementaryTypeName","src":"92433:6:0","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"92432:14:0"},"returnParameters":{"id":4191,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4190,"mutability":"mutable","name":"downcasted","nameLocation":"92477:10:0","nodeType":"VariableDeclaration","scope":4207,"src":"92470:17:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int104","typeString":"int104"},"typeName":{"id":4189,"name":"int104","nodeType":"ElementaryTypeName","src":"92470:6:0","typeDescriptions":{"typeIdentifier":"t_int104","typeString":"int104"}},"visibility":"internal"}],"src":"92469:19:0"},"scope":4512,"src":"92415:198:0","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":4229,"nodeType":"Block","src":"93041:122:0","statements":[{"expression":{"id":4220,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4215,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4213,"src":"93051:10:0","typeDescriptions":{"typeIdentifier":"t_int96","typeString":"int96"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":4218,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4210,"src":"93070:5:0","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":4217,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"93064:5:0","typeDescriptions":{"typeIdentifier":"t_type$_t_int96_$","typeString":"type(int96)"},"typeName":{"id":4216,"name":"int96","nodeType":"ElementaryTypeName","src":"93064:5:0","typeDescriptions":{}}},"id":4219,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"93064:12:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int96","typeString":"int96"}},"src":"93051:25:0","typeDescriptions":{"typeIdentifier":"t_int96","typeString":"int96"}},"id":4221,"nodeType":"ExpressionStatement","src":"93051:25:0"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":4225,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4223,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4213,"src":"93094:10:0","typeDescriptions":{"typeIdentifier":"t_int96","typeString":"int96"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":4224,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4210,"src":"93108:5:0","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"93094:19:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"53616665436173743a2076616c756520646f65736e27742066697420696e2039362062697473","id":4226,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"93115:40:0","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":4222,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"93086:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":4227,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"93086:70:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4228,"nodeType":"ExpressionStatement","src":"93086:70:0"}]},"documentation":{"id":4208,"nodeType":"StructuredDocumentation","src":"92619:345:0","text":" @dev Returns the downcasted int96 from int256, reverting on\n overflow (when the input is less than smallest int96 or\n greater than largest int96).\n Counterpart to Solidity's `int96` operator.\n Requirements:\n - input must fit into 96 bits\n _Available since v4.7._"},"id":4230,"implemented":true,"kind":"function","modifiers":[],"name":"toInt96","nameLocation":"92978:7:0","nodeType":"FunctionDefinition","parameters":{"id":4211,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4210,"mutability":"mutable","name":"value","nameLocation":"92993:5:0","nodeType":"VariableDeclaration","scope":4230,"src":"92986:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":4209,"name":"int256","nodeType":"ElementaryTypeName","src":"92986:6:0","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"92985:14:0"},"returnParameters":{"id":4214,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4213,"mutability":"mutable","name":"downcasted","nameLocation":"93029:10:0","nodeType":"VariableDeclaration","scope":4230,"src":"93023:16:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int96","typeString":"int96"},"typeName":{"id":4212,"name":"int96","nodeType":"ElementaryTypeName","src":"93023:5:0","typeDescriptions":{"typeIdentifier":"t_int96","typeString":"int96"}},"visibility":"internal"}],"src":"93022:18:0"},"scope":4512,"src":"92969:194:0","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":4252,"nodeType":"Block","src":"93591:122:0","statements":[{"expression":{"id":4243,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4238,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4236,"src":"93601:10:0","typeDescriptions":{"typeIdentifier":"t_int88","typeString":"int88"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":4241,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4233,"src":"93620:5:0","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":4240,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"93614:5:0","typeDescriptions":{"typeIdentifier":"t_type$_t_int88_$","typeString":"type(int88)"},"typeName":{"id":4239,"name":"int88","nodeType":"ElementaryTypeName","src":"93614:5:0","typeDescriptions":{}}},"id":4242,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"93614:12:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int88","typeString":"int88"}},"src":"93601:25:0","typeDescriptions":{"typeIdentifier":"t_int88","typeString":"int88"}},"id":4244,"nodeType":"ExpressionStatement","src":"93601:25:0"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":4248,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4246,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4236,"src":"93644:10:0","typeDescriptions":{"typeIdentifier":"t_int88","typeString":"int88"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":4247,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4233,"src":"93658:5:0","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"93644:19:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"53616665436173743a2076616c756520646f65736e27742066697420696e2038382062697473","id":4249,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"93665:40:0","typeDescriptions":{"typeIdentifier":"t_stringliteral_ae080bd7a76a46f0a0caf00941bc2cdf6002799ca2813a3af7295019576d715d","typeString":"literal_string \"SafeCast: value doesn't fit in 88 bits\""},"value":"SafeCast: value doesn't fit in 88 bits"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_ae080bd7a76a46f0a0caf00941bc2cdf6002799ca2813a3af7295019576d715d","typeString":"literal_string \"SafeCast: value doesn't fit in 88 bits\""}],"id":4245,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"93636:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":4250,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"93636:70:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4251,"nodeType":"ExpressionStatement","src":"93636:70:0"}]},"documentation":{"id":4231,"nodeType":"StructuredDocumentation","src":"93169:345:0","text":" @dev Returns the downcasted int88 from int256, reverting on\n overflow (when the input is less than smallest int88 or\n greater than largest int88).\n Counterpart to Solidity's `int88` operator.\n Requirements:\n - input must fit into 88 bits\n _Available since v4.7._"},"id":4253,"implemented":true,"kind":"function","modifiers":[],"name":"toInt88","nameLocation":"93528:7:0","nodeType":"FunctionDefinition","parameters":{"id":4234,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4233,"mutability":"mutable","name":"value","nameLocation":"93543:5:0","nodeType":"VariableDeclaration","scope":4253,"src":"93536:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":4232,"name":"int256","nodeType":"ElementaryTypeName","src":"93536:6:0","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"93535:14:0"},"returnParameters":{"id":4237,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4236,"mutability":"mutable","name":"downcasted","nameLocation":"93579:10:0","nodeType":"VariableDeclaration","scope":4253,"src":"93573:16:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int88","typeString":"int88"},"typeName":{"id":4235,"name":"int88","nodeType":"ElementaryTypeName","src":"93573:5:0","typeDescriptions":{"typeIdentifier":"t_int88","typeString":"int88"}},"visibility":"internal"}],"src":"93572:18:0"},"scope":4512,"src":"93519:194:0","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":4275,"nodeType":"Block","src":"94141:122:0","statements":[{"expression":{"id":4266,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4261,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4259,"src":"94151:10:0","typeDescriptions":{"typeIdentifier":"t_int80","typeString":"int80"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":4264,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4256,"src":"94170:5:0","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":4263,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"94164:5:0","typeDescriptions":{"typeIdentifier":"t_type$_t_int80_$","typeString":"type(int80)"},"typeName":{"id":4262,"name":"int80","nodeType":"ElementaryTypeName","src":"94164:5:0","typeDescriptions":{}}},"id":4265,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"94164:12:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int80","typeString":"int80"}},"src":"94151:25:0","typeDescriptions":{"typeIdentifier":"t_int80","typeString":"int80"}},"id":4267,"nodeType":"ExpressionStatement","src":"94151:25:0"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":4271,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4269,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4259,"src":"94194:10:0","typeDescriptions":{"typeIdentifier":"t_int80","typeString":"int80"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":4270,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4256,"src":"94208:5:0","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"94194:19:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"53616665436173743a2076616c756520646f65736e27742066697420696e2038302062697473","id":4272,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"94215:40:0","typeDescriptions":{"typeIdentifier":"t_stringliteral_3cba87c71fade7d3cd7b673c159aab98afc040a5369691a33559d905d20ab5d1","typeString":"literal_string \"SafeCast: value doesn't fit in 80 bits\""},"value":"SafeCast: value doesn't fit in 80 bits"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_3cba87c71fade7d3cd7b673c159aab98afc040a5369691a33559d905d20ab5d1","typeString":"literal_string \"SafeCast: value doesn't fit in 80 bits\""}],"id":4268,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"94186:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":4273,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"94186:70:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4274,"nodeType":"ExpressionStatement","src":"94186:70:0"}]},"documentation":{"id":4254,"nodeType":"StructuredDocumentation","src":"93719:345:0","text":" @dev Returns the downcasted int80 from int256, reverting on\n overflow (when the input is less than smallest int80 or\n greater than largest int80).\n Counterpart to Solidity's `int80` operator.\n Requirements:\n - input must fit into 80 bits\n _Available since v4.7._"},"id":4276,"implemented":true,"kind":"function","modifiers":[],"name":"toInt80","nameLocation":"94078:7:0","nodeType":"FunctionDefinition","parameters":{"id":4257,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4256,"mutability":"mutable","name":"value","nameLocation":"94093:5:0","nodeType":"VariableDeclaration","scope":4276,"src":"94086:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":4255,"name":"int256","nodeType":"ElementaryTypeName","src":"94086:6:0","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"94085:14:0"},"returnParameters":{"id":4260,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4259,"mutability":"mutable","name":"downcasted","nameLocation":"94129:10:0","nodeType":"VariableDeclaration","scope":4276,"src":"94123:16:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int80","typeString":"int80"},"typeName":{"id":4258,"name":"int80","nodeType":"ElementaryTypeName","src":"94123:5:0","typeDescriptions":{"typeIdentifier":"t_int80","typeString":"int80"}},"visibility":"internal"}],"src":"94122:18:0"},"scope":4512,"src":"94069:194:0","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":4298,"nodeType":"Block","src":"94691:122:0","statements":[{"expression":{"id":4289,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4284,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4282,"src":"94701:10:0","typeDescriptions":{"typeIdentifier":"t_int72","typeString":"int72"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":4287,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4279,"src":"94720:5:0","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":4286,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"94714:5:0","typeDescriptions":{"typeIdentifier":"t_type$_t_int72_$","typeString":"type(int72)"},"typeName":{"id":4285,"name":"int72","nodeType":"ElementaryTypeName","src":"94714:5:0","typeDescriptions":{}}},"id":4288,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"94714:12:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int72","typeString":"int72"}},"src":"94701:25:0","typeDescriptions":{"typeIdentifier":"t_int72","typeString":"int72"}},"id":4290,"nodeType":"ExpressionStatement","src":"94701:25:0"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":4294,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4292,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4282,"src":"94744:10:0","typeDescriptions":{"typeIdentifier":"t_int72","typeString":"int72"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":4293,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4279,"src":"94758:5:0","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"94744:19:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"53616665436173743a2076616c756520646f65736e27742066697420696e2037322062697473","id":4295,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"94765:40:0","typeDescriptions":{"typeIdentifier":"t_stringliteral_71584237cc5250b8f417982144a947efe8f4c76feba008ff32ac480e69d60606","typeString":"literal_string \"SafeCast: value doesn't fit in 72 bits\""},"value":"SafeCast: value doesn't fit in 72 bits"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_71584237cc5250b8f417982144a947efe8f4c76feba008ff32ac480e69d60606","typeString":"literal_string \"SafeCast: value doesn't fit in 72 bits\""}],"id":4291,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"94736:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":4296,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"94736:70:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4297,"nodeType":"ExpressionStatement","src":"94736:70:0"}]},"documentation":{"id":4277,"nodeType":"StructuredDocumentation","src":"94269:345:0","text":" @dev Returns the downcasted int72 from int256, reverting on\n overflow (when the input is less than smallest int72 or\n greater than largest int72).\n Counterpart to Solidity's `int72` operator.\n Requirements:\n - input must fit into 72 bits\n _Available since v4.7._"},"id":4299,"implemented":true,"kind":"function","modifiers":[],"name":"toInt72","nameLocation":"94628:7:0","nodeType":"FunctionDefinition","parameters":{"id":4280,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4279,"mutability":"mutable","name":"value","nameLocation":"94643:5:0","nodeType":"VariableDeclaration","scope":4299,"src":"94636:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":4278,"name":"int256","nodeType":"ElementaryTypeName","src":"94636:6:0","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"94635:14:0"},"returnParameters":{"id":4283,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4282,"mutability":"mutable","name":"downcasted","nameLocation":"94679:10:0","nodeType":"VariableDeclaration","scope":4299,"src":"94673:16:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int72","typeString":"int72"},"typeName":{"id":4281,"name":"int72","nodeType":"ElementaryTypeName","src":"94673:5:0","typeDescriptions":{"typeIdentifier":"t_int72","typeString":"int72"}},"visibility":"internal"}],"src":"94672:18:0"},"scope":4512,"src":"94619:194:0","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":4321,"nodeType":"Block","src":"95241:122:0","statements":[{"expression":{"id":4312,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4307,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4305,"src":"95251:10:0","typeDescriptions":{"typeIdentifier":"t_int64","typeString":"int64"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":4310,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4302,"src":"95270:5:0","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":4309,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"95264:5:0","typeDescriptions":{"typeIdentifier":"t_type$_t_int64_$","typeString":"type(int64)"},"typeName":{"id":4308,"name":"int64","nodeType":"ElementaryTypeName","src":"95264:5:0","typeDescriptions":{}}},"id":4311,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"95264:12:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int64","typeString":"int64"}},"src":"95251:25:0","typeDescriptions":{"typeIdentifier":"t_int64","typeString":"int64"}},"id":4313,"nodeType":"ExpressionStatement","src":"95251:25:0"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":4317,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4315,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4305,"src":"95294:10:0","typeDescriptions":{"typeIdentifier":"t_int64","typeString":"int64"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":4316,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4302,"src":"95308:5:0","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"95294:19:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"53616665436173743a2076616c756520646f65736e27742066697420696e2036342062697473","id":4318,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"95315:40:0","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":4314,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"95286:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":4319,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"95286:70:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4320,"nodeType":"ExpressionStatement","src":"95286:70:0"}]},"documentation":{"id":4300,"nodeType":"StructuredDocumentation","src":"94819:345:0","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":4322,"implemented":true,"kind":"function","modifiers":[],"name":"toInt64","nameLocation":"95178:7:0","nodeType":"FunctionDefinition","parameters":{"id":4303,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4302,"mutability":"mutable","name":"value","nameLocation":"95193:5:0","nodeType":"VariableDeclaration","scope":4322,"src":"95186:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":4301,"name":"int256","nodeType":"ElementaryTypeName","src":"95186:6:0","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"95185:14:0"},"returnParameters":{"id":4306,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4305,"mutability":"mutable","name":"downcasted","nameLocation":"95229:10:0","nodeType":"VariableDeclaration","scope":4322,"src":"95223:16:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int64","typeString":"int64"},"typeName":{"id":4304,"name":"int64","nodeType":"ElementaryTypeName","src":"95223:5:0","typeDescriptions":{"typeIdentifier":"t_int64","typeString":"int64"}},"visibility":"internal"}],"src":"95222:18:0"},"scope":4512,"src":"95169:194:0","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":4344,"nodeType":"Block","src":"95791:122:0","statements":[{"expression":{"id":4335,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4330,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4328,"src":"95801:10:0","typeDescriptions":{"typeIdentifier":"t_int56","typeString":"int56"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":4333,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4325,"src":"95820:5:0","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":4332,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"95814:5:0","typeDescriptions":{"typeIdentifier":"t_type$_t_int56_$","typeString":"type(int56)"},"typeName":{"id":4331,"name":"int56","nodeType":"ElementaryTypeName","src":"95814:5:0","typeDescriptions":{}}},"id":4334,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"95814:12:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int56","typeString":"int56"}},"src":"95801:25:0","typeDescriptions":{"typeIdentifier":"t_int56","typeString":"int56"}},"id":4336,"nodeType":"ExpressionStatement","src":"95801:25:0"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":4340,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4338,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4328,"src":"95844:10:0","typeDescriptions":{"typeIdentifier":"t_int56","typeString":"int56"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":4339,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4325,"src":"95858:5:0","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"95844:19:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"53616665436173743a2076616c756520646f65736e27742066697420696e2035362062697473","id":4341,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"95865:40:0","typeDescriptions":{"typeIdentifier":"t_stringliteral_656ad93b5ff6665bfe05d97d51fad7c02ad79e6c43bef066c042a6900f450bc5","typeString":"literal_string \"SafeCast: value doesn't fit in 56 bits\""},"value":"SafeCast: value doesn't fit in 56 bits"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_656ad93b5ff6665bfe05d97d51fad7c02ad79e6c43bef066c042a6900f450bc5","typeString":"literal_string \"SafeCast: value doesn't fit in 56 bits\""}],"id":4337,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"95836:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":4342,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"95836:70:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4343,"nodeType":"ExpressionStatement","src":"95836:70:0"}]},"documentation":{"id":4323,"nodeType":"StructuredDocumentation","src":"95369:345:0","text":" @dev Returns the downcasted int56 from int256, reverting on\n overflow (when the input is less than smallest int56 or\n greater than largest int56).\n Counterpart to Solidity's `int56` operator.\n Requirements:\n - input must fit into 56 bits\n _Available since v4.7._"},"id":4345,"implemented":true,"kind":"function","modifiers":[],"name":"toInt56","nameLocation":"95728:7:0","nodeType":"FunctionDefinition","parameters":{"id":4326,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4325,"mutability":"mutable","name":"value","nameLocation":"95743:5:0","nodeType":"VariableDeclaration","scope":4345,"src":"95736:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":4324,"name":"int256","nodeType":"ElementaryTypeName","src":"95736:6:0","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"95735:14:0"},"returnParameters":{"id":4329,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4328,"mutability":"mutable","name":"downcasted","nameLocation":"95779:10:0","nodeType":"VariableDeclaration","scope":4345,"src":"95773:16:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int56","typeString":"int56"},"typeName":{"id":4327,"name":"int56","nodeType":"ElementaryTypeName","src":"95773:5:0","typeDescriptions":{"typeIdentifier":"t_int56","typeString":"int56"}},"visibility":"internal"}],"src":"95772:18:0"},"scope":4512,"src":"95719:194:0","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":4367,"nodeType":"Block","src":"96341:122:0","statements":[{"expression":{"id":4358,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4353,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4351,"src":"96351:10:0","typeDescriptions":{"typeIdentifier":"t_int48","typeString":"int48"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":4356,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4348,"src":"96370:5:0","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":4355,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"96364:5:0","typeDescriptions":{"typeIdentifier":"t_type$_t_int48_$","typeString":"type(int48)"},"typeName":{"id":4354,"name":"int48","nodeType":"ElementaryTypeName","src":"96364:5:0","typeDescriptions":{}}},"id":4357,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"96364:12:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int48","typeString":"int48"}},"src":"96351:25:0","typeDescriptions":{"typeIdentifier":"t_int48","typeString":"int48"}},"id":4359,"nodeType":"ExpressionStatement","src":"96351:25:0"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":4363,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4361,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4351,"src":"96394:10:0","typeDescriptions":{"typeIdentifier":"t_int48","typeString":"int48"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":4362,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4348,"src":"96408:5:0","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"96394:19:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"53616665436173743a2076616c756520646f65736e27742066697420696e2034382062697473","id":4364,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"96415:40:0","typeDescriptions":{"typeIdentifier":"t_stringliteral_599034f9324dd4e988c6cea5a00a30f53147fec1b01559682f18cd840028f495","typeString":"literal_string \"SafeCast: value doesn't fit in 48 bits\""},"value":"SafeCast: value doesn't fit in 48 bits"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_599034f9324dd4e988c6cea5a00a30f53147fec1b01559682f18cd840028f495","typeString":"literal_string \"SafeCast: value doesn't fit in 48 bits\""}],"id":4360,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"96386:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":4365,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"96386:70:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4366,"nodeType":"ExpressionStatement","src":"96386:70:0"}]},"documentation":{"id":4346,"nodeType":"StructuredDocumentation","src":"95919:345:0","text":" @dev Returns the downcasted int48 from int256, reverting on\n overflow (when the input is less than smallest int48 or\n greater than largest int48).\n Counterpart to Solidity's `int48` operator.\n Requirements:\n - input must fit into 48 bits\n _Available since v4.7._"},"id":4368,"implemented":true,"kind":"function","modifiers":[],"name":"toInt48","nameLocation":"96278:7:0","nodeType":"FunctionDefinition","parameters":{"id":4349,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4348,"mutability":"mutable","name":"value","nameLocation":"96293:5:0","nodeType":"VariableDeclaration","scope":4368,"src":"96286:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":4347,"name":"int256","nodeType":"ElementaryTypeName","src":"96286:6:0","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"96285:14:0"},"returnParameters":{"id":4352,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4351,"mutability":"mutable","name":"downcasted","nameLocation":"96329:10:0","nodeType":"VariableDeclaration","scope":4368,"src":"96323:16:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int48","typeString":"int48"},"typeName":{"id":4350,"name":"int48","nodeType":"ElementaryTypeName","src":"96323:5:0","typeDescriptions":{"typeIdentifier":"t_int48","typeString":"int48"}},"visibility":"internal"}],"src":"96322:18:0"},"scope":4512,"src":"96269:194:0","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":4390,"nodeType":"Block","src":"96891:122:0","statements":[{"expression":{"id":4381,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4376,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4374,"src":"96901:10:0","typeDescriptions":{"typeIdentifier":"t_int40","typeString":"int40"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":4379,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4371,"src":"96920:5:0","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":4378,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"96914:5:0","typeDescriptions":{"typeIdentifier":"t_type$_t_int40_$","typeString":"type(int40)"},"typeName":{"id":4377,"name":"int40","nodeType":"ElementaryTypeName","src":"96914:5:0","typeDescriptions":{}}},"id":4380,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"96914:12:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int40","typeString":"int40"}},"src":"96901:25:0","typeDescriptions":{"typeIdentifier":"t_int40","typeString":"int40"}},"id":4382,"nodeType":"ExpressionStatement","src":"96901:25:0"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":4386,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4384,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4374,"src":"96944:10:0","typeDescriptions":{"typeIdentifier":"t_int40","typeString":"int40"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":4385,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4371,"src":"96958:5:0","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"96944:19:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"53616665436173743a2076616c756520646f65736e27742066697420696e2034302062697473","id":4387,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"96965:40:0","typeDescriptions":{"typeIdentifier":"t_stringliteral_b23559c58b98a5d3ed7016699c7171ac8defa5a1d180f9a9ffa60468a5701d37","typeString":"literal_string \"SafeCast: value doesn't fit in 40 bits\""},"value":"SafeCast: value doesn't fit in 40 bits"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_b23559c58b98a5d3ed7016699c7171ac8defa5a1d180f9a9ffa60468a5701d37","typeString":"literal_string \"SafeCast: value doesn't fit in 40 bits\""}],"id":4383,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"96936:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":4388,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"96936:70:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4389,"nodeType":"ExpressionStatement","src":"96936:70:0"}]},"documentation":{"id":4369,"nodeType":"StructuredDocumentation","src":"96469:345:0","text":" @dev Returns the downcasted int40 from int256, reverting on\n overflow (when the input is less than smallest int40 or\n greater than largest int40).\n Counterpart to Solidity's `int40` operator.\n Requirements:\n - input must fit into 40 bits\n _Available since v4.7._"},"id":4391,"implemented":true,"kind":"function","modifiers":[],"name":"toInt40","nameLocation":"96828:7:0","nodeType":"FunctionDefinition","parameters":{"id":4372,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4371,"mutability":"mutable","name":"value","nameLocation":"96843:5:0","nodeType":"VariableDeclaration","scope":4391,"src":"96836:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":4370,"name":"int256","nodeType":"ElementaryTypeName","src":"96836:6:0","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"96835:14:0"},"returnParameters":{"id":4375,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4374,"mutability":"mutable","name":"downcasted","nameLocation":"96879:10:0","nodeType":"VariableDeclaration","scope":4391,"src":"96873:16:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int40","typeString":"int40"},"typeName":{"id":4373,"name":"int40","nodeType":"ElementaryTypeName","src":"96873:5:0","typeDescriptions":{"typeIdentifier":"t_int40","typeString":"int40"}},"visibility":"internal"}],"src":"96872:18:0"},"scope":4512,"src":"96819:194:0","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":4413,"nodeType":"Block","src":"97441:122:0","statements":[{"expression":{"id":4404,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4399,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4397,"src":"97451:10:0","typeDescriptions":{"typeIdentifier":"t_int32","typeString":"int32"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":4402,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4394,"src":"97470:5:0","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":4401,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"97464:5:0","typeDescriptions":{"typeIdentifier":"t_type$_t_int32_$","typeString":"type(int32)"},"typeName":{"id":4400,"name":"int32","nodeType":"ElementaryTypeName","src":"97464:5:0","typeDescriptions":{}}},"id":4403,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"97464:12:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int32","typeString":"int32"}},"src":"97451:25:0","typeDescriptions":{"typeIdentifier":"t_int32","typeString":"int32"}},"id":4405,"nodeType":"ExpressionStatement","src":"97451:25:0"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":4409,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4407,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4397,"src":"97494:10:0","typeDescriptions":{"typeIdentifier":"t_int32","typeString":"int32"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":4408,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4394,"src":"97508:5:0","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"97494:19:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"53616665436173743a2076616c756520646f65736e27742066697420696e2033322062697473","id":4410,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"97515:40:0","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":4406,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"97486:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":4411,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"97486:70:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4412,"nodeType":"ExpressionStatement","src":"97486:70:0"}]},"documentation":{"id":4392,"nodeType":"StructuredDocumentation","src":"97019:345:0","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":4414,"implemented":true,"kind":"function","modifiers":[],"name":"toInt32","nameLocation":"97378:7:0","nodeType":"FunctionDefinition","parameters":{"id":4395,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4394,"mutability":"mutable","name":"value","nameLocation":"97393:5:0","nodeType":"VariableDeclaration","scope":4414,"src":"97386:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":4393,"name":"int256","nodeType":"ElementaryTypeName","src":"97386:6:0","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"97385:14:0"},"returnParameters":{"id":4398,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4397,"mutability":"mutable","name":"downcasted","nameLocation":"97429:10:0","nodeType":"VariableDeclaration","scope":4414,"src":"97423:16:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int32","typeString":"int32"},"typeName":{"id":4396,"name":"int32","nodeType":"ElementaryTypeName","src":"97423:5:0","typeDescriptions":{"typeIdentifier":"t_int32","typeString":"int32"}},"visibility":"internal"}],"src":"97422:18:0"},"scope":4512,"src":"97369:194:0","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":4436,"nodeType":"Block","src":"97991:122:0","statements":[{"expression":{"id":4427,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4422,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4420,"src":"98001:10:0","typeDescriptions":{"typeIdentifier":"t_int24","typeString":"int24"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":4425,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4417,"src":"98020:5:0","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":4424,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"98014:5:0","typeDescriptions":{"typeIdentifier":"t_type$_t_int24_$","typeString":"type(int24)"},"typeName":{"id":4423,"name":"int24","nodeType":"ElementaryTypeName","src":"98014:5:0","typeDescriptions":{}}},"id":4426,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"98014:12:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int24","typeString":"int24"}},"src":"98001:25:0","typeDescriptions":{"typeIdentifier":"t_int24","typeString":"int24"}},"id":4428,"nodeType":"ExpressionStatement","src":"98001:25:0"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":4432,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4430,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4420,"src":"98044:10:0","typeDescriptions":{"typeIdentifier":"t_int24","typeString":"int24"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":4431,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4417,"src":"98058:5:0","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"98044:19:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"53616665436173743a2076616c756520646f65736e27742066697420696e2032342062697473","id":4433,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"98065:40:0","typeDescriptions":{"typeIdentifier":"t_stringliteral_f68b65aaf4574c34e9b9d1442d19636c6608b8c4dbd9331c7245f7915c8b2f55","typeString":"literal_string \"SafeCast: value doesn't fit in 24 bits\""},"value":"SafeCast: value doesn't fit in 24 bits"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_f68b65aaf4574c34e9b9d1442d19636c6608b8c4dbd9331c7245f7915c8b2f55","typeString":"literal_string \"SafeCast: value doesn't fit in 24 bits\""}],"id":4429,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"98036:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":4434,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"98036:70:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4435,"nodeType":"ExpressionStatement","src":"98036:70:0"}]},"documentation":{"id":4415,"nodeType":"StructuredDocumentation","src":"97569:345:0","text":" @dev Returns the downcasted int24 from int256, reverting on\n overflow (when the input is less than smallest int24 or\n greater than largest int24).\n Counterpart to Solidity's `int24` operator.\n Requirements:\n - input must fit into 24 bits\n _Available since v4.7._"},"id":4437,"implemented":true,"kind":"function","modifiers":[],"name":"toInt24","nameLocation":"97928:7:0","nodeType":"FunctionDefinition","parameters":{"id":4418,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4417,"mutability":"mutable","name":"value","nameLocation":"97943:5:0","nodeType":"VariableDeclaration","scope":4437,"src":"97936:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":4416,"name":"int256","nodeType":"ElementaryTypeName","src":"97936:6:0","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"97935:14:0"},"returnParameters":{"id":4421,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4420,"mutability":"mutable","name":"downcasted","nameLocation":"97979:10:0","nodeType":"VariableDeclaration","scope":4437,"src":"97973:16:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int24","typeString":"int24"},"typeName":{"id":4419,"name":"int24","nodeType":"ElementaryTypeName","src":"97973:5:0","typeDescriptions":{"typeIdentifier":"t_int24","typeString":"int24"}},"visibility":"internal"}],"src":"97972:18:0"},"scope":4512,"src":"97919:194:0","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":4459,"nodeType":"Block","src":"98541:122:0","statements":[{"expression":{"id":4450,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4445,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4443,"src":"98551:10:0","typeDescriptions":{"typeIdentifier":"t_int16","typeString":"int16"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":4448,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4440,"src":"98570:5:0","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":4447,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"98564:5:0","typeDescriptions":{"typeIdentifier":"t_type$_t_int16_$","typeString":"type(int16)"},"typeName":{"id":4446,"name":"int16","nodeType":"ElementaryTypeName","src":"98564:5:0","typeDescriptions":{}}},"id":4449,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"98564:12:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int16","typeString":"int16"}},"src":"98551:25:0","typeDescriptions":{"typeIdentifier":"t_int16","typeString":"int16"}},"id":4451,"nodeType":"ExpressionStatement","src":"98551:25:0"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":4455,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4453,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4443,"src":"98594:10:0","typeDescriptions":{"typeIdentifier":"t_int16","typeString":"int16"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":4454,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4440,"src":"98608:5:0","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"98594:19:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"53616665436173743a2076616c756520646f65736e27742066697420696e2031362062697473","id":4456,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"98615:40:0","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":4452,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"98586:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":4457,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"98586:70:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4458,"nodeType":"ExpressionStatement","src":"98586:70:0"}]},"documentation":{"id":4438,"nodeType":"StructuredDocumentation","src":"98119:345:0","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":4460,"implemented":true,"kind":"function","modifiers":[],"name":"toInt16","nameLocation":"98478:7:0","nodeType":"FunctionDefinition","parameters":{"id":4441,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4440,"mutability":"mutable","name":"value","nameLocation":"98493:5:0","nodeType":"VariableDeclaration","scope":4460,"src":"98486:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":4439,"name":"int256","nodeType":"ElementaryTypeName","src":"98486:6:0","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"98485:14:0"},"returnParameters":{"id":4444,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4443,"mutability":"mutable","name":"downcasted","nameLocation":"98529:10:0","nodeType":"VariableDeclaration","scope":4460,"src":"98523:16:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int16","typeString":"int16"},"typeName":{"id":4442,"name":"int16","nodeType":"ElementaryTypeName","src":"98523:5:0","typeDescriptions":{"typeIdentifier":"t_int16","typeString":"int16"}},"visibility":"internal"}],"src":"98522:18:0"},"scope":4512,"src":"98469:194:0","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":4482,"nodeType":"Block","src":"99084:120:0","statements":[{"expression":{"id":4473,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4468,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4466,"src":"99094:10:0","typeDescriptions":{"typeIdentifier":"t_int8","typeString":"int8"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":4471,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4463,"src":"99112:5:0","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":4470,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"99107:4:0","typeDescriptions":{"typeIdentifier":"t_type$_t_int8_$","typeString":"type(int8)"},"typeName":{"id":4469,"name":"int8","nodeType":"ElementaryTypeName","src":"99107:4:0","typeDescriptions":{}}},"id":4472,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"99107:11:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int8","typeString":"int8"}},"src":"99094:24:0","typeDescriptions":{"typeIdentifier":"t_int8","typeString":"int8"}},"id":4474,"nodeType":"ExpressionStatement","src":"99094:24:0"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_int256","typeString":"int256"},"id":4478,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4476,"name":"downcasted","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4466,"src":"99136:10:0","typeDescriptions":{"typeIdentifier":"t_int8","typeString":"int8"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":4477,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4463,"src":"99150:5:0","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"src":"99136:19:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"53616665436173743a2076616c756520646f65736e27742066697420696e20382062697473","id":4479,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"99157:39:0","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":4475,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"99128:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":4480,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"99128:69:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4481,"nodeType":"ExpressionStatement","src":"99128:69:0"}]},"documentation":{"id":4461,"nodeType":"StructuredDocumentation","src":"98669:340:0","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":4483,"implemented":true,"kind":"function","modifiers":[],"name":"toInt8","nameLocation":"99023:6:0","nodeType":"FunctionDefinition","parameters":{"id":4464,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4463,"mutability":"mutable","name":"value","nameLocation":"99037:5:0","nodeType":"VariableDeclaration","scope":4483,"src":"99030:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":4462,"name":"int256","nodeType":"ElementaryTypeName","src":"99030:6:0","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"99029:14:0"},"returnParameters":{"id":4467,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4466,"mutability":"mutable","name":"downcasted","nameLocation":"99072:10:0","nodeType":"VariableDeclaration","scope":4483,"src":"99067:15:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int8","typeString":"int8"},"typeName":{"id":4465,"name":"int8","nodeType":"ElementaryTypeName","src":"99067:4:0","typeDescriptions":{"typeIdentifier":"t_int8","typeString":"int8"}},"visibility":"internal"}],"src":"99066:17:0"},"scope":4512,"src":"99014:190:0","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":4510,"nodeType":"Block","src":"99482:233:0","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4501,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4492,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4486,"src":"99599:5:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"arguments":[{"expression":{"arguments":[{"id":4497,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"99621:6:0","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":4496,"name":"int256","nodeType":"ElementaryTypeName","src":"99621:6:0","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"}],"id":4495,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"99616:4:0","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":4498,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"99616:12:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_int256","typeString":"type(int256)"}},"id":4499,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"99629:3:0","memberName":"max","nodeType":"MemberAccess","src":"99616:16:0","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_int256","typeString":"int256"}],"id":4494,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"99608:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":4493,"name":"uint256","nodeType":"ElementaryTypeName","src":"99608:7:0","typeDescriptions":{}}},"id":4500,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"99608:25:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"99599:34:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"53616665436173743a2076616c756520646f65736e27742066697420696e20616e20696e74323536","id":4502,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"99635:42:0","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":4491,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"99591:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":4503,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"99591:87:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4504,"nodeType":"ExpressionStatement","src":"99591:87:0"},{"expression":{"arguments":[{"id":4507,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4486,"src":"99702:5:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":4506,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"99695:6:0","typeDescriptions":{"typeIdentifier":"t_type$_t_int256_$","typeString":"type(int256)"},"typeName":{"id":4505,"name":"int256","nodeType":"ElementaryTypeName","src":"99695:6:0","typeDescriptions":{}}},"id":4508,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"99695:13:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"functionReturnParameters":4490,"id":4509,"nodeType":"Return","src":"99688:20:0"}]},"documentation":{"id":4484,"nodeType":"StructuredDocumentation","src":"99210:203:0","text":" @dev Converts an unsigned uint256 into a signed int256.\n Requirements:\n - input must be less than or equal to maxInt256.\n _Available since v3.0._"},"id":4511,"implemented":true,"kind":"function","modifiers":[],"name":"toInt256","nameLocation":"99427:8:0","nodeType":"FunctionDefinition","parameters":{"id":4487,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4486,"mutability":"mutable","name":"value","nameLocation":"99444:5:0","nodeType":"VariableDeclaration","scope":4511,"src":"99436:13:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4485,"name":"uint256","nodeType":"ElementaryTypeName","src":"99436:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"99435:15:0"},"returnParameters":{"id":4490,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4489,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4511,"src":"99474:6:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"},"typeName":{"id":4488,"name":"int256","nodeType":"ElementaryTypeName","src":"99474:6:0","typeDescriptions":{"typeIdentifier":"t_int256","typeString":"int256"}},"visibility":"internal"}],"src":"99473:8:0"},"scope":4512,"src":"99418:297:0","stateMutability":"pure","virtual":false,"visibility":"internal"}],"scope":7298,"src":"65564:34153:0","usedErrors":[],"usedEvents":[]},{"id":4513,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"99817:23:0"},{"abstract":false,"baseContracts":[],"canonicalName":"PercentageMath","contractDependencies":[],"contractKind":"library","documentation":{"id":4514,"nodeType":"StructuredDocumentation","src":"99842:291:0","text":" @title PercentageMath library\n @author Aave\n @notice Provides functions to perform percentage calculations\n @dev Percentages are defined by default with 2 decimals of precision (100.00). The precision is indicated by PERCENTAGE_FACTOR\n @dev Operations are rounded half up*"},"fullyImplemented":true,"id":4604,"linearizedBaseContracts":[4604],"name":"PercentageMath","nameLocation":"100143:14:0","nodeType":"ContractDefinition","nodes":[{"constant":true,"id":4517,"mutability":"constant","name":"PERCENTAGE_FACTOR","nameLocation":"100181:17:0","nodeType":"VariableDeclaration","scope":4604,"src":"100164:40:0","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4515,"name":"uint256","nodeType":"ElementaryTypeName","src":"100164:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"316534","id":4516,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"100201:3:0","typeDescriptions":{"typeIdentifier":"t_rational_10000_by_1","typeString":"int_const 10000"},"value":"1e4"},"visibility":"internal"},{"constant":true,"id":4522,"mutability":"constant","name":"HALF_PERCENT","nameLocation":"100258:12:0","nodeType":"VariableDeclaration","scope":4604,"src":"100241:53:0","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4518,"name":"uint256","nodeType":"ElementaryTypeName","src":"100241:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4521,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"id":4519,"name":"PERCENTAGE_FACTOR","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4517,"src":"100273:17:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"hexValue":"32","id":4520,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"100293:1:0","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"100273:21:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"body":{"id":4564,"nodeType":"Block","src":"100668:269:0","statements":[{"condition":{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":4538,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4534,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4532,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4525,"src":"100682:5:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":4533,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"100691:1:0","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"100682:10:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"||","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4537,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4535,"name":"percentage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4527,"src":"100696:10:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":4536,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"100710:1:0","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"100696:15:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"100682:29:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":4542,"nodeType":"IfStatement","src":"100678:68:0","trueBody":{"id":4541,"nodeType":"Block","src":"100713:33:0","statements":[{"expression":{"hexValue":"30","id":4539,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"100734:1:0","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"functionReturnParameters":4531,"id":4540,"nodeType":"Return","src":"100727:8:0"}]}},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4553,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4544,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4525,"src":"100777:5:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4552,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"expression":{"arguments":[{"id":4547,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"100792:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":4546,"name":"uint256","nodeType":"ElementaryTypeName","src":"100792:7:0","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"}],"id":4545,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"100787:4:0","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":4548,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"100787:13:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint256","typeString":"type(uint256)"}},"id":4549,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"100801:3:0","memberName":"max","nodeType":"MemberAccess","src":"100787:17:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":4550,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"TupleExpression","src":"100786:19:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":4551,"name":"percentage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4527,"src":"100808:10:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"100786:32:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"100777:41:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4d4154485f4d554c5449504c49434154494f4e5f4f564552464c4f57","id":4554,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"100832:30:0","typeDescriptions":{"typeIdentifier":"t_stringliteral_6b96bc99e56604df6600e4ce66f7e91bdc3417f453200fce123d801c60b50ff8","typeString":"literal_string \"MATH_MULTIPLICATION_OVERFLOW\""},"value":"MATH_MULTIPLICATION_OVERFLOW"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_6b96bc99e56604df6600e4ce66f7e91bdc3417f453200fce123d801c60b50ff8","typeString":"literal_string \"MATH_MULTIPLICATION_OVERFLOW\""}],"id":4543,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"100756:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":4555,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"100756:116:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4556,"nodeType":"ExpressionStatement","src":"100756:116:0"},{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4562,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4559,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4557,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4525,"src":"100891:5:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":4558,"name":"percentage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4527,"src":"100899:10:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"100891:18:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":4560,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"100890:20:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":4561,"name":"PERCENTAGE_FACTOR","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4517,"src":"100913:17:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"100890:40:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":4531,"id":4563,"nodeType":"Return","src":"100883:47:0"}]},"documentation":{"id":4523,"nodeType":"StructuredDocumentation","src":"100301:247:0","text":" @dev Executes a percentage multiplication\n @param value The value of which the percentage needs to be calculated\n @param percentage The percentage of the value to be calculated\n @return The percentage of value*"},"id":4565,"implemented":true,"kind":"function","modifiers":[],"name":"percentMul","nameLocation":"100562:10:0","nodeType":"FunctionDefinition","parameters":{"id":4528,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4525,"mutability":"mutable","name":"value","nameLocation":"100581:5:0","nodeType":"VariableDeclaration","scope":4565,"src":"100573:13:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4524,"name":"uint256","nodeType":"ElementaryTypeName","src":"100573:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":4527,"mutability":"mutable","name":"percentage","nameLocation":"100596:10:0","nodeType":"VariableDeclaration","scope":4565,"src":"100588:18:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4526,"name":"uint256","nodeType":"ElementaryTypeName","src":"100588:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"100572:35:0"},"returnParameters":{"id":4531,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4530,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4565,"src":"100655:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4529,"name":"uint256","nodeType":"ElementaryTypeName","src":"100655:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"100654:9:0"},"scope":4604,"src":"100553:384:0","stateMutability":"pure","virtual":false,"visibility":"internal"},{"body":{"id":4602,"nodeType":"Block","src":"101313:256:0","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4578,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4576,"name":"percentage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4570,"src":"101331:10:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":4577,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"101345:1:0","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"101331:15:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4d4154485f4449564953494f4e5f42595f5a45524f","id":4579,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"101348:23:0","typeDescriptions":{"typeIdentifier":"t_stringliteral_fc36c1c4be38334abb76a97aea9858f5dd129f9a5a734dbf8928b30d7094d3d9","typeString":"literal_string \"MATH_DIVISION_BY_ZERO\""},"value":"MATH_DIVISION_BY_ZERO"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_fc36c1c4be38334abb76a97aea9858f5dd129f9a5a734dbf8928b30d7094d3d9","typeString":"literal_string \"MATH_DIVISION_BY_ZERO\""}],"id":4575,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"101323:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":4580,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"101323:49:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4581,"nodeType":"ExpressionStatement","src":"101323:49:0"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4591,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4583,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4568,"src":"101404:5:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4590,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"leftExpression":{"expression":{"arguments":[{"id":4586,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"101418:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":4585,"name":"uint256","nodeType":"ElementaryTypeName","src":"101418:7:0","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"}],"id":4584,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"101413:4:0","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":4587,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"101413:13:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint256","typeString":"type(uint256)"}},"id":4588,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"101427:3:0","memberName":"max","nodeType":"MemberAccess","src":"101413:17:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":4589,"name":"PERCENTAGE_FACTOR","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4517,"src":"101433:17:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"101413:37:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"101404:46:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4d4154485f4d554c5449504c49434154494f4e5f4f564552464c4f57","id":4592,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"101464:30:0","typeDescriptions":{"typeIdentifier":"t_stringliteral_6b96bc99e56604df6600e4ce66f7e91bdc3417f453200fce123d801c60b50ff8","typeString":"literal_string \"MATH_MULTIPLICATION_OVERFLOW\""},"value":"MATH_MULTIPLICATION_OVERFLOW"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_6b96bc99e56604df6600e4ce66f7e91bdc3417f453200fce123d801c60b50ff8","typeString":"literal_string \"MATH_MULTIPLICATION_OVERFLOW\""}],"id":4582,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"101383:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":4593,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"101383:121:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4594,"nodeType":"ExpressionStatement","src":"101383:121:0"},{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4600,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4597,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4595,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4568,"src":"101523:5:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":4596,"name":"PERCENTAGE_FACTOR","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4517,"src":"101531:17:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"101523:25:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":4598,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"101522:27:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":4599,"name":"percentage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4570,"src":"101552:10:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"101522:40:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":4574,"id":4601,"nodeType":"Return","src":"101515:47:0"}]},"documentation":{"id":4566,"nodeType":"StructuredDocumentation","src":"100943:250:0","text":" @dev Executes a percentage division\n @param value The value of which the percentage needs to be calculated\n @param percentage The percentage of the value to be calculated\n @return The value divided the percentage*"},"id":4603,"implemented":true,"kind":"function","modifiers":[],"name":"percentDiv","nameLocation":"101207:10:0","nodeType":"FunctionDefinition","parameters":{"id":4571,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4568,"mutability":"mutable","name":"value","nameLocation":"101226:5:0","nodeType":"VariableDeclaration","scope":4603,"src":"101218:13:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4567,"name":"uint256","nodeType":"ElementaryTypeName","src":"101218:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":4570,"mutability":"mutable","name":"percentage","nameLocation":"101241:10:0","nodeType":"VariableDeclaration","scope":4603,"src":"101233:18:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4569,"name":"uint256","nodeType":"ElementaryTypeName","src":"101233:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"101217:35:0"},"returnParameters":{"id":4574,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4573,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4603,"src":"101300:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4572,"name":"uint256","nodeType":"ElementaryTypeName","src":"101300:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"101299:9:0"},"scope":4604,"src":"101198:371:0","stateMutability":"pure","virtual":false,"visibility":"internal"}],"scope":7298,"src":"100135:1436:0","usedErrors":[],"usedEvents":[]},{"id":4605,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"101681:23:0"},{"abstract":true,"baseContracts":[],"canonicalName":"VersionedInitializable","contractDependencies":[],"contractKind":"contract","documentation":{"id":4606,"nodeType":"StructuredDocumentation","src":"101706:702:0","text":" @title VersionedInitializable\n @dev Helper contract to support initializer functions. To use it, replace\n the constructor with a function that has the `initializer` modifier.\n WARNING: Unlike constructors, initializer functions must be manually\n invoked. This applies both to deploying an Initializable contract, as well\n as extending an Initializable contract via inheritance.\n WARNING: When used with inheritance, manual care must be taken to not invoke\n a parent initializer twice, or ensure that all initializers are idempotent,\n because this is not dealt with automatically as with constructors.\n @author Aave, inspired by the OpenZeppelin Initializable contract"},"fullyImplemented":false,"id":4642,"linearizedBaseContracts":[4642],"name":"VersionedInitializable","nameLocation":"102427:22:0","nodeType":"ContractDefinition","nodes":[{"constant":false,"documentation":{"id":4607,"nodeType":"StructuredDocumentation","src":"102454:69:0","text":" @dev Indicates that the contract has been initialized."},"id":4610,"mutability":"mutable","name":"lastInitializedRevision","nameLocation":"102543:23:0","nodeType":"VariableDeclaration","scope":4642,"src":"102526:44:0","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4608,"name":"uint256","nodeType":"ElementaryTypeName","src":"102526:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"30","id":4609,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"102569:1:0","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"visibility":"internal"},{"body":{"id":4630,"nodeType":"Block","src":"102679:209:0","statements":[{"assignments":[4614],"declarations":[{"constant":false,"id":4614,"mutability":"mutable","name":"revision","nameLocation":"102693:8:0","nodeType":"VariableDeclaration","scope":4630,"src":"102685:16:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4613,"name":"uint256","nodeType":"ElementaryTypeName","src":"102685:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":4617,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":4615,"name":"getRevision","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4637,"src":"102704:11:0","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_uint256_$","typeString":"function () pure returns (uint256)"}},"id":4616,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"102704:13:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"102685:32:0"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4621,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4619,"name":"revision","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4614,"src":"102738:8:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":4620,"name":"lastInitializedRevision","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4610,"src":"102749:23:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"102738:34:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"436f6e747261637420696e7374616e63652068617320616c7265616479206265656e20696e697469616c697a6564","id":4622,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"102780:48:0","typeDescriptions":{"typeIdentifier":"t_stringliteral_9fbba6c4dcac9134893b633b9564f36435b3f927c1d5fa152c5c14b20cecb1a4","typeString":"literal_string \"Contract instance has already been initialized\""},"value":"Contract instance has already been initialized"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_9fbba6c4dcac9134893b633b9564f36435b3f927c1d5fa152c5c14b20cecb1a4","typeString":"literal_string \"Contract instance has already been initialized\""}],"id":4618,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"102723:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":4623,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"102723:111:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4624,"nodeType":"ExpressionStatement","src":"102723:111:0"},{"expression":{"id":4627,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4625,"name":"lastInitializedRevision","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4610,"src":"102841:23:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":4626,"name":"revision","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4614,"src":"102867:8:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"102841:34:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4628,"nodeType":"ExpressionStatement","src":"102841:34:0"},{"id":4629,"nodeType":"PlaceholderStatement","src":"102882:1:0"}]},"documentation":{"id":4611,"nodeType":"StructuredDocumentation","src":"102575:78:0","text":" @dev Modifier to use in the initializer function of a contract."},"id":4631,"name":"initializer","nameLocation":"102665:11:0","nodeType":"ModifierDefinition","parameters":{"id":4612,"nodeType":"ParameterList","parameters":[],"src":"102676:2:0"},"src":"102656:232:0","virtual":false,"visibility":"internal"},{"documentation":{"id":4632,"nodeType":"StructuredDocumentation","src":"102892:117:0","text":"@dev returns the revision number of the contract.\n Needs to be defined in the inherited class as a constant."},"id":4637,"implemented":false,"kind":"function","modifiers":[],"name":"getRevision","nameLocation":"103021:11:0","nodeType":"FunctionDefinition","parameters":{"id":4633,"nodeType":"ParameterList","parameters":[],"src":"103032:2:0"},"returnParameters":{"id":4636,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4635,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4637,"src":"103066:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4634,"name":"uint256","nodeType":"ElementaryTypeName","src":"103066:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"103065:9:0"},"scope":4642,"src":"103012:63:0","stateMutability":"pure","virtual":true,"visibility":"internal"},{"constant":false,"id":4641,"mutability":"mutable","name":"______gap","nameLocation":"103170:9:0","nodeType":"VariableDeclaration","scope":4642,"src":"103150:29:0","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$50_storage","typeString":"uint256[50]"},"typeName":{"baseType":{"id":4638,"name":"uint256","nodeType":"ElementaryTypeName","src":"103150:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4640,"length":{"hexValue":"3530","id":4639,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"103158:2:0","typeDescriptions":{"typeIdentifier":"t_rational_50_by_1","typeString":"int_const 50"},"value":"50"},"nodeType":"ArrayTypeName","src":"103150:11:0","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$50_storage_ptr","typeString":"uint256[50]"}},"visibility":"private"}],"scope":7298,"src":"102409:773:0","usedErrors":[],"usedEvents":[]},{"id":4643,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"103277:23:0"},{"abstract":true,"baseContracts":[{"baseName":{"id":4645,"name":"IStakedTokenV2","nameLocations":["103524:14:0"],"nodeType":"IdentifierPath","referencedDeclaration":243,"src":"103524:14:0"},"id":4646,"nodeType":"InheritanceSpecifier","src":"103524:14:0"},{"baseName":{"id":4647,"name":"GovernancePowerWithSnapshot","nameLocations":["103542:27:0"],"nodeType":"IdentifierPath","referencedDeclaration":1906,"src":"103542:27:0"},"id":4648,"nodeType":"InheritanceSpecifier","src":"103542:27:0"},{"baseName":{"id":4649,"name":"VersionedInitializable","nameLocations":["103573:22:0"],"nodeType":"IdentifierPath","referencedDeclaration":4642,"src":"103573:22:0"},"id":4650,"nodeType":"InheritanceSpecifier","src":"103573:22:0"},{"baseName":{"id":4651,"name":"PegasysDistributionManager","nameLocations":["103599:26:0"],"nodeType":"IdentifierPath","referencedDeclaration":2972,"src":"103599:26:0"},"id":4652,"nodeType":"InheritanceSpecifier","src":"103599:26:0"}],"canonicalName":"StakedTokenV2","contractDependencies":[],"contractKind":"contract","documentation":{"id":4644,"nodeType":"StructuredDocumentation","src":"103307:179:0","text":" @title StakedTokenV2\n @notice Contract to stake Aave token, tokenize the position and get rewards, inheriting from a distribution manager contract\n @author BGD Labs"},"fullyImplemented":false,"id":5209,"linearizedBaseContracts":[5209,2972,4642,1906,1874,1167,1084,100,77,511,243],"name":"StakedTokenV2","nameLocation":"103505:13:0","nodeType":"ContractDefinition","nodes":[{"global":false,"id":4656,"libraryName":{"id":4653,"name":"SafeERC20","nameLocations":["103636:9:0"],"nodeType":"IdentifierPath","referencedDeclaration":2456,"src":"103636:9:0"},"nodeType":"UsingForDirective","src":"103630:27:0","typeName":{"id":4655,"nodeType":"UserDefinedTypeName","pathNode":{"id":4654,"name":"IERC20","nameLocations":["103650:6:0"],"nodeType":"IdentifierPath","referencedDeclaration":77,"src":"103650:6:0"},"referencedDeclaration":77,"src":"103650:6:0","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$77","typeString":"contract IERC20"}}},{"constant":false,"functionSelector":"312f6b83","id":4659,"mutability":"immutable","name":"STAKED_TOKEN","nameLocation":"103685:12:0","nodeType":"VariableDeclaration","scope":5209,"src":"103661:36:0","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$77","typeString":"contract IERC20"},"typeName":{"id":4658,"nodeType":"UserDefinedTypeName","pathNode":{"id":4657,"name":"IERC20","nameLocations":["103661:6:0"],"nodeType":"IdentifierPath","referencedDeclaration":77,"src":"103661:6:0"},"referencedDeclaration":77,"src":"103661:6:0","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$77","typeString":"contract IERC20"}},"visibility":"public"},{"constant":false,"functionSelector":"99248ea7","id":4662,"mutability":"immutable","name":"REWARD_TOKEN","nameLocation":"103725:12:0","nodeType":"VariableDeclaration","scope":5209,"src":"103701:36:0","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$77","typeString":"contract IERC20"},"typeName":{"id":4661,"nodeType":"UserDefinedTypeName","pathNode":{"id":4660,"name":"IERC20","nameLocations":["103701:6:0"],"nodeType":"IdentifierPath","referencedDeclaration":77,"src":"103701:6:0"},"referencedDeclaration":77,"src":"103701:6:0","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$77","typeString":"contract IERC20"}},"visibility":"public"},{"constant":false,"documentation":{"id":4663,"nodeType":"StructuredDocumentation","src":"103742:77:0","text":"@notice Seconds available to redeem once the cooldown period is fulfilled"},"functionSelector":"359c4a96","id":4665,"mutability":"immutable","name":"UNSTAKE_WINDOW","nameLocation":"103847:14:0","nodeType":"VariableDeclaration","scope":5209,"src":"103822:39:0","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4664,"name":"uint256","nodeType":"ElementaryTypeName","src":"103822:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"public"},{"constant":false,"documentation":{"id":4666,"nodeType":"StructuredDocumentation","src":"103866:82:0","text":"@notice Address to pull from the rewards, needs to have approved this contract"},"functionSelector":"946776cd","id":4668,"mutability":"immutable","name":"REWARDS_VAULT","nameLocation":"103976:13:0","nodeType":"VariableDeclaration","scope":5209,"src":"103951:38:0","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4667,"name":"address","nodeType":"ElementaryTypeName","src":"103951:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"public"},{"constant":false,"functionSelector":"7e90d7ef","id":4672,"mutability":"mutable","name":"stakerRewardsToClaim","nameLocation":"104029:20:0","nodeType":"VariableDeclaration","scope":5209,"src":"103994:55:0","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"typeName":{"id":4671,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":4669,"name":"address","nodeType":"ElementaryTypeName","src":"104002:7:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"103994:27:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":4670,"name":"uint256","nodeType":"ElementaryTypeName","src":"104013:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}},"visibility":"public"},{"constant":false,"functionSelector":"091030c3","id":4677,"mutability":"mutable","name":"stakersCooldowns","nameLocation":"104097:16:0","nodeType":"VariableDeclaration","scope":5209,"src":"104053:60:0","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_CooldownSnapshot_$168_storage_$","typeString":"mapping(address => struct IStakedTokenV2.CooldownSnapshot)"},"typeName":{"id":4676,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":4673,"name":"address","nodeType":"ElementaryTypeName","src":"104061:7:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"104053:36:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_CooldownSnapshot_$168_storage_$","typeString":"mapping(address => struct IStakedTokenV2.CooldownSnapshot)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":4675,"nodeType":"UserDefinedTypeName","pathNode":{"id":4674,"name":"CooldownSnapshot","nameLocations":["104072:16:0"],"nodeType":"IdentifierPath","referencedDeclaration":168,"src":"104072:16:0"},"referencedDeclaration":168,"src":"104072:16:0","typeDescriptions":{"typeIdentifier":"t_struct$_CooldownSnapshot_$168_storage_ptr","typeString":"struct IStakedTokenV2.CooldownSnapshot"}}},"visibility":"public"},{"constant":false,"documentation":{"id":4678,"nodeType":"StructuredDocumentation","src":"104172:74:0","text":"@dev To see the voting mappings, go to GovernancePowerWithSnapshot.sol"},"id":4682,"mutability":"mutable","name":"_votingDelegates","nameLocation":"104286:16:0","nodeType":"VariableDeclaration","scope":5209,"src":"104249:53:0","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_address_$","typeString":"mapping(address => address)"},"typeName":{"id":4681,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":4679,"name":"address","nodeType":"ElementaryTypeName","src":"104257:7:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"104249:27:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_address_$","typeString":"mapping(address => address)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":4680,"name":"address","nodeType":"ElementaryTypeName","src":"104268:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}},"visibility":"internal"},{"constant":false,"id":4689,"mutability":"mutable","name":"_propositionPowerSnapshots","nameLocation":"104369:26:0","nodeType":"VariableDeclaration","scope":5209,"src":"104307:88:0","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_uint256_$_t_struct$_Snapshot_$1190_storage_$_$","typeString":"mapping(address => mapping(uint256 => struct GovernancePowerDelegationERC20.Snapshot))"},"typeName":{"id":4688,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":4683,"name":"address","nodeType":"ElementaryTypeName","src":"104315:7:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"104307:48:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_uint256_$_t_struct$_Snapshot_$1190_storage_$_$","typeString":"mapping(address => mapping(uint256 => struct GovernancePowerDelegationERC20.Snapshot))"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":4687,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":4684,"name":"uint256","nodeType":"ElementaryTypeName","src":"104334:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Mapping","src":"104326:28:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_Snapshot_$1190_storage_$","typeString":"mapping(uint256 => struct GovernancePowerDelegationERC20.Snapshot)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":4686,"nodeType":"UserDefinedTypeName","pathNode":{"id":4685,"name":"Snapshot","nameLocations":["104345:8:0"],"nodeType":"IdentifierPath","referencedDeclaration":1190,"src":"104345:8:0"},"referencedDeclaration":1190,"src":"104345:8:0","typeDescriptions":{"typeIdentifier":"t_struct$_Snapshot_$1190_storage_ptr","typeString":"struct GovernancePowerDelegationERC20.Snapshot"}}}},"visibility":"internal"},{"constant":false,"id":4693,"mutability":"mutable","name":"_propositionPowerSnapshotsCounts","nameLocation":"104436:32:0","nodeType":"VariableDeclaration","scope":5209,"src":"104399:69:0","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"typeName":{"id":4692,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":4690,"name":"address","nodeType":"ElementaryTypeName","src":"104407:7:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"104399:27:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":4691,"name":"uint256","nodeType":"ElementaryTypeName","src":"104418:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}},"visibility":"internal"},{"constant":false,"id":4697,"mutability":"mutable","name":"_propositionPowerDelegates","nameLocation":"104509:26:0","nodeType":"VariableDeclaration","scope":5209,"src":"104472:63:0","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_address_$","typeString":"mapping(address => address)"},"typeName":{"id":4696,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":4694,"name":"address","nodeType":"ElementaryTypeName","src":"104480:7:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"104472:27:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_address_$","typeString":"mapping(address => address)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":4695,"name":"address","nodeType":"ElementaryTypeName","src":"104491:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}},"visibility":"internal"},{"constant":false,"functionSelector":"3644e515","id":4699,"mutability":"mutable","name":"DOMAIN_SEPARATOR","nameLocation":"104555:16:0","nodeType":"VariableDeclaration","scope":5209,"src":"104540:31:0","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":4698,"name":"bytes32","nodeType":"ElementaryTypeName","src":"104540:7:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"public"},{"constant":true,"functionSelector":"78160376","id":4705,"mutability":"constant","name":"EIP712_REVISION","nameLocation":"104597:15:0","nodeType":"VariableDeclaration","scope":5209,"src":"104575:50:0","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":4700,"name":"bytes","nodeType":"ElementaryTypeName","src":"104575:5:0","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"value":{"arguments":[{"hexValue":"31","id":4703,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"104621:3:0","typeDescriptions":{"typeIdentifier":"t_stringliteral_c89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc6","typeString":"literal_string \"1\""},"value":"1"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_stringliteral_c89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc6","typeString":"literal_string \"1\""}],"id":4702,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"104615:5:0","typeDescriptions":{"typeIdentifier":"t_type$_t_bytes_storage_ptr_$","typeString":"type(bytes storage pointer)"},"typeName":{"id":4701,"name":"bytes","nodeType":"ElementaryTypeName","src":"104615:5:0","typeDescriptions":{}}},"id":4704,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"104615:10:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}},"visibility":"public"},{"constant":true,"id":4710,"mutability":"constant","name":"EIP712_DOMAIN","nameLocation":"104655:13:0","nodeType":"VariableDeclaration","scope":5209,"src":"104629:153:0","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":4706,"name":"bytes32","nodeType":"ElementaryTypeName","src":"104629:7:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"value":{"arguments":[{"hexValue":"454950373132446f6d61696e28737472696e67206e616d652c737472696e672076657273696f6e2c75696e7432353620636861696e49642c6164647265737320766572696679696e67436f6e747261637429","id":4708,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"104692:84:0","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":4707,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"104675:9:0","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":4709,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"104675:107:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":true,"functionSelector":"30adf81f","id":4715,"mutability":"constant","name":"PERMIT_TYPEHASH","nameLocation":"104810:15:0","nodeType":"VariableDeclaration","scope":5209,"src":"104786:153:0","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":4711,"name":"bytes32","nodeType":"ElementaryTypeName","src":"104786:7:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"value":{"arguments":[{"hexValue":"5065726d69742861646472657373206f776e65722c61646472657373207370656e6465722c75696e743235362076616c75652c75696e74323536206e6f6e63652c75696e7432353620646561646c696e6529","id":4713,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"104849:84:0","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":4712,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"104832:9:0","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":4714,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"104832:107:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"public"},{"constant":false,"documentation":{"id":4716,"nodeType":"StructuredDocumentation","src":"104944:58:0","text":"@dev owner => next valid nonce to submit with permit()"},"functionSelector":"b9844d8d","id":4720,"mutability":"mutable","name":"_nonces","nameLocation":"105040:7:0","nodeType":"VariableDeclaration","scope":5209,"src":"105005:42:0","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"typeName":{"id":4719,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":4717,"name":"address","nodeType":"ElementaryTypeName","src":"105013:7:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"105005:27:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":4718,"name":"uint256","nodeType":"ElementaryTypeName","src":"105024:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}},"visibility":"public"},{"body":{"id":4759,"nodeType":"Block","src":"105306:139:0","statements":[{"expression":{"id":4745,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4743,"name":"STAKED_TOKEN","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4659,"src":"105312:12:0","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$77","typeString":"contract IERC20"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":4744,"name":"stakedToken","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4723,"src":"105327:11:0","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$77","typeString":"contract IERC20"}},"src":"105312:26:0","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$77","typeString":"contract IERC20"}},"id":4746,"nodeType":"ExpressionStatement","src":"105312:26:0"},{"expression":{"id":4749,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4747,"name":"REWARD_TOKEN","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4662,"src":"105344:12:0","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$77","typeString":"contract IERC20"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":4748,"name":"rewardToken","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4726,"src":"105359:11:0","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$77","typeString":"contract IERC20"}},"src":"105344:26:0","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$77","typeString":"contract IERC20"}},"id":4750,"nodeType":"ExpressionStatement","src":"105344:26:0"},{"expression":{"id":4753,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4751,"name":"UNSTAKE_WINDOW","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4665,"src":"105376:14:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":4752,"name":"unstakeWindow","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4728,"src":"105393:13:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"105376:30:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4754,"nodeType":"ExpressionStatement","src":"105376:30:0"},{"expression":{"id":4757,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":4755,"name":"REWARDS_VAULT","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4668,"src":"105412:13:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":4756,"name":"rewardsVault","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4730,"src":"105428:12:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"105412:28:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":4758,"nodeType":"ExpressionStatement","src":"105412:28:0"}]},"id":4760,"implemented":true,"kind":"constructor","modifiers":[{"arguments":[],"id":4737,"kind":"baseConstructorSpecifier","modifierName":{"id":4736,"name":"ERC20","nameLocations":["105232:5:0"],"nodeType":"IdentifierPath","referencedDeclaration":1084,"src":"105232:5:0"},"nodeType":"ModifierInvocation","src":"105232:7:0"},{"arguments":[{"id":4739,"name":"emissionManager","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4732,"src":"105267:15:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":4740,"name":"distributionDuration","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4734,"src":"105284:20:0","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}}],"id":4741,"kind":"baseConstructorSpecifier","modifierName":{"id":4738,"name":"PegasysDistributionManager","nameLocations":["105240:26:0"],"nodeType":"IdentifierPath","referencedDeclaration":2972,"src":"105240:26:0"},"nodeType":"ModifierInvocation","src":"105240:65:0"}],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":4735,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4723,"mutability":"mutable","name":"stakedToken","nameLocation":"105076:11:0","nodeType":"VariableDeclaration","scope":4760,"src":"105069:18:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$77","typeString":"contract IERC20"},"typeName":{"id":4722,"nodeType":"UserDefinedTypeName","pathNode":{"id":4721,"name":"IERC20","nameLocations":["105069:6:0"],"nodeType":"IdentifierPath","referencedDeclaration":77,"src":"105069:6:0"},"referencedDeclaration":77,"src":"105069:6:0","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$77","typeString":"contract IERC20"}},"visibility":"internal"},{"constant":false,"id":4726,"mutability":"mutable","name":"rewardToken","nameLocation":"105100:11:0","nodeType":"VariableDeclaration","scope":4760,"src":"105093:18:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$77","typeString":"contract IERC20"},"typeName":{"id":4725,"nodeType":"UserDefinedTypeName","pathNode":{"id":4724,"name":"IERC20","nameLocations":["105093:6:0"],"nodeType":"IdentifierPath","referencedDeclaration":77,"src":"105093:6:0"},"referencedDeclaration":77,"src":"105093:6:0","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$77","typeString":"contract IERC20"}},"visibility":"internal"},{"constant":false,"id":4728,"mutability":"mutable","name":"unstakeWindow","nameLocation":"105125:13:0","nodeType":"VariableDeclaration","scope":4760,"src":"105117:21:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4727,"name":"uint256","nodeType":"ElementaryTypeName","src":"105117:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":4730,"mutability":"mutable","name":"rewardsVault","nameLocation":"105152:12:0","nodeType":"VariableDeclaration","scope":4760,"src":"105144:20:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4729,"name":"address","nodeType":"ElementaryTypeName","src":"105144:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":4732,"mutability":"mutable","name":"emissionManager","nameLocation":"105178:15:0","nodeType":"VariableDeclaration","scope":4760,"src":"105170:23:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4731,"name":"address","nodeType":"ElementaryTypeName","src":"105170:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":4734,"mutability":"mutable","name":"distributionDuration","nameLocation":"105207:20:0","nodeType":"VariableDeclaration","scope":4760,"src":"105199:28:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"},"typeName":{"id":4733,"name":"uint128","nodeType":"ElementaryTypeName","src":"105199:7:0","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"visibility":"internal"}],"src":"105063:168:0"},"returnParameters":{"id":4742,"nodeType":"ParameterList","parameters":[],"src":"105306:0:0"},"scope":5209,"src":"105052:393:0","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"baseFunctions":[196],"documentation":{"id":4761,"nodeType":"StructuredDocumentation","src":"105449:30:0","text":"@inheritdoc IStakedTokenV2"},"functionSelector":"adc9772e","id":4769,"implemented":false,"kind":"function","modifiers":[],"name":"stake","nameLocation":"105491:5:0","nodeType":"FunctionDefinition","overrides":{"id":4767,"nodeType":"OverrideSpecifier","overrides":[],"src":"105550:8:0"},"parameters":{"id":4766,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4763,"mutability":"mutable","name":"onBehalfOf","nameLocation":"105505:10:0","nodeType":"VariableDeclaration","scope":4769,"src":"105497:18:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4762,"name":"address","nodeType":"ElementaryTypeName","src":"105497:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":4765,"mutability":"mutable","name":"amount","nameLocation":"105525:6:0","nodeType":"VariableDeclaration","scope":4769,"src":"105517:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4764,"name":"uint256","nodeType":"ElementaryTypeName","src":"105517:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"105496:36:0"},"returnParameters":{"id":4768,"nodeType":"ParameterList","parameters":[],"src":"105558:0:0"},"scope":5209,"src":"105482:77:0","stateMutability":"nonpayable","virtual":true,"visibility":"external"},{"baseFunctions":[204],"documentation":{"id":4770,"nodeType":"StructuredDocumentation","src":"105563:30:0","text":"@inheritdoc IStakedTokenV2"},"functionSelector":"1e9a6950","id":4778,"implemented":false,"kind":"function","modifiers":[],"name":"redeem","nameLocation":"105605:6:0","nodeType":"FunctionDefinition","overrides":{"id":4776,"nodeType":"OverrideSpecifier","overrides":[],"src":"105657:8:0"},"parameters":{"id":4775,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4772,"mutability":"mutable","name":"to","nameLocation":"105620:2:0","nodeType":"VariableDeclaration","scope":4778,"src":"105612:10:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4771,"name":"address","nodeType":"ElementaryTypeName","src":"105612:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":4774,"mutability":"mutable","name":"amount","nameLocation":"105632:6:0","nodeType":"VariableDeclaration","scope":4778,"src":"105624:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4773,"name":"uint256","nodeType":"ElementaryTypeName","src":"105624:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"105611:28:0"},"returnParameters":{"id":4777,"nodeType":"ParameterList","parameters":[],"src":"105665:0:0"},"scope":5209,"src":"105596:70:0","stateMutability":"nonpayable","virtual":true,"visibility":"external"},{"baseFunctions":[208],"documentation":{"id":4779,"nodeType":"StructuredDocumentation","src":"105670:30:0","text":"@inheritdoc IStakedTokenV2"},"functionSelector":"787a08a6","id":4783,"implemented":false,"kind":"function","modifiers":[],"name":"cooldown","nameLocation":"105712:8:0","nodeType":"FunctionDefinition","overrides":{"id":4781,"nodeType":"OverrideSpecifier","overrides":[],"src":"105740:8:0"},"parameters":{"id":4780,"nodeType":"ParameterList","parameters":[],"src":"105720:2:0"},"returnParameters":{"id":4782,"nodeType":"ParameterList","parameters":[],"src":"105748:0:0"},"scope":5209,"src":"105703:46:0","stateMutability":"nonpayable","virtual":true,"visibility":"external"},{"baseFunctions":[216],"documentation":{"id":4784,"nodeType":"StructuredDocumentation","src":"105753:30:0","text":"@inheritdoc IStakedTokenV2"},"functionSelector":"9a99b4f0","id":4792,"implemented":false,"kind":"function","modifiers":[],"name":"claimRewards","nameLocation":"105795:12:0","nodeType":"FunctionDefinition","overrides":{"id":4790,"nodeType":"OverrideSpecifier","overrides":[],"src":"105853:8:0"},"parameters":{"id":4789,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4786,"mutability":"mutable","name":"to","nameLocation":"105816:2:0","nodeType":"VariableDeclaration","scope":4792,"src":"105808:10:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4785,"name":"address","nodeType":"ElementaryTypeName","src":"105808:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":4788,"mutability":"mutable","name":"amount","nameLocation":"105828:6:0","nodeType":"VariableDeclaration","scope":4792,"src":"105820:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4787,"name":"uint256","nodeType":"ElementaryTypeName","src":"105820:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"105807:28:0"},"returnParameters":{"id":4791,"nodeType":"ParameterList","parameters":[],"src":"105861:0:0"},"scope":5209,"src":"105786:76:0","stateMutability":"nonpayable","virtual":true,"visibility":"external"},{"baseFunctions":[224],"body":{"id":4839,"nodeType":"Block","src":"105993:397:0","statements":[{"assignments":[4805],"declarations":[{"constant":false,"id":4805,"mutability":"mutable","name":"userStakeInputs","nameLocation":"106047:15:0","nodeType":"VariableDeclaration","scope":4839,"src":"105999:63:0","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_UserStakeInput_$136_memory_ptr_$dyn_memory_ptr","typeString":"struct DistributionTypes.UserStakeInput[]"},"typeName":{"baseType":{"id":4803,"nodeType":"UserDefinedTypeName","pathNode":{"id":4802,"name":"DistributionTypes.UserStakeInput","nameLocations":["105999:17:0","106017:14:0"],"nodeType":"IdentifierPath","referencedDeclaration":136,"src":"105999:32:0"},"referencedDeclaration":136,"src":"105999:32:0","typeDescriptions":{"typeIdentifier":"t_struct$_UserStakeInput_$136_storage_ptr","typeString":"struct DistributionTypes.UserStakeInput"}},"id":4804,"nodeType":"ArrayTypeName","src":"105999:34:0","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_UserStakeInput_$136_storage_$dyn_storage_ptr","typeString":"struct DistributionTypes.UserStakeInput[]"}},"visibility":"internal"}],"id":4812,"initialValue":{"arguments":[{"hexValue":"31","id":4810,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"106104:1:0","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"}],"id":4809,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"106065:38:0","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_array$_t_struct$_UserStakeInput_$136_memory_ptr_$dyn_memory_ptr_$","typeString":"function (uint256) pure returns (struct DistributionTypes.UserStakeInput memory[] memory)"},"typeName":{"baseType":{"id":4807,"nodeType":"UserDefinedTypeName","pathNode":{"id":4806,"name":"DistributionTypes.UserStakeInput","nameLocations":["106069:17:0","106087:14:0"],"nodeType":"IdentifierPath","referencedDeclaration":136,"src":"106069:32:0"},"referencedDeclaration":136,"src":"106069:32:0","typeDescriptions":{"typeIdentifier":"t_struct$_UserStakeInput_$136_storage_ptr","typeString":"struct DistributionTypes.UserStakeInput"}},"id":4808,"nodeType":"ArrayTypeName","src":"106069:34:0","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_UserStakeInput_$136_storage_$dyn_storage_ptr","typeString":"struct DistributionTypes.UserStakeInput[]"}}},"id":4811,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"106065:41:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_UserStakeInput_$136_memory_ptr_$dyn_memory_ptr","typeString":"struct DistributionTypes.UserStakeInput memory[] memory"}},"nodeType":"VariableDeclarationStatement","src":"105999:107:0"},{"expression":{"id":4828,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":4813,"name":"userStakeInputs","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4805,"src":"106112:15:0","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_UserStakeInput_$136_memory_ptr_$dyn_memory_ptr","typeString":"struct DistributionTypes.UserStakeInput memory[] memory"}},"id":4815,"indexExpression":{"hexValue":"30","id":4814,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"106128:1:0","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"106112:18:0","typeDescriptions":{"typeIdentifier":"t_struct$_UserStakeInput_$136_memory_ptr","typeString":"struct DistributionTypes.UserStakeInput memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"arguments":[{"id":4820,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"106199:4:0","typeDescriptions":{"typeIdentifier":"t_contract$_StakedTokenV2_$5209","typeString":"contract StakedTokenV2"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_StakedTokenV2_$5209","typeString":"contract StakedTokenV2"}],"id":4819,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"106191:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":4818,"name":"address","nodeType":"ElementaryTypeName","src":"106191:7:0","typeDescriptions":{}}},"id":4821,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"106191:13:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":4823,"name":"staker","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4795,"src":"106236:6:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":4822,"name":"balanceOf","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":596,"src":"106226:9:0","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view returns (uint256)"}},"id":4824,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"106226:17:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[],"expression":{"argumentTypes":[],"id":4825,"name":"totalSupply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":582,"src":"106264:11:0","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":4826,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"106264:13:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":4816,"name":"DistributionTypes","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":137,"src":"106133:17:0","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_DistributionTypes_$137_$","typeString":"type(library DistributionTypes)"}},"id":4817,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"106151:14:0","memberName":"UserStakeInput","nodeType":"MemberAccess","referencedDeclaration":136,"src":"106133:32:0","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_UserStakeInput_$136_storage_ptr_$","typeString":"type(struct DistributionTypes.UserStakeInput storage pointer)"}},"id":4827,"isConstant":false,"isLValue":false,"isPure":false,"kind":"structConstructorCall","lValueRequested":false,"nameLocations":["106174:15:0","106212:12:0","106251:11:0"],"names":["underlyingAsset","stakedByUser","totalStaked"],"nodeType":"FunctionCall","src":"106133:151:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_UserStakeInput_$136_memory_ptr","typeString":"struct DistributionTypes.UserStakeInput memory"}},"src":"106112:172:0","typeDescriptions":{"typeIdentifier":"t_struct$_UserStakeInput_$136_memory_ptr","typeString":"struct DistributionTypes.UserStakeInput memory"}},"id":4829,"nodeType":"ExpressionStatement","src":"106112:172:0"},{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4837,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"baseExpression":{"id":4830,"name":"stakerRewardsToClaim","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4672,"src":"106303:20:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":4832,"indexExpression":{"id":4831,"name":"staker","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4795,"src":"106324:6:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"106303:28:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"arguments":[{"id":4834,"name":"staker","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4795,"src":"106361:6:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":4835,"name":"userStakeInputs","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4805,"src":"106369:15:0","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_UserStakeInput_$136_memory_ptr_$dyn_memory_ptr","typeString":"struct DistributionTypes.UserStakeInput memory[] memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_array$_t_struct$_UserStakeInput_$136_memory_ptr_$dyn_memory_ptr","typeString":"struct DistributionTypes.UserStakeInput memory[] memory"}],"id":4833,"name":"_getUnclaimedRewards","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2854,"src":"106340:20:0","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$_t_array$_t_struct$_UserStakeInput_$136_memory_ptr_$dyn_memory_ptr_$returns$_t_uint256_$","typeString":"function (address,struct DistributionTypes.UserStakeInput memory[] memory) view returns (uint256)"}},"id":4836,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"106340:45:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"106303:82:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":4799,"id":4838,"nodeType":"Return","src":"106290:95:0"}]},"documentation":{"id":4793,"nodeType":"StructuredDocumentation","src":"105866:30:0","text":"@inheritdoc IStakedTokenV2"},"functionSelector":"8dbefee2","id":4840,"implemented":true,"kind":"function","modifiers":[],"name":"getTotalRewardsBalance","nameLocation":"105908:22:0","nodeType":"FunctionDefinition","parameters":{"id":4796,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4795,"mutability":"mutable","name":"staker","nameLocation":"105939:6:0","nodeType":"VariableDeclaration","scope":4840,"src":"105931:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4794,"name":"address","nodeType":"ElementaryTypeName","src":"105931:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"105930:16:0"},"returnParameters":{"id":4799,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4798,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":4840,"src":"105982:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4797,"name":"uint256","nodeType":"ElementaryTypeName","src":"105982:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"105981:9:0"},"scope":5209,"src":"105899:491:0","stateMutability":"view","virtual":false,"visibility":"external"},{"baseFunctions":[242],"body":{"id":4930,"nodeType":"Block","src":"106580:696:0","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":4864,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4859,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4843,"src":"106594:5:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":4862,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"106611:1:0","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":4861,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"106603:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":4860,"name":"address","nodeType":"ElementaryTypeName","src":"106603:7:0","typeDescriptions":{}}},"id":4863,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"106603:10:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"106594:19:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"494e56414c49445f4f574e4552","id":4865,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"106615:15:0","typeDescriptions":{"typeIdentifier":"t_stringliteral_a30e2b4f22d955e30086ae3aef0adfd87eec9d0d3f055d6aa9af61f522dda886","typeString":"literal_string \"INVALID_OWNER\""},"value":"INVALID_OWNER"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_a30e2b4f22d955e30086ae3aef0adfd87eec9d0d3f055d6aa9af61f522dda886","typeString":"literal_string \"INVALID_OWNER\""}],"id":4858,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"106586:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":4866,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"106586:45:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4867,"nodeType":"ExpressionStatement","src":"106586:45:0"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4872,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":4869,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"106676:5:0","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":4870,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"106682:9:0","memberName":"timestamp","nodeType":"MemberAccess","src":"106676:15:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"id":4871,"name":"deadline","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4849,"src":"106695:8:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"106676:27:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"494e56414c49445f45585049524154494f4e","id":4873,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"106705:20:0","typeDescriptions":{"typeIdentifier":"t_stringliteral_9fe3e5cf49f72bf8a6a8455c3e990f8479f5dfa09ac808886f330a39b0029c2d","typeString":"literal_string \"INVALID_EXPIRATION\""},"value":"INVALID_EXPIRATION"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_9fe3e5cf49f72bf8a6a8455c3e990f8479f5dfa09ac808886f330a39b0029c2d","typeString":"literal_string \"INVALID_EXPIRATION\""}],"id":4868,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"106668:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":4874,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"106668:58:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4875,"nodeType":"ExpressionStatement","src":"106668:58:0"},{"assignments":[4877],"declarations":[{"constant":false,"id":4877,"mutability":"mutable","name":"currentValidNonce","nameLocation":"106740:17:0","nodeType":"VariableDeclaration","scope":4930,"src":"106732:25:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4876,"name":"uint256","nodeType":"ElementaryTypeName","src":"106732:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":4881,"initialValue":{"baseExpression":{"id":4878,"name":"_nonces","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4720,"src":"106760:7:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":4880,"indexExpression":{"id":4879,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4843,"src":"106768:5:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"106760:14:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"106732:42:0"},{"assignments":[4883],"declarations":[{"constant":false,"id":4883,"mutability":"mutable","name":"digest","nameLocation":"106788:6:0","nodeType":"VariableDeclaration","scope":4930,"src":"106780:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":4882,"name":"bytes32","nodeType":"ElementaryTypeName","src":"106780:7:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":4902,"initialValue":{"arguments":[{"arguments":[{"hexValue":"1901","id":4887,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"106840:10:0","typeDescriptions":{"typeIdentifier":"t_stringliteral_301a50b291d33ce1e8e9064e3f6a6c51d902ec22892b50d58abf6357c6a45541","typeString":"literal_string hex\"1901\""},"value":"\u0019\u0001"},{"id":4888,"name":"DOMAIN_SEPARATOR","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4699,"src":"106860:16:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"arguments":[{"arguments":[{"id":4892,"name":"PERMIT_TYPEHASH","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4715,"src":"106931:15:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":4893,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4843,"src":"106960:5:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":4894,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4845,"src":"106979:7:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":4895,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4847,"src":"107000:5:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":4896,"name":"currentValidNonce","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4877,"src":"107019:17:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":4897,"name":"deadline","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4849,"src":"107050:8:0","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":4890,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"106907:3:0","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":4891,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"106911:6:0","memberName":"encode","nodeType":"MemberAccess","src":"106907:10:0","typeDescriptions":{"typeIdentifier":"t_function_abiencode_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":4898,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"106907:163:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":4889,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"106886:9:0","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":4899,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"106886:194:0","tryCall":false,"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":4885,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"106814:3:0","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":4886,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"106818:12:0","memberName":"encodePacked","nodeType":"MemberAccess","src":"106814:16:0","typeDescriptions":{"typeIdentifier":"t_function_abiencodepacked_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":4900,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"106814:274:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":4884,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"106797:9:0","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":4901,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"106797:297:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"VariableDeclarationStatement","src":"106780:314:0"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":4911,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4904,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4843,"src":"107109:5:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"id":4906,"name":"digest","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4883,"src":"107128:6:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":4907,"name":"v","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4851,"src":"107136:1:0","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},{"id":4908,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4853,"src":"107139:1:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":4909,"name":"s","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4855,"src":"107142:1:0","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":4905,"name":"ecrecover","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-6,"src":"107118:9:0","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":4910,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"107118:26:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"107109:35:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"494e56414c49445f5349474e4154555245","id":4912,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"107146:19:0","typeDescriptions":{"typeIdentifier":"t_stringliteral_5e2e9eaa2d734966dea0900deacd15b20129fbce05255d633a3ce5ebca181b88","typeString":"literal_string \"INVALID_SIGNATURE\""},"value":"INVALID_SIGNATURE"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_5e2e9eaa2d734966dea0900deacd15b20129fbce05255d633a3ce5ebca181b88","typeString":"literal_string \"INVALID_SIGNATURE\""}],"id":4903,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"107101:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":4913,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"107101:65:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4914,"nodeType":"ExpressionStatement","src":"107101:65:0"},{"id":4923,"nodeType":"UncheckedBlock","src":"107172:63:0","statements":[{"expression":{"id":4921,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":4915,"name":"_nonces","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4720,"src":"107190:7:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":4917,"indexExpression":{"id":4916,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4843,"src":"107198:5:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"107190:14:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":4920,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4918,"name":"currentValidNonce","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4877,"src":"107207:17:0","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":"107227:1:0","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"107207:21:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"107190:38:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":4922,"nodeType":"ExpressionStatement","src":"107190:38:0"}]},{"expression":{"arguments":[{"id":4925,"name":"owner","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4843,"src":"107249:5:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":4926,"name":"spender","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4845,"src":"107256:7:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":4927,"name":"value","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4847,"src":"107265:5:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":4924,"name":"_approve","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1018,"src":"107240:8:0","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":4928,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"107240:31:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4929,"nodeType":"ExpressionStatement","src":"107240:31:0"}]},"documentation":{"id":4841,"nodeType":"StructuredDocumentation","src":"106394:30:0","text":"@inheritdoc IStakedTokenV2"},"functionSelector":"d505accf","id":4931,"implemented":true,"kind":"function","modifiers":[],"name":"permit","nameLocation":"106436:6:0","nodeType":"FunctionDefinition","parameters":{"id":4856,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4843,"mutability":"mutable","name":"owner","nameLocation":"106456:5:0","nodeType":"VariableDeclaration","scope":4931,"src":"106448:13:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4842,"name":"address","nodeType":"ElementaryTypeName","src":"106448:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":4845,"mutability":"mutable","name":"spender","nameLocation":"106475:7:0","nodeType":"VariableDeclaration","scope":4931,"src":"106467:15:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4844,"name":"address","nodeType":"ElementaryTypeName","src":"106467:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":4847,"mutability":"mutable","name":"value","nameLocation":"106496:5:0","nodeType":"VariableDeclaration","scope":4931,"src":"106488:13:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4846,"name":"uint256","nodeType":"ElementaryTypeName","src":"106488:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":4849,"mutability":"mutable","name":"deadline","nameLocation":"106515:8:0","nodeType":"VariableDeclaration","scope":4931,"src":"106507:16:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4848,"name":"uint256","nodeType":"ElementaryTypeName","src":"106507:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":4851,"mutability":"mutable","name":"v","nameLocation":"106535:1:0","nodeType":"VariableDeclaration","scope":4931,"src":"106529:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":4850,"name":"uint8","nodeType":"ElementaryTypeName","src":"106529:5:0","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":4853,"mutability":"mutable","name":"r","nameLocation":"106550:1:0","nodeType":"VariableDeclaration","scope":4931,"src":"106542:9:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":4852,"name":"bytes32","nodeType":"ElementaryTypeName","src":"106542:7:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":4855,"mutability":"mutable","name":"s","nameLocation":"106565:1:0","nodeType":"VariableDeclaration","scope":4931,"src":"106557:9:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":4854,"name":"bytes32","nodeType":"ElementaryTypeName","src":"106557:7:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"106442:128:0"},"returnParameters":{"id":4857,"nodeType":"ParameterList","parameters":[],"src":"106580:0:0"},"scope":5209,"src":"106427:849:0","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":5020,"nodeType":"Block","src":"107940:588:0","statements":[{"assignments":[4951],"declarations":[{"constant":false,"id":4951,"mutability":"mutable","name":"structHash","nameLocation":"107954:10:0","nodeType":"VariableDeclaration","scope":5020,"src":"107946:18:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":4950,"name":"bytes32","nodeType":"ElementaryTypeName","src":"107946:7:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":4965,"initialValue":{"arguments":[{"arguments":[{"id":4955,"name":"DELEGATE_BY_TYPE_TYPEHASH","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1179,"src":"108004:25:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":4956,"name":"delegatee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4934,"src":"108039:9:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":4959,"name":"delegationType","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4937,"src":"108066:14:0","typeDescriptions":{"typeIdentifier":"t_enum$_DelegationType_$1088","typeString":"enum IGovernancePowerDelegationToken.DelegationType"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_enum$_DelegationType_$1088","typeString":"enum IGovernancePowerDelegationToken.DelegationType"}],"id":4958,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"108058:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":4957,"name":"uint256","nodeType":"ElementaryTypeName","src":"108058:7:0","typeDescriptions":{}}},"id":4960,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"108058:23:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":4961,"name":"nonce","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4939,"src":"108091:5:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":4962,"name":"expiry","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4941,"src":"108106:6:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":4953,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"107984:3:0","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":4954,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"107988:6:0","memberName":"encode","nodeType":"MemberAccess","src":"107984:10:0","typeDescriptions":{"typeIdentifier":"t_function_abiencode_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":4963,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"107984:136:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":4952,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"107967:9:0","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":4964,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"107967:159:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"VariableDeclarationStatement","src":"107946:180:0"},{"assignments":[4967],"declarations":[{"constant":false,"id":4967,"mutability":"mutable","name":"digest","nameLocation":"108140:6:0","nodeType":"VariableDeclaration","scope":5020,"src":"108132:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":4966,"name":"bytes32","nodeType":"ElementaryTypeName","src":"108132:7:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":4976,"initialValue":{"arguments":[{"arguments":[{"hexValue":"1901","id":4971,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"108183:10:0","typeDescriptions":{"typeIdentifier":"t_stringliteral_301a50b291d33ce1e8e9064e3f6a6c51d902ec22892b50d58abf6357c6a45541","typeString":"literal_string hex\"1901\""},"value":"\u0019\u0001"},{"id":4972,"name":"DOMAIN_SEPARATOR","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4699,"src":"108195:16:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":4973,"name":"structHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4951,"src":"108213:10:0","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":4969,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"108166:3:0","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":4970,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"108170:12:0","memberName":"encodePacked","nodeType":"MemberAccess","src":"108166:16:0","typeDescriptions":{"typeIdentifier":"t_function_abiencodepacked_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":4974,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"108166:58:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":4968,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"108149:9:0","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":4975,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"108149:81:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"VariableDeclarationStatement","src":"108132:98:0"},{"assignments":[4978],"declarations":[{"constant":false,"id":4978,"mutability":"mutable","name":"signatory","nameLocation":"108244:9:0","nodeType":"VariableDeclaration","scope":5020,"src":"108236:17:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4977,"name":"address","nodeType":"ElementaryTypeName","src":"108236:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":4985,"initialValue":{"arguments":[{"id":4980,"name":"digest","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4967,"src":"108266:6:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":4981,"name":"v","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4943,"src":"108274:1:0","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},{"id":4982,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4945,"src":"108277:1:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":4983,"name":"s","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4947,"src":"108280:1:0","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":4979,"name":"ecrecover","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-6,"src":"108256:9:0","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":4984,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"108256:26:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"108236:46:0"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":4992,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4987,"name":"signatory","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4978,"src":"108296:9:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":4990,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"108317:1:0","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":4989,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"108309:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":4988,"name":"address","nodeType":"ElementaryTypeName","src":"108309:7:0","typeDescriptions":{}}},"id":4991,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"108309:10:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"108296:23:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"494e56414c49445f5349474e4154555245","id":4993,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"108321:19:0","typeDescriptions":{"typeIdentifier":"t_stringliteral_5e2e9eaa2d734966dea0900deacd15b20129fbce05255d633a3ce5ebca181b88","typeString":"literal_string \"INVALID_SIGNATURE\""},"value":"INVALID_SIGNATURE"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_5e2e9eaa2d734966dea0900deacd15b20129fbce05255d633a3ce5ebca181b88","typeString":"literal_string \"INVALID_SIGNATURE\""}],"id":4986,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"108288:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":4994,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"108288:53:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":4995,"nodeType":"ExpressionStatement","src":"108288:53:0"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5002,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":4997,"name":"nonce","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4939,"src":"108355:5:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":5001,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"108364:20:0","subExpression":{"baseExpression":{"id":4998,"name":"_nonces","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4720,"src":"108364:7:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":5000,"indexExpression":{"id":4999,"name":"signatory","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4978,"src":"108372:9:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"108364:18:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"108355:29:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"494e56414c49445f4e4f4e4345","id":5003,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"108386:15:0","typeDescriptions":{"typeIdentifier":"t_stringliteral_a19e25beaf00f467d35fbe7e167b5794fca796dbfd417dd2accc8f5303300b99","typeString":"literal_string \"INVALID_NONCE\""},"value":"INVALID_NONCE"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_a19e25beaf00f467d35fbe7e167b5794fca796dbfd417dd2accc8f5303300b99","typeString":"literal_string \"INVALID_NONCE\""}],"id":4996,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"108347:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":5004,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"108347:55:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5005,"nodeType":"ExpressionStatement","src":"108347:55:0"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5010,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":5007,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"108416:5:0","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":5008,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"108422:9:0","memberName":"timestamp","nodeType":"MemberAccess","src":"108416:15:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"id":5009,"name":"expiry","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4941,"src":"108435:6:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"108416:25:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"494e56414c49445f45585049524154494f4e","id":5011,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"108443:20:0","typeDescriptions":{"typeIdentifier":"t_stringliteral_9fe3e5cf49f72bf8a6a8455c3e990f8479f5dfa09ac808886f330a39b0029c2d","typeString":"literal_string \"INVALID_EXPIRATION\""},"value":"INVALID_EXPIRATION"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_9fe3e5cf49f72bf8a6a8455c3e990f8479f5dfa09ac808886f330a39b0029c2d","typeString":"literal_string \"INVALID_EXPIRATION\""}],"id":5006,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"108408:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":5012,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"108408:56:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5013,"nodeType":"ExpressionStatement","src":"108408:56:0"},{"expression":{"arguments":[{"id":5015,"name":"signatory","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4978,"src":"108486:9:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5016,"name":"delegatee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4934,"src":"108497:9:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5017,"name":"delegationType","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4937,"src":"108508:14:0","typeDescriptions":{"typeIdentifier":"t_enum$_DelegationType_$1088","typeString":"enum IGovernancePowerDelegationToken.DelegationType"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_enum$_DelegationType_$1088","typeString":"enum IGovernancePowerDelegationToken.DelegationType"}],"id":5014,"name":"_delegateByType","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1407,"src":"108470:15:0","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_enum$_DelegationType_$1088_$returns$__$","typeString":"function (address,address,enum IGovernancePowerDelegationToken.DelegationType)"}},"id":5018,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"108470:53:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5019,"nodeType":"ExpressionStatement","src":"108470:53:0"}]},"documentation":{"id":4932,"nodeType":"StructuredDocumentation","src":"107280:477:0","text":" @dev Delegates power from signatory to `delegatee`\n @param delegatee The address to delegate votes to\n @param delegationType the type of delegation (VOTING_POWER, PROPOSITION_POWER)\n @param nonce The contract state required to match the signature\n @param expiry The time at which to expire the signature\n @param v The recovery byte of the signature\n @param r Half of the ECDSA signature pair\n @param s Half of the ECDSA signature pair"},"functionSelector":"f713d8a8","id":5021,"implemented":true,"kind":"function","modifiers":[],"name":"delegateByTypeBySig","nameLocation":"107769:19:0","nodeType":"FunctionDefinition","parameters":{"id":4948,"nodeType":"ParameterList","parameters":[{"constant":false,"id":4934,"mutability":"mutable","name":"delegatee","nameLocation":"107802:9:0","nodeType":"VariableDeclaration","scope":5021,"src":"107794:17:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":4933,"name":"address","nodeType":"ElementaryTypeName","src":"107794:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":4937,"mutability":"mutable","name":"delegationType","nameLocation":"107832:14:0","nodeType":"VariableDeclaration","scope":5021,"src":"107817:29:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_DelegationType_$1088","typeString":"enum IGovernancePowerDelegationToken.DelegationType"},"typeName":{"id":4936,"nodeType":"UserDefinedTypeName","pathNode":{"id":4935,"name":"DelegationType","nameLocations":["107817:14:0"],"nodeType":"IdentifierPath","referencedDeclaration":1088,"src":"107817:14:0"},"referencedDeclaration":1088,"src":"107817:14:0","typeDescriptions":{"typeIdentifier":"t_enum$_DelegationType_$1088","typeString":"enum IGovernancePowerDelegationToken.DelegationType"}},"visibility":"internal"},{"constant":false,"id":4939,"mutability":"mutable","name":"nonce","nameLocation":"107860:5:0","nodeType":"VariableDeclaration","scope":5021,"src":"107852:13:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4938,"name":"uint256","nodeType":"ElementaryTypeName","src":"107852:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":4941,"mutability":"mutable","name":"expiry","nameLocation":"107879:6:0","nodeType":"VariableDeclaration","scope":5021,"src":"107871:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":4940,"name":"uint256","nodeType":"ElementaryTypeName","src":"107871:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":4943,"mutability":"mutable","name":"v","nameLocation":"107897:1:0","nodeType":"VariableDeclaration","scope":5021,"src":"107891:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":4942,"name":"uint8","nodeType":"ElementaryTypeName","src":"107891:5:0","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":4945,"mutability":"mutable","name":"r","nameLocation":"107912:1:0","nodeType":"VariableDeclaration","scope":5021,"src":"107904:9:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":4944,"name":"bytes32","nodeType":"ElementaryTypeName","src":"107904:7:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":4947,"mutability":"mutable","name":"s","nameLocation":"107927:1:0","nodeType":"VariableDeclaration","scope":5021,"src":"107919:9:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":4946,"name":"bytes32","nodeType":"ElementaryTypeName","src":"107919:7:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"107788:144:0"},"returnParameters":{"id":4949,"nodeType":"ParameterList","parameters":[],"src":"107940:0:0"},"scope":5209,"src":"107760:768:0","stateMutability":"nonpayable","virtual":false,"visibility":"public"},{"body":{"id":5111,"nodeType":"Block","src":"109067:597:0","statements":[{"assignments":[5038],"declarations":[{"constant":false,"id":5038,"mutability":"mutable","name":"structHash","nameLocation":"109081:10:0","nodeType":"VariableDeclaration","scope":5111,"src":"109073:18:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":5037,"name":"bytes32","nodeType":"ElementaryTypeName","src":"109073:7:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":5048,"initialValue":{"arguments":[{"arguments":[{"id":5042,"name":"DELEGATE_TYPEHASH","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1184,"src":"109122:17:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":5043,"name":"delegatee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5024,"src":"109141:9:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5044,"name":"nonce","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5026,"src":"109152:5:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":5045,"name":"expiry","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5028,"src":"109159:6:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes32","typeString":"bytes32"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":5040,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"109111:3:0","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":5041,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"109115:6:0","memberName":"encode","nodeType":"MemberAccess","src":"109111:10:0","typeDescriptions":{"typeIdentifier":"t_function_abiencode_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":5046,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"109111:55:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":5039,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"109094:9:0","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":5047,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"109094:78:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"VariableDeclarationStatement","src":"109073:99:0"},{"assignments":[5050],"declarations":[{"constant":false,"id":5050,"mutability":"mutable","name":"digest","nameLocation":"109186:6:0","nodeType":"VariableDeclaration","scope":5111,"src":"109178:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":5049,"name":"bytes32","nodeType":"ElementaryTypeName","src":"109178:7:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"id":5059,"initialValue":{"arguments":[{"arguments":[{"hexValue":"1901","id":5054,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"109229:10:0","typeDescriptions":{"typeIdentifier":"t_stringliteral_301a50b291d33ce1e8e9064e3f6a6c51d902ec22892b50d58abf6357c6a45541","typeString":"literal_string hex\"1901\""},"value":"\u0019\u0001"},{"id":5055,"name":"DOMAIN_SEPARATOR","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4699,"src":"109241:16:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":5056,"name":"structHash","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5038,"src":"109259:10:0","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":5052,"name":"abi","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-1,"src":"109212:3:0","typeDescriptions":{"typeIdentifier":"t_magic_abi","typeString":"abi"}},"id":5053,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"109216:12:0","memberName":"encodePacked","nodeType":"MemberAccess","src":"109212:16:0","typeDescriptions":{"typeIdentifier":"t_function_abiencodepacked_pure$__$returns$_t_bytes_memory_ptr_$","typeString":"function () pure returns (bytes memory)"}},"id":5057,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"109212:58:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes memory"}],"id":5051,"name":"keccak256","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-8,"src":"109195:9:0","typeDescriptions":{"typeIdentifier":"t_function_keccak256_pure$_t_bytes_memory_ptr_$returns$_t_bytes32_$","typeString":"function (bytes memory) pure returns (bytes32)"}},"id":5058,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"109195:81:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"nodeType":"VariableDeclarationStatement","src":"109178:98:0"},{"assignments":[5061],"declarations":[{"constant":false,"id":5061,"mutability":"mutable","name":"signatory","nameLocation":"109290:9:0","nodeType":"VariableDeclaration","scope":5111,"src":"109282:17:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5060,"name":"address","nodeType":"ElementaryTypeName","src":"109282:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":5068,"initialValue":{"arguments":[{"id":5063,"name":"digest","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5050,"src":"109312:6:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":5064,"name":"v","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5030,"src":"109320:1:0","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},{"id":5065,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5032,"src":"109323:1:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":5066,"name":"s","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5034,"src":"109326:1:0","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":5062,"name":"ecrecover","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-6,"src":"109302:9:0","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":5067,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"109302:26:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"109282:46:0"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":5075,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5070,"name":"signatory","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5061,"src":"109342:9:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":5073,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"109363:1:0","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":5072,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"109355:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":5071,"name":"address","nodeType":"ElementaryTypeName","src":"109355:7:0","typeDescriptions":{}}},"id":5074,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"109355:10:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"109342:23:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"494e56414c49445f5349474e4154555245","id":5076,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"109367:19:0","typeDescriptions":{"typeIdentifier":"t_stringliteral_5e2e9eaa2d734966dea0900deacd15b20129fbce05255d633a3ce5ebca181b88","typeString":"literal_string \"INVALID_SIGNATURE\""},"value":"INVALID_SIGNATURE"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_5e2e9eaa2d734966dea0900deacd15b20129fbce05255d633a3ce5ebca181b88","typeString":"literal_string \"INVALID_SIGNATURE\""}],"id":5069,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"109334:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":5077,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"109334:53:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5078,"nodeType":"ExpressionStatement","src":"109334:53:0"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5085,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5080,"name":"nonce","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5026,"src":"109401:5:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":5084,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"109410:20:0","subExpression":{"baseExpression":{"id":5081,"name":"_nonces","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4720,"src":"109410:7:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":5083,"indexExpression":{"id":5082,"name":"signatory","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5061,"src":"109418:9:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"109410:18:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"109401:29:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"494e56414c49445f4e4f4e4345","id":5086,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"109432:15:0","typeDescriptions":{"typeIdentifier":"t_stringliteral_a19e25beaf00f467d35fbe7e167b5794fca796dbfd417dd2accc8f5303300b99","typeString":"literal_string \"INVALID_NONCE\""},"value":"INVALID_NONCE"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_a19e25beaf00f467d35fbe7e167b5794fca796dbfd417dd2accc8f5303300b99","typeString":"literal_string \"INVALID_NONCE\""}],"id":5079,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"109393:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":5087,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"109393:55:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5088,"nodeType":"ExpressionStatement","src":"109393:55:0"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5093,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":5090,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"109462:5:0","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":5091,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"109468:9:0","memberName":"timestamp","nodeType":"MemberAccess","src":"109462:15:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"id":5092,"name":"expiry","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5028,"src":"109481:6:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"109462:25:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"494e56414c49445f45585049524154494f4e","id":5094,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"109489:20:0","typeDescriptions":{"typeIdentifier":"t_stringliteral_9fe3e5cf49f72bf8a6a8455c3e990f8479f5dfa09ac808886f330a39b0029c2d","typeString":"literal_string \"INVALID_EXPIRATION\""},"value":"INVALID_EXPIRATION"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_9fe3e5cf49f72bf8a6a8455c3e990f8479f5dfa09ac808886f330a39b0029c2d","typeString":"literal_string \"INVALID_EXPIRATION\""}],"id":5089,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"109454:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":5095,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"109454:56:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5096,"nodeType":"ExpressionStatement","src":"109454:56:0"},{"expression":{"arguments":[{"id":5098,"name":"signatory","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5061,"src":"109532:9:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5099,"name":"delegatee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5024,"src":"109543:9:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":5100,"name":"DelegationType","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1088,"src":"109554:14:0","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_DelegationType_$1088_$","typeString":"type(enum IGovernancePowerDelegationToken.DelegationType)"}},"id":5101,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"109569:12:0","memberName":"VOTING_POWER","nodeType":"MemberAccess","referencedDeclaration":1086,"src":"109554:27:0","typeDescriptions":{"typeIdentifier":"t_enum$_DelegationType_$1088","typeString":"enum IGovernancePowerDelegationToken.DelegationType"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_enum$_DelegationType_$1088","typeString":"enum IGovernancePowerDelegationToken.DelegationType"}],"id":5097,"name":"_delegateByType","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1407,"src":"109516:15:0","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_enum$_DelegationType_$1088_$returns$__$","typeString":"function (address,address,enum IGovernancePowerDelegationToken.DelegationType)"}},"id":5102,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"109516:66:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5103,"nodeType":"ExpressionStatement","src":"109516:66:0"},{"expression":{"arguments":[{"id":5105,"name":"signatory","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5061,"src":"109604:9:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5106,"name":"delegatee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5024,"src":"109615:9:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"id":5107,"name":"DelegationType","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1088,"src":"109626:14:0","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_DelegationType_$1088_$","typeString":"type(enum IGovernancePowerDelegationToken.DelegationType)"}},"id":5108,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"109641:17:0","memberName":"PROPOSITION_POWER","nodeType":"MemberAccess","referencedDeclaration":1087,"src":"109626:32:0","typeDescriptions":{"typeIdentifier":"t_enum$_DelegationType_$1088","typeString":"enum IGovernancePowerDelegationToken.DelegationType"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_enum$_DelegationType_$1088","typeString":"enum IGovernancePowerDelegationToken.DelegationType"}],"id":5104,"name":"_delegateByType","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1407,"src":"109588:15:0","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_enum$_DelegationType_$1088_$returns$__$","typeString":"function (address,address,enum IGovernancePowerDelegationToken.DelegationType)"}},"id":5109,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"109588:71:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5110,"nodeType":"ExpressionStatement","src":"109588:71:0"}]},"documentation":{"id":5022,"nodeType":"StructuredDocumentation","src":"108532:393:0","text":" @dev Delegates power from signatory to `delegatee`\n @param delegatee The address to delegate votes to\n @param nonce The contract state required to match the signature\n @param expiry The time at which to expire the signature\n @param v The recovery byte of the signature\n @param r Half of the ECDSA signature pair\n @param s Half of the ECDSA signature pair"},"functionSelector":"c3cda520","id":5112,"implemented":true,"kind":"function","modifiers":[],"name":"delegateBySig","nameLocation":"108937:13:0","nodeType":"FunctionDefinition","parameters":{"id":5035,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5024,"mutability":"mutable","name":"delegatee","nameLocation":"108964:9:0","nodeType":"VariableDeclaration","scope":5112,"src":"108956:17:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5023,"name":"address","nodeType":"ElementaryTypeName","src":"108956:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5026,"mutability":"mutable","name":"nonce","nameLocation":"108987:5:0","nodeType":"VariableDeclaration","scope":5112,"src":"108979:13:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5025,"name":"uint256","nodeType":"ElementaryTypeName","src":"108979:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":5028,"mutability":"mutable","name":"expiry","nameLocation":"109006:6:0","nodeType":"VariableDeclaration","scope":5112,"src":"108998:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5027,"name":"uint256","nodeType":"ElementaryTypeName","src":"108998:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":5030,"mutability":"mutable","name":"v","nameLocation":"109024:1:0","nodeType":"VariableDeclaration","scope":5112,"src":"109018:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":5029,"name":"uint8","nodeType":"ElementaryTypeName","src":"109018:5:0","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":5032,"mutability":"mutable","name":"r","nameLocation":"109039:1:0","nodeType":"VariableDeclaration","scope":5112,"src":"109031:9:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":5031,"name":"bytes32","nodeType":"ElementaryTypeName","src":"109031:7:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":5034,"mutability":"mutable","name":"s","nameLocation":"109054:1:0","nodeType":"VariableDeclaration","scope":5112,"src":"109046:9:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":5033,"name":"bytes32","nodeType":"ElementaryTypeName","src":"109046:7:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"108950:109:0"},"returnParameters":{"id":5036,"nodeType":"ParameterList","parameters":[],"src":"109067:0:0"},"scope":5209,"src":"108928:736:0","stateMutability":"nonpayable","virtual":false,"visibility":"public"},{"body":{"id":5166,"nodeType":"Block","src":"110147:422:0","statements":[{"assignments":[5125],"declarations":[{"constant":false,"id":5125,"mutability":"mutable","name":"accruedRewards","nameLocation":"110161:14:0","nodeType":"VariableDeclaration","scope":5166,"src":"110153:22:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5124,"name":"uint256","nodeType":"ElementaryTypeName","src":"110153:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":5136,"initialValue":{"arguments":[{"id":5127,"name":"user","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5115,"src":"110210:4:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":5130,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"110230:4:0","typeDescriptions":{"typeIdentifier":"t_contract$_StakedTokenV2_$5209","typeString":"contract StakedTokenV2"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_StakedTokenV2_$5209","typeString":"contract StakedTokenV2"}],"id":5129,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"110222:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":5128,"name":"address","nodeType":"ElementaryTypeName","src":"110222:7:0","typeDescriptions":{}}},"id":5131,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"110222:13:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5132,"name":"userBalance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5117,"src":"110243:11:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[],"expression":{"argumentTypes":[],"id":5133,"name":"totalSupply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":582,"src":"110262:11:0","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":5134,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"110262:13:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5126,"name":"_updateUserAssetInternal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2729,"src":"110178:24:0","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (address,address,uint256,uint256) returns (uint256)"}},"id":5135,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"110178:103:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"110153:128:0"},{"assignments":[5138],"declarations":[{"constant":false,"id":5138,"mutability":"mutable","name":"unclaimedRewards","nameLocation":"110295:16:0","nodeType":"VariableDeclaration","scope":5166,"src":"110287:24:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5137,"name":"uint256","nodeType":"ElementaryTypeName","src":"110287:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":5144,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5143,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"baseExpression":{"id":5139,"name":"stakerRewardsToClaim","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4672,"src":"110314:20:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":5141,"indexExpression":{"id":5140,"name":"user","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5115,"src":"110335:4:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"110314:26:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":5142,"name":"accruedRewards","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5125,"src":"110343:14:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"110314:43:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"110287:70:0"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5147,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5145,"name":"accruedRewards","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5125,"src":"110368:14:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":5146,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"110386:1:0","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"110368:19:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5163,"nodeType":"IfStatement","src":"110364:171:0","trueBody":{"id":5162,"nodeType":"Block","src":"110389:146:0","statements":[{"condition":{"id":5148,"name":"updateStorage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5119,"src":"110401:13:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5156,"nodeType":"IfStatement","src":"110397:83:0","trueBody":{"id":5155,"nodeType":"Block","src":"110416:64:0","statements":[{"expression":{"id":5153,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":5149,"name":"stakerRewardsToClaim","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4672,"src":"110426:20:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":5151,"indexExpression":{"id":5150,"name":"user","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5115,"src":"110447:4:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"110426:26:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":5152,"name":"unclaimedRewards","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5138,"src":"110455:16:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"110426:45:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5154,"nodeType":"ExpressionStatement","src":"110426:45:0"}]}},{"eventCall":{"arguments":[{"id":5158,"name":"user","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5115,"src":"110507:4:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5159,"name":"accruedRewards","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5125,"src":"110513:14:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5157,"name":"RewardsAccrued","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":174,"src":"110492:14:0","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":5160,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"110492:36:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5161,"nodeType":"EmitStatement","src":"110487:41:0"}]}},{"expression":{"id":5164,"name":"unclaimedRewards","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5138,"src":"110548:16:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":5123,"id":5165,"nodeType":"Return","src":"110541:23:0"}]},"documentation":{"id":5113,"nodeType":"StructuredDocumentation","src":"109668:338:0","text":" @dev Updates the user state related with his accrued rewards\n @param user Address of the user\n @param userBalance The current balance of the user\n @param updateStorage Boolean flag used to update or not the stakerRewardsToClaim of the user\n @return The unclaimed rewards that were added to the total accrued"},"id":5167,"implemented":true,"kind":"function","modifiers":[],"name":"_updateCurrentUnclaimedRewards","nameLocation":"110018:30:0","nodeType":"FunctionDefinition","parameters":{"id":5120,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5115,"mutability":"mutable","name":"user","nameLocation":"110062:4:0","nodeType":"VariableDeclaration","scope":5167,"src":"110054:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5114,"name":"address","nodeType":"ElementaryTypeName","src":"110054:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5117,"mutability":"mutable","name":"userBalance","nameLocation":"110080:11:0","nodeType":"VariableDeclaration","scope":5167,"src":"110072:19:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5116,"name":"uint256","nodeType":"ElementaryTypeName","src":"110072:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":5119,"mutability":"mutable","name":"updateStorage","nameLocation":"110102:13:0","nodeType":"VariableDeclaration","scope":5167,"src":"110097:18:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":5118,"name":"bool","nodeType":"ElementaryTypeName","src":"110097:4:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"internal"}],"src":"110048:71:0"},"returnParameters":{"id":5123,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5122,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5167,"src":"110138:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5121,"name":"uint256","nodeType":"ElementaryTypeName","src":"110138:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"110137:9:0"},"scope":5209,"src":"110009:560:0","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"baseFunctions":[1756],"body":{"id":5207,"nodeType":"Block","src":"111056:293:0","statements":[{"condition":{"commonType":{"typeIdentifier":"t_enum$_DelegationType_$1088","typeString":"enum IGovernancePowerDelegationToken.DelegationType"},"id":5193,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5190,"name":"delegationType","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5171,"src":"111066:14:0","typeDescriptions":{"typeIdentifier":"t_enum$_DelegationType_$1088","typeString":"enum IGovernancePowerDelegationToken.DelegationType"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":5191,"name":"DelegationType","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1088,"src":"111084:14:0","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_DelegationType_$1088_$","typeString":"type(enum IGovernancePowerDelegationToken.DelegationType)"}},"id":5192,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"111099:12:0","memberName":"VOTING_POWER","nodeType":"MemberAccess","referencedDeclaration":1086,"src":"111084:27:0","typeDescriptions":{"typeIdentifier":"t_enum$_DelegationType_$1088","typeString":"enum IGovernancePowerDelegationToken.DelegationType"}},"src":"111066:45:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":5205,"nodeType":"Block","src":"111201:144:0","statements":[{"expression":{"components":[{"id":5200,"name":"_propositionPowerSnapshots","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4689,"src":"111226:26:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_uint256_$_t_struct$_Snapshot_$1190_storage_$_$","typeString":"mapping(address => mapping(uint256 => struct GovernancePowerDelegationERC20.Snapshot storage ref))"}},{"id":5201,"name":"_propositionPowerSnapshotsCounts","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4693,"src":"111262:32:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},{"id":5202,"name":"_propositionPowerDelegates","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4697,"src":"111304:26:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_address_$","typeString":"mapping(address => address)"}}],"id":5203,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"111216:122:0","typeDescriptions":{"typeIdentifier":"t_tuple$_t_mapping$_t_address_$_t_mapping$_t_uint256_$_t_struct$_Snapshot_$1190_storage_$_$_$_t_mapping$_t_address_$_t_uint256_$_$_t_mapping$_t_address_$_t_address_$_$","typeString":"tuple(mapping(address => mapping(uint256 => struct GovernancePowerDelegationERC20.Snapshot storage ref)),mapping(address => uint256),mapping(address => address))"}},"functionReturnParameters":5189,"id":5204,"nodeType":"Return","src":"111209:129:0"}]},"id":5206,"nodeType":"IfStatement","src":"111062:283:0","trueBody":{"id":5199,"nodeType":"Block","src":"111113:82:0","statements":[{"expression":{"components":[{"id":5194,"name":"_votingSnapshots","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1897,"src":"111129:16:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_uint256_$_t_struct$_Snapshot_$1190_storage_$_$","typeString":"mapping(address => mapping(uint256 => struct GovernancePowerDelegationERC20.Snapshot storage ref))"}},{"id":5195,"name":"_votingSnapshotsCounts","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1901,"src":"111147:22:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},{"id":5196,"name":"_votingDelegates","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4682,"src":"111171:16:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_address_$","typeString":"mapping(address => address)"}}],"id":5197,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"111128:60:0","typeDescriptions":{"typeIdentifier":"t_tuple$_t_mapping$_t_address_$_t_mapping$_t_uint256_$_t_struct$_Snapshot_$1190_storage_$_$_$_t_mapping$_t_address_$_t_uint256_$_$_t_mapping$_t_address_$_t_address_$_$","typeString":"tuple(mapping(address => mapping(uint256 => struct GovernancePowerDelegationERC20.Snapshot storage ref)),mapping(address => uint256),mapping(address => address))"}},"functionReturnParameters":5189,"id":5198,"nodeType":"Return","src":"111121:67:0"}]}}]},"documentation":{"id":5168,"nodeType":"StructuredDocumentation","src":"110573:161:0","text":" @dev returns relevant storage slots for a DelegationType\n @param delegationType the requested DelegationType\n @return the relevant storage"},"id":5208,"implemented":true,"kind":"function","modifiers":[],"name":"_getDelegationDataByType","nameLocation":"110746:24:0","nodeType":"FunctionDefinition","overrides":{"id":5173,"nodeType":"OverrideSpecifier","overrides":[],"src":"110828:8:0"},"parameters":{"id":5172,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5171,"mutability":"mutable","name":"delegationType","nameLocation":"110786:14:0","nodeType":"VariableDeclaration","scope":5208,"src":"110771:29:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_enum$_DelegationType_$1088","typeString":"enum IGovernancePowerDelegationToken.DelegationType"},"typeName":{"id":5170,"nodeType":"UserDefinedTypeName","pathNode":{"id":5169,"name":"DelegationType","nameLocations":["110771:14:0"],"nodeType":"IdentifierPath","referencedDeclaration":1088,"src":"110771:14:0"},"referencedDeclaration":1088,"src":"110771:14:0","typeDescriptions":{"typeIdentifier":"t_enum$_DelegationType_$1088","typeString":"enum IGovernancePowerDelegationToken.DelegationType"}},"visibility":"internal"}],"src":"110770:31:0"},"returnParameters":{"id":5189,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5180,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5208,"src":"110857:56:0","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_uint256_$_t_struct$_Snapshot_$1190_storage_$_$","typeString":"mapping(address => mapping(uint256 => struct GovernancePowerDelegationERC20.Snapshot))"},"typeName":{"id":5179,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":5174,"name":"address","nodeType":"ElementaryTypeName","src":"110865:7:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"110857:48:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_uint256_$_t_struct$_Snapshot_$1190_storage_$_$","typeString":"mapping(address => mapping(uint256 => struct GovernancePowerDelegationERC20.Snapshot))"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":5178,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":5175,"name":"uint256","nodeType":"ElementaryTypeName","src":"110884:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Mapping","src":"110876:28:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_Snapshot_$1190_storage_$","typeString":"mapping(uint256 => struct GovernancePowerDelegationERC20.Snapshot)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":5177,"nodeType":"UserDefinedTypeName","pathNode":{"id":5176,"name":"Snapshot","nameLocations":["110895:8:0"],"nodeType":"IdentifierPath","referencedDeclaration":1190,"src":"110895:8:0"},"referencedDeclaration":1190,"src":"110895:8:0","typeDescriptions":{"typeIdentifier":"t_struct$_Snapshot_$1190_storage_ptr","typeString":"struct GovernancePowerDelegationERC20.Snapshot"}}}},"visibility":"internal"},{"constant":false,"id":5184,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5208,"src":"110933:35:0","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"typeName":{"id":5183,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":5181,"name":"address","nodeType":"ElementaryTypeName","src":"110941:7:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"110933:27:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":5182,"name":"uint256","nodeType":"ElementaryTypeName","src":"110952:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}},"visibility":"internal"},{"constant":false,"id":5188,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5208,"src":"110994:35:0","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_address_$","typeString":"mapping(address => address)"},"typeName":{"id":5187,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":5185,"name":"address","nodeType":"ElementaryTypeName","src":"111002:7:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"110994:27:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_address_$","typeString":"mapping(address => address)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":5186,"name":"address","nodeType":"ElementaryTypeName","src":"111013:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}},"visibility":"internal"}],"src":"110849:204:0"},"scope":5209,"src":"110737:612:0","stateMutability":"view","virtual":false,"visibility":"internal"}],"scope":7298,"src":"103487:7864:0","usedErrors":[],"usedEvents":[11,20,174,182,188,1098,1108,2487,2493,2501]},{"id":5210,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"111450:23:0"},{"abstract":false,"baseContracts":[],"canonicalName":"RoleManager","contractDependencies":[],"contractKind":"contract","documentation":{"id":5211,"nodeType":"StructuredDocumentation","src":"111475:237:0","text":" @title RoleManager\n @notice Generic role manager to manage slashing and cooldown admin in StakedAaveV3.\n         It implements a claim admin role pattern to safely migrate between different admin addresses\n @author Aave*"},"fullyImplemented":true,"id":5419,"linearizedBaseContracts":[5419],"name":"RoleManager","nameLocation":"111722:11:0","nodeType":"ContractDefinition","nodes":[{"canonicalName":"RoleManager.InitAdmin","id":5216,"members":[{"constant":false,"id":5213,"mutability":"mutable","name":"role","nameLocation":"111769:4:0","nodeType":"VariableDeclaration","scope":5216,"src":"111761:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5212,"name":"uint256","nodeType":"ElementaryTypeName","src":"111761:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":5215,"mutability":"mutable","name":"admin","nameLocation":"111787:5:0","nodeType":"VariableDeclaration","scope":5216,"src":"111779:13:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5214,"name":"address","nodeType":"ElementaryTypeName","src":"111779:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"name":"InitAdmin","nameLocation":"111745:9:0","nodeType":"StructDefinition","scope":5419,"src":"111738:59:0","visibility":"public"},{"constant":false,"id":5220,"mutability":"mutable","name":"_admins","nameLocation":"111837:7:0","nodeType":"VariableDeclaration","scope":5419,"src":"111801:43:0","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_address_$","typeString":"mapping(uint256 => address)"},"typeName":{"id":5219,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":5217,"name":"uint256","nodeType":"ElementaryTypeName","src":"111809:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Mapping","src":"111801:27:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_address_$","typeString":"mapping(uint256 => address)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":5218,"name":"address","nodeType":"ElementaryTypeName","src":"111820:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}},"visibility":"private"},{"constant":false,"id":5224,"mutability":"mutable","name":"_pendingAdmins","nameLocation":"111884:14:0","nodeType":"VariableDeclaration","scope":5419,"src":"111848:50:0","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_address_$","typeString":"mapping(uint256 => address)"},"typeName":{"id":5223,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":5221,"name":"uint256","nodeType":"ElementaryTypeName","src":"111856:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Mapping","src":"111848:27:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_address_$","typeString":"mapping(uint256 => address)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":5222,"name":"address","nodeType":"ElementaryTypeName","src":"111867:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}},"visibility":"private"},{"anonymous":false,"eventSelector":"c3d1bf52795a20771ee6de3e59948fd83e10db956122d4709a3b86c512963855","id":5230,"name":"PendingAdminChanged","nameLocation":"111909:19:0","nodeType":"EventDefinition","parameters":{"id":5229,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5226,"indexed":true,"mutability":"mutable","name":"newPendingAdmin","nameLocation":"111945:15:0","nodeType":"VariableDeclaration","scope":5230,"src":"111929:31:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5225,"name":"address","nodeType":"ElementaryTypeName","src":"111929:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5228,"indexed":false,"mutability":"mutable","name":"role","nameLocation":"111970:4:0","nodeType":"VariableDeclaration","scope":5230,"src":"111962:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5227,"name":"uint256","nodeType":"ElementaryTypeName","src":"111962:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"111928:47:0"},"src":"111903:73:0"},{"anonymous":false,"eventSelector":"83a9ddad961dcb7c6894c9585a16ff7792c2ec8281256a3cc7303ae830152dcf","id":5236,"name":"RoleClaimed","nameLocation":"111985:11:0","nodeType":"EventDefinition","parameters":{"id":5235,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5232,"indexed":true,"mutability":"mutable","name":"newAdmin","nameLocation":"112013:8:0","nodeType":"VariableDeclaration","scope":5236,"src":"111997:24:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5231,"name":"address","nodeType":"ElementaryTypeName","src":"111997:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5234,"indexed":false,"mutability":"mutable","name":"role","nameLocation":"112031:4:0","nodeType":"VariableDeclaration","scope":5236,"src":"112023:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5233,"name":"uint256","nodeType":"ElementaryTypeName","src":"112023:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"111996:40:0"},"src":"111979:58:0"},{"body":{"id":5251,"nodeType":"Block","src":"112078:79:0","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":5246,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"baseExpression":{"id":5241,"name":"_admins","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5220,"src":"112092:7:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_address_$","typeString":"mapping(uint256 => address)"}},"id":5243,"indexExpression":{"id":5242,"name":"role","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5238,"src":"112100:4:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"112092:13:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":5244,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"112109:3:0","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":5245,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"112113:6:0","memberName":"sender","nodeType":"MemberAccess","src":"112109:10:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"112092:27:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"43414c4c45525f4e4f545f524f4c455f41444d494e","id":5247,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"112121:23:0","typeDescriptions":{"typeIdentifier":"t_stringliteral_5e135040f8dc35152fcfe1ddf129384a9ce13d1776c5e6dc86a62f244bfcfc0b","typeString":"literal_string \"CALLER_NOT_ROLE_ADMIN\""},"value":"CALLER_NOT_ROLE_ADMIN"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_5e135040f8dc35152fcfe1ddf129384a9ce13d1776c5e6dc86a62f244bfcfc0b","typeString":"literal_string \"CALLER_NOT_ROLE_ADMIN\""}],"id":5240,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"112084:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":5248,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"112084:61:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5249,"nodeType":"ExpressionStatement","src":"112084:61:0"},{"id":5250,"nodeType":"PlaceholderStatement","src":"112151:1:0"}]},"id":5252,"name":"onlyRoleAdmin","nameLocation":"112050:13:0","nodeType":"ModifierDefinition","parameters":{"id":5239,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5238,"mutability":"mutable","name":"role","nameLocation":"112072:4:0","nodeType":"VariableDeclaration","scope":5252,"src":"112064:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5237,"name":"uint256","nodeType":"ElementaryTypeName","src":"112064:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"112063:14:0"},"src":"112041:116:0","virtual":false,"visibility":"internal"},{"body":{"id":5267,"nodeType":"Block","src":"112205:112:0","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":5262,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"baseExpression":{"id":5257,"name":"_pendingAdmins","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5224,"src":"112226:14:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_address_$","typeString":"mapping(uint256 => address)"}},"id":5259,"indexExpression":{"id":5258,"name":"role","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5254,"src":"112241:4:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"112226:20:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"expression":{"id":5260,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"112250:3:0","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":5261,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"112254:6:0","memberName":"sender","nodeType":"MemberAccess","src":"112250:10:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"112226:34:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"43414c4c45525f4e4f545f50454e44494e475f524f4c455f41444d494e","id":5263,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"112268:31:0","typeDescriptions":{"typeIdentifier":"t_stringliteral_e80295a9867834b2dfe1d7606b122307d35ebaa940c20b448f18824a9256df9d","typeString":"literal_string \"CALLER_NOT_PENDING_ROLE_ADMIN\""},"value":"CALLER_NOT_PENDING_ROLE_ADMIN"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_e80295a9867834b2dfe1d7606b122307d35ebaa940c20b448f18824a9256df9d","typeString":"literal_string \"CALLER_NOT_PENDING_ROLE_ADMIN\""}],"id":5256,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"112211:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":5264,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"112211:94:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5265,"nodeType":"ExpressionStatement","src":"112211:94:0"},{"id":5266,"nodeType":"PlaceholderStatement","src":"112311:1:0"}]},"id":5268,"name":"onlyPendingRoleAdmin","nameLocation":"112170:20:0","nodeType":"ModifierDefinition","parameters":{"id":5255,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5254,"mutability":"mutable","name":"role","nameLocation":"112199:4:0","nodeType":"VariableDeclaration","scope":5268,"src":"112191:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5253,"name":"uint256","nodeType":"ElementaryTypeName","src":"112191:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"112190:14:0"},"src":"112161:156:0","virtual":false,"visibility":"internal"},{"body":{"id":5280,"nodeType":"Block","src":"112525:31:0","statements":[{"expression":{"baseExpression":{"id":5276,"name":"_admins","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5220,"src":"112538:7:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_address_$","typeString":"mapping(uint256 => address)"}},"id":5278,"indexExpression":{"id":5277,"name":"role","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5271,"src":"112546:4:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"112538:13:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":5275,"id":5279,"nodeType":"Return","src":"112531:20:0"}]},"documentation":{"id":5269,"nodeType":"StructuredDocumentation","src":"112321:139:0","text":" @dev returns the admin associated with the specific role\n @param role the role associated with the admin being returned*"},"functionSelector":"111fd88b","id":5281,"implemented":true,"kind":"function","modifiers":[],"name":"getAdmin","nameLocation":"112472:8:0","nodeType":"FunctionDefinition","parameters":{"id":5272,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5271,"mutability":"mutable","name":"role","nameLocation":"112489:4:0","nodeType":"VariableDeclaration","scope":5281,"src":"112481:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5270,"name":"uint256","nodeType":"ElementaryTypeName","src":"112481:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"112480:14:0"},"returnParameters":{"id":5275,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5274,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5281,"src":"112516:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5273,"name":"address","nodeType":"ElementaryTypeName","src":"112516:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"112515:9:0"},"scope":5419,"src":"112463:93:0","stateMutability":"view","virtual":false,"visibility":"public"},{"body":{"id":5293,"nodeType":"Block","src":"112787:38:0","statements":[{"expression":{"baseExpression":{"id":5289,"name":"_pendingAdmins","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5224,"src":"112800:14:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_address_$","typeString":"mapping(uint256 => address)"}},"id":5291,"indexExpression":{"id":5290,"name":"role","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5284,"src":"112815:4:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"112800:20:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"functionReturnParameters":5288,"id":5292,"nodeType":"Return","src":"112793:27:0"}]},"documentation":{"id":5282,"nodeType":"StructuredDocumentation","src":"112560:155:0","text":" @dev returns the pending admin associated with the specific role\n @param role the role associated with the pending admin being returned*"},"functionSelector":"4575e69b","id":5294,"implemented":true,"kind":"function","modifiers":[],"name":"getPendingAdmin","nameLocation":"112727:15:0","nodeType":"FunctionDefinition","parameters":{"id":5285,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5284,"mutability":"mutable","name":"role","nameLocation":"112751:4:0","nodeType":"VariableDeclaration","scope":5294,"src":"112743:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5283,"name":"uint256","nodeType":"ElementaryTypeName","src":"112743:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"112742:14:0"},"returnParameters":{"id":5288,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5287,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5294,"src":"112778:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5286,"name":"address","nodeType":"ElementaryTypeName","src":"112778:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"112777:9:0"},"scope":5419,"src":"112718:107:0","stateMutability":"view","virtual":false,"visibility":"public"},{"body":{"id":5316,"nodeType":"Block","src":"113135:102:0","statements":[{"expression":{"id":5309,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":5305,"name":"_pendingAdmins","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5224,"src":"113141:14:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_address_$","typeString":"mapping(uint256 => address)"}},"id":5307,"indexExpression":{"id":5306,"name":"role","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5297,"src":"113156:4:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"113141:20:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":5308,"name":"newPendingAdmin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5299,"src":"113164:15:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"113141:38:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":5310,"nodeType":"ExpressionStatement","src":"113141:38:0"},{"eventCall":{"arguments":[{"id":5312,"name":"newPendingAdmin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5299,"src":"113210:15:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5313,"name":"role","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5297,"src":"113227:4:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5311,"name":"PendingAdminChanged","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5230,"src":"113190:19:0","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":5314,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"113190:42:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5315,"nodeType":"EmitStatement","src":"113185:47:0"}]},"documentation":{"id":5295,"nodeType":"StructuredDocumentation","src":"112829:202:0","text":" @dev sets the pending admin for a specific role\n @param role the role associated with the new pending admin being set\n @param newPendingAdmin the address of the new pending admin*"},"functionSelector":"ab406fe6","id":5317,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"id":5302,"name":"role","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5297,"src":"113127:4:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":5303,"kind":"modifierInvocation","modifierName":{"id":5301,"name":"onlyRoleAdmin","nameLocations":["113113:13:0"],"nodeType":"IdentifierPath","referencedDeclaration":5252,"src":"113113:13:0"},"nodeType":"ModifierInvocation","src":"113113:19:0"}],"name":"setPendingAdmin","nameLocation":"113043:15:0","nodeType":"FunctionDefinition","parameters":{"id":5300,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5297,"mutability":"mutable","name":"role","nameLocation":"113067:4:0","nodeType":"VariableDeclaration","scope":5317,"src":"113059:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5296,"name":"uint256","nodeType":"ElementaryTypeName","src":"113059:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":5299,"mutability":"mutable","name":"newPendingAdmin","nameLocation":"113081:15:0","nodeType":"VariableDeclaration","scope":5317,"src":"113073:23:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5298,"name":"address","nodeType":"ElementaryTypeName","src":"113073:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"113058:39:0"},"returnParameters":{"id":5304,"nodeType":"ParameterList","parameters":[],"src":"113135:0:0"},"scope":5419,"src":"113034:203:0","stateMutability":"nonpayable","virtual":false,"visibility":"public"},{"body":{"id":5348,"nodeType":"Block","src":"113462:116:0","statements":[{"expression":{"id":5331,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":5326,"name":"_admins","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5220,"src":"113468:7:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_address_$","typeString":"mapping(uint256 => address)"}},"id":5328,"indexExpression":{"id":5327,"name":"role","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5320,"src":"113476:4:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"113468:13:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"expression":{"id":5329,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"113484:3:0","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":5330,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"113488:6:0","memberName":"sender","nodeType":"MemberAccess","src":"113484:10:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"113468:26:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":5332,"nodeType":"ExpressionStatement","src":"113468:26:0"},{"expression":{"id":5340,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":5333,"name":"_pendingAdmins","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5224,"src":"113500:14:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_address_$","typeString":"mapping(uint256 => address)"}},"id":5335,"indexExpression":{"id":5334,"name":"role","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5320,"src":"113515:4:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"113500:20:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"hexValue":"30","id":5338,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"113531:1:0","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":5337,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"113523:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":5336,"name":"address","nodeType":"ElementaryTypeName","src":"113523:7:0","typeDescriptions":{}}},"id":5339,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"113523:10:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"113500:33:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":5341,"nodeType":"ExpressionStatement","src":"113500:33:0"},{"eventCall":{"arguments":[{"expression":{"id":5343,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"113556:3:0","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":5344,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"113560:6:0","memberName":"sender","nodeType":"MemberAccess","src":"113556:10:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5345,"name":"role","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5320,"src":"113568:4:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5342,"name":"RoleClaimed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5236,"src":"113544:11:0","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":5346,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"113544:29:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5347,"nodeType":"EmitStatement","src":"113539:34:0"}]},"documentation":{"id":5318,"nodeType":"StructuredDocumentation","src":"113241:144:0","text":" @dev allows the caller to become a specific role admin\n @param role the role associated with the admin claiming the new role*"},"functionSelector":"fde9eb69","id":5349,"implemented":true,"kind":"function","modifiers":[{"arguments":[{"id":5323,"name":"role","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5320,"src":"113456:4:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":5324,"kind":"modifierInvocation","modifierName":{"id":5322,"name":"onlyPendingRoleAdmin","nameLocations":["113435:20:0"],"nodeType":"IdentifierPath","referencedDeclaration":5268,"src":"113435:20:0"},"nodeType":"ModifierInvocation","src":"113435:26:0"}],"name":"claimRoleAdmin","nameLocation":"113397:14:0","nodeType":"FunctionDefinition","parameters":{"id":5321,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5320,"mutability":"mutable","name":"role","nameLocation":"113420:4:0","nodeType":"VariableDeclaration","scope":5349,"src":"113412:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5319,"name":"uint256","nodeType":"ElementaryTypeName","src":"113412:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"113411:14:0"},"returnParameters":{"id":5325,"nodeType":"ParameterList","parameters":[],"src":"113462:0:0"},"scope":5419,"src":"113388:190:0","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":5417,"nodeType":"Block","src":"113643:347:0","statements":[{"body":{"id":5415,"nodeType":"Block","src":"113697:289:0","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_bool","typeString":"bool"},"id":5388,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":5378,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"baseExpression":{"id":5368,"name":"_admins","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5220,"src":"113722:7:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_address_$","typeString":"mapping(uint256 => address)"}},"id":5373,"indexExpression":{"expression":{"baseExpression":{"id":5369,"name":"initAdmins","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5353,"src":"113730:10:0","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_InitAdmin_$5216_memory_ptr_$dyn_memory_ptr","typeString":"struct RoleManager.InitAdmin memory[] memory"}},"id":5371,"indexExpression":{"id":5370,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5357,"src":"113741:1:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"113730:13:0","typeDescriptions":{"typeIdentifier":"t_struct$_InitAdmin_$5216_memory_ptr","typeString":"struct RoleManager.InitAdmin memory"}},"id":5372,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"113744:4:0","memberName":"role","nodeType":"MemberAccess","referencedDeclaration":5213,"src":"113730:18:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"113722:27:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":5376,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"113761:1:0","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":5375,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"113753:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":5374,"name":"address","nodeType":"ElementaryTypeName","src":"113753:7:0","typeDescriptions":{}}},"id":5377,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"113753:10:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"113722:41:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"BinaryOperation","operator":"&&","rightExpression":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":5387,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"baseExpression":{"id":5379,"name":"initAdmins","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5353,"src":"113777:10:0","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_InitAdmin_$5216_memory_ptr_$dyn_memory_ptr","typeString":"struct RoleManager.InitAdmin memory[] memory"}},"id":5381,"indexExpression":{"id":5380,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5357,"src":"113788:1:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"113777:13:0","typeDescriptions":{"typeIdentifier":"t_struct$_InitAdmin_$5216_memory_ptr","typeString":"struct RoleManager.InitAdmin memory"}},"id":5382,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"113791:5:0","memberName":"admin","nodeType":"MemberAccess","referencedDeclaration":5215,"src":"113777:19:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":5385,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"113808:1:0","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":5384,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"113800:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":5383,"name":"address","nodeType":"ElementaryTypeName","src":"113800:7:0","typeDescriptions":{}}},"id":5386,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"113800:10:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"113777:33:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"src":"113722:88:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"41444d494e5f43414e4e4f545f42455f494e495449414c495a4544","id":5389,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"113820:29:0","typeDescriptions":{"typeIdentifier":"t_stringliteral_b2af192d647f8b8a9f94a546a11b40d3536722e4b74d77e3330eb171e0c93079","typeString":"literal_string \"ADMIN_CANNOT_BE_INITIALIZED\""},"value":"ADMIN_CANNOT_BE_INITIALIZED"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_b2af192d647f8b8a9f94a546a11b40d3536722e4b74d77e3330eb171e0c93079","typeString":"literal_string \"ADMIN_CANNOT_BE_INITIALIZED\""}],"id":5367,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"113705:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":5390,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"113705:152:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5391,"nodeType":"ExpressionStatement","src":"113705:152:0"},{"expression":{"id":5402,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":5392,"name":"_admins","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5220,"src":"113865:7:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_address_$","typeString":"mapping(uint256 => address)"}},"id":5397,"indexExpression":{"expression":{"baseExpression":{"id":5393,"name":"initAdmins","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5353,"src":"113873:10:0","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_InitAdmin_$5216_memory_ptr_$dyn_memory_ptr","typeString":"struct RoleManager.InitAdmin memory[] memory"}},"id":5395,"indexExpression":{"id":5394,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5357,"src":"113884:1:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"113873:13:0","typeDescriptions":{"typeIdentifier":"t_struct$_InitAdmin_$5216_memory_ptr","typeString":"struct RoleManager.InitAdmin memory"}},"id":5396,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"113887:4:0","memberName":"role","nodeType":"MemberAccess","referencedDeclaration":5213,"src":"113873:18:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"113865:27:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"expression":{"baseExpression":{"id":5398,"name":"initAdmins","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5353,"src":"113895:10:0","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_InitAdmin_$5216_memory_ptr_$dyn_memory_ptr","typeString":"struct RoleManager.InitAdmin memory[] memory"}},"id":5400,"indexExpression":{"id":5399,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5357,"src":"113906:1:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"113895:13:0","typeDescriptions":{"typeIdentifier":"t_struct$_InitAdmin_$5216_memory_ptr","typeString":"struct RoleManager.InitAdmin memory"}},"id":5401,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"113909:5:0","memberName":"admin","nodeType":"MemberAccess","referencedDeclaration":5215,"src":"113895:19:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"113865:49:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":5403,"nodeType":"ExpressionStatement","src":"113865:49:0"},{"eventCall":{"arguments":[{"expression":{"baseExpression":{"id":5405,"name":"initAdmins","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5353,"src":"113939:10:0","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_InitAdmin_$5216_memory_ptr_$dyn_memory_ptr","typeString":"struct RoleManager.InitAdmin memory[] memory"}},"id":5407,"indexExpression":{"id":5406,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5357,"src":"113950:1:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"113939:13:0","typeDescriptions":{"typeIdentifier":"t_struct$_InitAdmin_$5216_memory_ptr","typeString":"struct RoleManager.InitAdmin memory"}},"id":5408,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"113953:5:0","memberName":"admin","nodeType":"MemberAccess","referencedDeclaration":5215,"src":"113939:19:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"baseExpression":{"id":5409,"name":"initAdmins","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5353,"src":"113960:10:0","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_InitAdmin_$5216_memory_ptr_$dyn_memory_ptr","typeString":"struct RoleManager.InitAdmin memory[] memory"}},"id":5411,"indexExpression":{"id":5410,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5357,"src":"113971:1:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"113960:13:0","typeDescriptions":{"typeIdentifier":"t_struct$_InitAdmin_$5216_memory_ptr","typeString":"struct RoleManager.InitAdmin memory"}},"id":5412,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"113974:4:0","memberName":"role","nodeType":"MemberAccess","referencedDeclaration":5213,"src":"113960:18:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5404,"name":"RoleClaimed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5236,"src":"113927:11:0","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":5413,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"113927:52:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5414,"nodeType":"EmitStatement","src":"113922:57:0"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5363,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5360,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5357,"src":"113669:1:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":5361,"name":"initAdmins","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5353,"src":"113673:10:0","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_InitAdmin_$5216_memory_ptr_$dyn_memory_ptr","typeString":"struct RoleManager.InitAdmin memory[] memory"}},"id":5362,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"113684:6:0","memberName":"length","nodeType":"MemberAccess","src":"113673:17:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"113669:21:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5416,"initializationExpression":{"assignments":[5357],"declarations":[{"constant":false,"id":5357,"mutability":"mutable","name":"i","nameLocation":"113662:1:0","nodeType":"VariableDeclaration","scope":5416,"src":"113654:9:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5356,"name":"uint256","nodeType":"ElementaryTypeName","src":"113654:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":5359,"initialValue":{"hexValue":"30","id":5358,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"113666:1:0","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"113654:13:0"},"isSimpleCounterLoop":true,"loopExpression":{"expression":{"id":5365,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"113692:3:0","subExpression":{"id":5364,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5357,"src":"113692:1:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5366,"nodeType":"ExpressionStatement","src":"113692:3:0"},"nodeType":"ForStatement","src":"113649:337:0"}]},"id":5418,"implemented":true,"kind":"function","modifiers":[],"name":"_initAdmins","nameLocation":"113591:11:0","nodeType":"FunctionDefinition","parameters":{"id":5354,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5353,"mutability":"mutable","name":"initAdmins","nameLocation":"113622:10:0","nodeType":"VariableDeclaration","scope":5418,"src":"113603:29:0","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_InitAdmin_$5216_memory_ptr_$dyn_memory_ptr","typeString":"struct RoleManager.InitAdmin[]"},"typeName":{"baseType":{"id":5351,"nodeType":"UserDefinedTypeName","pathNode":{"id":5350,"name":"InitAdmin","nameLocations":["113603:9:0"],"nodeType":"IdentifierPath","referencedDeclaration":5216,"src":"113603:9:0"},"referencedDeclaration":5216,"src":"113603:9:0","typeDescriptions":{"typeIdentifier":"t_struct$_InitAdmin_$5216_storage_ptr","typeString":"struct RoleManager.InitAdmin"}},"id":5352,"nodeType":"ArrayTypeName","src":"113603:11:0","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_InitAdmin_$5216_storage_$dyn_storage_ptr","typeString":"struct RoleManager.InitAdmin[]"}},"visibility":"internal"}],"src":"113602:31:0"},"returnParameters":{"id":5355,"nodeType":"ParameterList","parameters":[],"src":"113643:0:0"},"scope":5419,"src":"113582:408:0","stateMutability":"nonpayable","virtual":false,"visibility":"internal"}],"scope":7298,"src":"111713:2279:0","usedErrors":[],"usedEvents":[5230,5236]},{"id":5420,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"114087:23:0"},{"abstract":false,"baseContracts":[{"baseName":{"id":5422,"name":"StakedTokenV2","nameLocations":["114330:13:0"],"nodeType":"IdentifierPath","referencedDeclaration":5209,"src":"114330:13:0"},"id":5423,"nodeType":"InheritanceSpecifier","src":"114330:13:0"},{"baseName":{"id":5424,"name":"IStakedTokenV3","nameLocations":["114347:14:0"],"nodeType":"IdentifierPath","referencedDeclaration":417,"src":"114347:14:0"},"id":5425,"nodeType":"InheritanceSpecifier","src":"114347:14:0"},{"baseName":{"id":5426,"name":"RoleManager","nameLocations":["114365:11:0"],"nodeType":"IdentifierPath","referencedDeclaration":5419,"src":"114365:11:0"},"id":5427,"nodeType":"InheritanceSpecifier","src":"114365:11:0"},{"baseName":{"id":5428,"name":"IPegasysDistributionManager","nameLocations":["114380:27:0"],"nodeType":"IdentifierPath","referencedDeclaration":146,"src":"114380:27:0"},"id":5429,"nodeType":"InheritanceSpecifier","src":"114380:27:0"}],"canonicalName":"StakedTokenV3","contractDependencies":[],"contractKind":"contract","documentation":{"id":5421,"nodeType":"StructuredDocumentation","src":"114122:179:0","text":" @title StakedTokenV3\n @notice Contract to stake Aave token, tokenize the position and get rewards, inheriting from a distribution manager contract\n @author BGD Labs"},"fullyImplemented":true,"id":6760,"linearizedBaseContracts":[6760,146,5419,417,5209,2972,4642,1906,1874,1167,1084,100,77,511,243],"name":"StakedTokenV3","nameLocation":"114311:13:0","nodeType":"ContractDefinition","nodes":[{"global":false,"id":5433,"libraryName":{"id":5430,"name":"SafeERC20","nameLocations":["114418:9:0"],"nodeType":"IdentifierPath","referencedDeclaration":2456,"src":"114418:9:0"},"nodeType":"UsingForDirective","src":"114412:27:0","typeName":{"id":5432,"nodeType":"UserDefinedTypeName","pathNode":{"id":5431,"name":"IERC20","nameLocations":["114432:6:0"],"nodeType":"IdentifierPath","referencedDeclaration":77,"src":"114432:6:0"},"referencedDeclaration":77,"src":"114432:6:0","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$77","typeString":"contract IERC20"}}},{"global":false,"id":5436,"libraryName":{"id":5434,"name":"PercentageMath","nameLocations":["114448:14:0"],"nodeType":"IdentifierPath","referencedDeclaration":4604,"src":"114448:14:0"},"nodeType":"UsingForDirective","src":"114442:33:0","typeName":{"id":5435,"name":"uint256","nodeType":"ElementaryTypeName","src":"114467:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}},{"global":false,"id":5439,"libraryName":{"id":5437,"name":"SafeCast","nameLocations":["114484:8:0"],"nodeType":"IdentifierPath","referencedDeclaration":4512,"src":"114484:8:0"},"nodeType":"UsingForDirective","src":"114478:27:0","typeName":{"id":5438,"name":"uint256","nodeType":"ElementaryTypeName","src":"114497:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}},{"constant":true,"functionSelector":"8c9a281d","id":5442,"mutability":"constant","name":"SLASH_ADMIN_ROLE","nameLocation":"114533:16:0","nodeType":"VariableDeclaration","scope":6760,"src":"114509:44:0","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5440,"name":"uint256","nodeType":"ElementaryTypeName","src":"114509:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"30","id":5441,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"114552:1:0","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"visibility":"public"},{"constant":true,"functionSelector":"9e3ffce0","id":5445,"mutability":"constant","name":"COOLDOWN_ADMIN_ROLE","nameLocation":"114581:19:0","nodeType":"VariableDeclaration","scope":6760,"src":"114557:47:0","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5443,"name":"uint256","nodeType":"ElementaryTypeName","src":"114557:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"31","id":5444,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"114603:1:0","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"visibility":"public"},{"constant":true,"functionSelector":"dbc0ed8a","id":5448,"mutability":"constant","name":"CLAIM_HELPER_ROLE","nameLocation":"114632:17:0","nodeType":"VariableDeclaration","scope":6760,"src":"114608:45:0","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5446,"name":"uint256","nodeType":"ElementaryTypeName","src":"114608:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"32","id":5447,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"114652:1:0","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"visibility":"public"},{"constant":true,"functionSelector":"58146d17","id":5451,"mutability":"constant","name":"INITIAL_EXCHANGE_RATE","nameLocation":"114681:21:0","nodeType":"VariableDeclaration","scope":6760,"src":"114657:52:0","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint216","typeString":"uint216"},"typeName":{"id":5449,"name":"uint216","nodeType":"ElementaryTypeName","src":"114657:7:0","typeDescriptions":{"typeIdentifier":"t_uint216","typeString":"uint216"}},"value":{"hexValue":"31653138","id":5450,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"114705:4:0","typeDescriptions":{"typeIdentifier":"t_rational_1000000000000000000_by_1","typeString":"int_const 1000000000000000000"},"value":"1e18"},"visibility":"public"},{"constant":true,"functionSelector":"8e9b2ca4","id":5454,"mutability":"constant","name":"EXCHANGE_RATE_UNIT","nameLocation":"114737:18:0","nodeType":"VariableDeclaration","scope":6760,"src":"114713:49:0","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5452,"name":"uint256","nodeType":"ElementaryTypeName","src":"114713:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"value":{"hexValue":"31653138","id":5453,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"114758:4:0","typeDescriptions":{"typeIdentifier":"t_rational_1000000000000000000_by_1","typeString":"int_const 1000000000000000000"},"value":"1e18"},"visibility":"public"},{"constant":false,"documentation":{"id":5455,"nodeType":"StructuredDocumentation","src":"114767:67:0","text":"@notice lower bound to prevent spam & avoid exchangeRate issues"},"functionSelector":"6198e135","id":5457,"mutability":"immutable","name":"LOWER_BOUND","nameLocation":"115007:11:0","nodeType":"VariableDeclaration","scope":6760,"src":"114982:36:0","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5456,"name":"uint256","nodeType":"ElementaryTypeName","src":"114982:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"public"},{"constant":false,"id":5461,"mutability":"mutable","name":"______gap","nameLocation":"115113:9:0","nodeType":"VariableDeclaration","scope":6760,"src":"115094:28:0","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$8_storage","typeString":"uint256[8]"},"typeName":{"baseType":{"id":5458,"name":"uint256","nodeType":"ElementaryTypeName","src":"115094:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5460,"length":{"hexValue":"38","id":5459,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"115102:1:0","typeDescriptions":{"typeIdentifier":"t_rational_8_by_1","typeString":"int_const 8"},"value":"8"},"nodeType":"ArrayTypeName","src":"115094:10:0","typeDescriptions":{"typeIdentifier":"t_array$_t_uint256_$8_storage_ptr","typeString":"uint256[8]"}},"visibility":"private"},{"constant":false,"documentation":{"id":5462,"nodeType":"StructuredDocumentation","src":"115126:72:0","text":"@notice Seconds between starting cooldown and being able to withdraw"},"id":5464,"mutability":"mutable","name":"_cooldownSeconds","nameLocation":"115218:16:0","nodeType":"VariableDeclaration","scope":6760,"src":"115201:33:0","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5463,"name":"uint256","nodeType":"ElementaryTypeName","src":"115201:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"documentation":{"id":5465,"nodeType":"StructuredDocumentation","src":"115238:77:0","text":"@notice The maximum amount of funds that can be slashed at any given time"},"id":5467,"mutability":"mutable","name":"_maxSlashablePercentage","nameLocation":"115335:23:0","nodeType":"VariableDeclaration","scope":6760,"src":"115318:40:0","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5466,"name":"uint256","nodeType":"ElementaryTypeName","src":"115318:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"documentation":{"id":5468,"nodeType":"StructuredDocumentation","src":"115362:62:0","text":"@notice Mirror of latest snapshot value for cheaper access"},"id":5470,"mutability":"mutable","name":"_currentExchangeRate","nameLocation":"115444:20:0","nodeType":"VariableDeclaration","scope":6760,"src":"115427:37:0","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint216","typeString":"uint216"},"typeName":{"id":5469,"name":"uint216","nodeType":"ElementaryTypeName","src":"115427:7:0","typeDescriptions":{"typeIdentifier":"t_uint216","typeString":"uint216"}},"visibility":"internal"},{"constant":false,"documentation":{"id":5471,"nodeType":"StructuredDocumentation","src":"115468:90:0","text":"@notice Flag determining if there's an ongoing slashing event that needs to be settled"},"functionSelector":"f036bc68","id":5473,"mutability":"mutable","name":"inPostSlashingPeriod","nameLocation":"115573:20:0","nodeType":"VariableDeclaration","scope":6760,"src":"115561:32:0","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"typeName":{"id":5472,"name":"bool","nodeType":"ElementaryTypeName","src":"115561:4:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"visibility":"public"},{"body":{"id":5486,"nodeType":"Block","src":"115627:114:0","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":5481,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":5476,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"115648:3:0","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":5477,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"115652:6:0","memberName":"sender","nodeType":"MemberAccess","src":"115648:10:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"id":5479,"name":"SLASH_ADMIN_ROLE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5442,"src":"115671:16:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5478,"name":"getAdmin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5281,"src":"115662:8:0","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_address_$","typeString":"function (uint256) view returns (address)"}},"id":5480,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"115662:26:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"115648:40:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"43414c4c45525f4e4f545f534c415348494e475f41444d494e","id":5482,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"115696:27:0","typeDescriptions":{"typeIdentifier":"t_stringliteral_6fb33ededa50927431023a1ca5722fb9abe7b87aeeb47e46d1f13b646b0719ba","typeString":"literal_string \"CALLER_NOT_SLASHING_ADMIN\""},"value":"CALLER_NOT_SLASHING_ADMIN"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_6fb33ededa50927431023a1ca5722fb9abe7b87aeeb47e46d1f13b646b0719ba","typeString":"literal_string \"CALLER_NOT_SLASHING_ADMIN\""}],"id":5475,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"115633:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":5483,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"115633:96:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5484,"nodeType":"ExpressionStatement","src":"115633:96:0"},{"id":5485,"nodeType":"PlaceholderStatement","src":"115735:1:0"}]},"id":5487,"name":"onlySlashingAdmin","nameLocation":"115607:17:0","nodeType":"ModifierDefinition","parameters":{"id":5474,"nodeType":"ParameterList","parameters":[],"src":"115624:2:0"},"src":"115598:143:0","virtual":false,"visibility":"internal"},{"body":{"id":5500,"nodeType":"Block","src":"115774:117:0","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":5495,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":5490,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"115795:3:0","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":5491,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"115799:6:0","memberName":"sender","nodeType":"MemberAccess","src":"115795:10:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"id":5493,"name":"COOLDOWN_ADMIN_ROLE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5445,"src":"115818:19:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5492,"name":"getAdmin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5281,"src":"115809:8:0","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_address_$","typeString":"function (uint256) view returns (address)"}},"id":5494,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"115809:29:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"115795:43:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"43414c4c45525f4e4f545f434f4f4c444f574e5f41444d494e","id":5496,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"115846:27:0","typeDescriptions":{"typeIdentifier":"t_stringliteral_d49ebb848086492947fc93c9ef60d839aa895187a88d01c0575e0469055263d2","typeString":"literal_string \"CALLER_NOT_COOLDOWN_ADMIN\""},"value":"CALLER_NOT_COOLDOWN_ADMIN"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_d49ebb848086492947fc93c9ef60d839aa895187a88d01c0575e0469055263d2","typeString":"literal_string \"CALLER_NOT_COOLDOWN_ADMIN\""}],"id":5489,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"115780:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":5497,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"115780:99:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5498,"nodeType":"ExpressionStatement","src":"115780:99:0"},{"id":5499,"nodeType":"PlaceholderStatement","src":"115885:1:0"}]},"id":5501,"name":"onlyCooldownAdmin","nameLocation":"115754:17:0","nodeType":"ModifierDefinition","parameters":{"id":5488,"nodeType":"ParameterList","parameters":[],"src":"115771:2:0"},"src":"115745:146:0","virtual":false,"visibility":"internal"},{"body":{"id":5514,"nodeType":"Block","src":"115922:113:0","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":5509,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":5504,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"115943:3:0","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":5505,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"115947:6:0","memberName":"sender","nodeType":"MemberAccess","src":"115943:10:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"id":5507,"name":"CLAIM_HELPER_ROLE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5448,"src":"115966:17:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5506,"name":"getAdmin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5281,"src":"115957:8:0","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_address_$","typeString":"function (uint256) view returns (address)"}},"id":5508,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"115957:27:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"115943:41:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"43414c4c45525f4e4f545f434c41494d5f48454c504552","id":5510,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"115992:25:0","typeDescriptions":{"typeIdentifier":"t_stringliteral_2783cc94d2815145fca23f61c101ffc8ff8c6a01d5b51321a6791062a0684adf","typeString":"literal_string \"CALLER_NOT_CLAIM_HELPER\""},"value":"CALLER_NOT_CLAIM_HELPER"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_2783cc94d2815145fca23f61c101ffc8ff8c6a01d5b51321a6791062a0684adf","typeString":"literal_string \"CALLER_NOT_CLAIM_HELPER\""}],"id":5503,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"115928:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":5511,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"115928:95:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5512,"nodeType":"ExpressionStatement","src":"115928:95:0"},{"id":5513,"nodeType":"PlaceholderStatement","src":"116029:1:0"}]},"id":5515,"name":"onlyClaimHelper","nameLocation":"115904:15:0","nodeType":"ModifierDefinition","parameters":{"id":5502,"nodeType":"ParameterList","parameters":[],"src":"115919:2:0"},"src":"115895:140:0","virtual":false,"visibility":"internal"},{"body":{"id":5562,"nodeType":"Block","src":"116375:175:0","statements":[{"expression":{"id":5543,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":5540,"name":"lastInitializedRevision","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4610,"src":"116405:23:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[],"expression":{"argumentTypes":[],"id":5541,"name":"REVISION","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5572,"src":"116431:8:0","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_uint256_$","typeString":"function () pure returns (uint256)"}},"id":5542,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"116431:10:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"116405:36:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5544,"nodeType":"ExpressionStatement","src":"116405:36:0"},{"assignments":[5546],"declarations":[{"constant":false,"id":5546,"mutability":"mutable","name":"decimals","nameLocation":"116455:8:0","nodeType":"VariableDeclaration","scope":5562,"src":"116447:16:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5545,"name":"uint256","nodeType":"ElementaryTypeName","src":"116447:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":5555,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"arguments":[{"arguments":[{"id":5550,"name":"stakedToken","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5518,"src":"116489:11:0","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$77","typeString":"contract IERC20"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC20_$77","typeString":"contract IERC20"}],"id":5549,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"116481:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":5548,"name":"address","nodeType":"ElementaryTypeName","src":"116481:7:0","typeDescriptions":{}}},"id":5551,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"116481:20:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":5547,"name":"IERC20Metadata","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":100,"src":"116466:14:0","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC20Metadata_$100_$","typeString":"type(contract IERC20Metadata)"}},"id":5552,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"116466:36:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC20Metadata_$100","typeString":"contract IERC20Metadata"}},"id":5553,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"116503:8:0","memberName":"decimals","nodeType":"MemberAccess","referencedDeclaration":99,"src":"116466:45:0","typeDescriptions":{"typeIdentifier":"t_function_external_view$__$returns$_t_uint8_$","typeString":"function () view external returns (uint8)"}},"id":5554,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"116466:47:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"nodeType":"VariableDeclarationStatement","src":"116447:66:0"},{"expression":{"id":5560,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":5556,"name":"LOWER_BOUND","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5457,"src":"116519:11:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5559,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"hexValue":"3130","id":5557,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"116533:2:0","typeDescriptions":{"typeIdentifier":"t_rational_10_by_1","typeString":"int_const 10"},"value":"10"},"nodeType":"BinaryOperation","operator":"**","rightExpression":{"id":5558,"name":"decimals","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5546,"src":"116537:8:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"116533:12:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"116519:26:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5561,"nodeType":"ExpressionStatement","src":"116519:26:0"}]},"id":5563,"implemented":true,"kind":"constructor","modifiers":[{"arguments":[{"id":5532,"name":"stakedToken","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5518,"src":"116244:11:0","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$77","typeString":"contract IERC20"}},{"id":5533,"name":"rewardToken","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5521,"src":"116263:11:0","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$77","typeString":"contract IERC20"}},{"id":5534,"name":"unstakeWindow","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5523,"src":"116282:13:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":5535,"name":"rewardsVault","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5525,"src":"116303:12:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5536,"name":"emissionManager","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5527,"src":"116323:15:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5537,"name":"distributionDuration","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5529,"src":"116346:20:0","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}}],"id":5538,"kind":"baseConstructorSpecifier","modifierName":{"id":5531,"name":"StakedTokenV2","nameLocations":["116223:13:0"],"nodeType":"IdentifierPath","referencedDeclaration":5209,"src":"116223:13:0"},"nodeType":"ModifierInvocation","src":"116223:149:0"}],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":5530,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5518,"mutability":"mutable","name":"stakedToken","nameLocation":"116063:11:0","nodeType":"VariableDeclaration","scope":5563,"src":"116056:18:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$77","typeString":"contract IERC20"},"typeName":{"id":5517,"nodeType":"UserDefinedTypeName","pathNode":{"id":5516,"name":"IERC20","nameLocations":["116056:6:0"],"nodeType":"IdentifierPath","referencedDeclaration":77,"src":"116056:6:0"},"referencedDeclaration":77,"src":"116056:6:0","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$77","typeString":"contract IERC20"}},"visibility":"internal"},{"constant":false,"id":5521,"mutability":"mutable","name":"rewardToken","nameLocation":"116087:11:0","nodeType":"VariableDeclaration","scope":5563,"src":"116080:18:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$77","typeString":"contract IERC20"},"typeName":{"id":5520,"nodeType":"UserDefinedTypeName","pathNode":{"id":5519,"name":"IERC20","nameLocations":["116080:6:0"],"nodeType":"IdentifierPath","referencedDeclaration":77,"src":"116080:6:0"},"referencedDeclaration":77,"src":"116080:6:0","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$77","typeString":"contract IERC20"}},"visibility":"internal"},{"constant":false,"id":5523,"mutability":"mutable","name":"unstakeWindow","nameLocation":"116112:13:0","nodeType":"VariableDeclaration","scope":5563,"src":"116104:21:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5522,"name":"uint256","nodeType":"ElementaryTypeName","src":"116104:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":5525,"mutability":"mutable","name":"rewardsVault","nameLocation":"116139:12:0","nodeType":"VariableDeclaration","scope":5563,"src":"116131:20:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5524,"name":"address","nodeType":"ElementaryTypeName","src":"116131:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5527,"mutability":"mutable","name":"emissionManager","nameLocation":"116165:15:0","nodeType":"VariableDeclaration","scope":5563,"src":"116157:23:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5526,"name":"address","nodeType":"ElementaryTypeName","src":"116157:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5529,"mutability":"mutable","name":"distributionDuration","nameLocation":"116194:20:0","nodeType":"VariableDeclaration","scope":5563,"src":"116186:28:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"},"typeName":{"id":5528,"name":"uint128","nodeType":"ElementaryTypeName","src":"116186:7:0","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"visibility":"internal"}],"src":"116050:168:0"},"returnParameters":{"id":5539,"nodeType":"ParameterList","parameters":[],"src":"116375:0:0"},"scope":6760,"src":"116039:511:0","stateMutability":"nonpayable","virtual":false,"visibility":"public"},{"body":{"id":5571,"nodeType":"Block","src":"116712:19:0","statements":[{"expression":{"hexValue":"33","id":5569,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"116725:1:0","typeDescriptions":{"typeIdentifier":"t_rational_3_by_1","typeString":"int_const 3"},"value":"3"},"functionReturnParameters":5568,"id":5570,"nodeType":"Return","src":"116718:8:0"}]},"documentation":{"id":5564,"nodeType":"StructuredDocumentation","src":"116554:97:0","text":" @dev returns the revision of the implementation contract\n @return The revision"},"functionSelector":"dde43cba","id":5572,"implemented":true,"kind":"function","modifiers":[],"name":"REVISION","nameLocation":"116663:8:0","nodeType":"FunctionDefinition","parameters":{"id":5565,"nodeType":"ParameterList","parameters":[],"src":"116671:2:0"},"returnParameters":{"id":5568,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5567,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5572,"src":"116703:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5566,"name":"uint256","nodeType":"ElementaryTypeName","src":"116703:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"116702:9:0"},"scope":6760,"src":"116654:77:0","stateMutability":"pure","virtual":true,"visibility":"public"},{"baseFunctions":[4637],"body":{"id":5582,"nodeType":"Block","src":"116907:28:0","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"id":5579,"name":"REVISION","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5572,"src":"116920:8:0","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_uint256_$","typeString":"function () pure returns (uint256)"}},"id":5580,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"116920:10:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":5578,"id":5581,"nodeType":"Return","src":"116913:17:0"}]},"documentation":{"id":5573,"nodeType":"StructuredDocumentation","src":"116735:97:0","text":" @dev returns the revision of the implementation contract\n @return The revision"},"id":5583,"implemented":true,"kind":"function","modifiers":[],"name":"getRevision","nameLocation":"116844:11:0","nodeType":"FunctionDefinition","overrides":{"id":5575,"nodeType":"OverrideSpecifier","overrides":[],"src":"116880:8:0"},"parameters":{"id":5574,"nodeType":"ParameterList","parameters":[],"src":"116855:2:0"},"returnParameters":{"id":5578,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5577,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5583,"src":"116898:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5576,"name":"uint256","nodeType":"ElementaryTypeName","src":"116898:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"116897:9:0"},"scope":6760,"src":"116835:100:0","stateMutability":"pure","virtual":true,"visibility":"internal"},{"body":{"id":5607,"nodeType":"Block","src":"117192:147:0","statements":[{"expression":{"arguments":[{"id":5600,"name":"slashingAdmin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5586,"src":"117217:13:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5601,"name":"cooldownPauseAdmin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5588,"src":"117238:18:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5602,"name":"claimHelper","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5590,"src":"117264:11:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5603,"name":"maxSlashablePercentage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5592,"src":"117283:22:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":5604,"name":"cooldownSeconds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5594,"src":"117313:15:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5599,"name":"_initialize","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5677,"src":"117198:11:0","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_address_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (address,address,address,uint256,uint256)"}},"id":5605,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"117198:136:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5606,"nodeType":"ExpressionStatement","src":"117198:136:0"}]},"documentation":{"id":5584,"nodeType":"StructuredDocumentation","src":"116939:48:0","text":" @dev Called by the proxy contract"},"functionSelector":"a6b63eb8","id":5608,"implemented":true,"kind":"function","modifiers":[{"id":5597,"kind":"modifierInvocation","modifierName":{"id":5596,"name":"initializer","nameLocations":["117180:11:0"],"nodeType":"IdentifierPath","referencedDeclaration":4631,"src":"117180:11:0"},"nodeType":"ModifierInvocation","src":"117180:11:0"}],"name":"initialize","nameLocation":"116999:10:0","nodeType":"FunctionDefinition","parameters":{"id":5595,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5586,"mutability":"mutable","name":"slashingAdmin","nameLocation":"117023:13:0","nodeType":"VariableDeclaration","scope":5608,"src":"117015:21:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5585,"name":"address","nodeType":"ElementaryTypeName","src":"117015:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5588,"mutability":"mutable","name":"cooldownPauseAdmin","nameLocation":"117050:18:0","nodeType":"VariableDeclaration","scope":5608,"src":"117042:26:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5587,"name":"address","nodeType":"ElementaryTypeName","src":"117042:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5590,"mutability":"mutable","name":"claimHelper","nameLocation":"117082:11:0","nodeType":"VariableDeclaration","scope":5608,"src":"117074:19:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5589,"name":"address","nodeType":"ElementaryTypeName","src":"117074:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5592,"mutability":"mutable","name":"maxSlashablePercentage","nameLocation":"117107:22:0","nodeType":"VariableDeclaration","scope":5608,"src":"117099:30:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5591,"name":"uint256","nodeType":"ElementaryTypeName","src":"117099:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":5594,"mutability":"mutable","name":"cooldownSeconds","nameLocation":"117143:15:0","nodeType":"VariableDeclaration","scope":5608,"src":"117135:23:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5593,"name":"uint256","nodeType":"ElementaryTypeName","src":"117135:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"117009:153:0"},"returnParameters":{"id":5598,"nodeType":"ParameterList","parameters":[],"src":"117192:0:0"},"scope":6760,"src":"116990:349:0","stateMutability":"nonpayable","virtual":true,"visibility":"external"},{"body":{"id":5676,"nodeType":"Block","src":"117526:437:0","statements":[{"assignments":[5625],"declarations":[{"constant":false,"id":5625,"mutability":"mutable","name":"initAdmins","nameLocation":"117551:10:0","nodeType":"VariableDeclaration","scope":5676,"src":"117532:29:0","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_InitAdmin_$5216_memory_ptr_$dyn_memory_ptr","typeString":"struct RoleManager.InitAdmin[]"},"typeName":{"baseType":{"id":5623,"nodeType":"UserDefinedTypeName","pathNode":{"id":5622,"name":"InitAdmin","nameLocations":["117532:9:0"],"nodeType":"IdentifierPath","referencedDeclaration":5216,"src":"117532:9:0"},"referencedDeclaration":5216,"src":"117532:9:0","typeDescriptions":{"typeIdentifier":"t_struct$_InitAdmin_$5216_storage_ptr","typeString":"struct RoleManager.InitAdmin"}},"id":5624,"nodeType":"ArrayTypeName","src":"117532:11:0","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_InitAdmin_$5216_storage_$dyn_storage_ptr","typeString":"struct RoleManager.InitAdmin[]"}},"visibility":"internal"}],"id":5632,"initialValue":{"arguments":[{"hexValue":"33","id":5630,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"117580:1:0","typeDescriptions":{"typeIdentifier":"t_rational_3_by_1","typeString":"int_const 3"},"value":"3"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_rational_3_by_1","typeString":"int_const 3"}],"id":5629,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"NewExpression","src":"117564:15:0","typeDescriptions":{"typeIdentifier":"t_function_objectcreation_pure$_t_uint256_$returns$_t_array$_t_struct$_InitAdmin_$5216_memory_ptr_$dyn_memory_ptr_$","typeString":"function (uint256) pure returns (struct RoleManager.InitAdmin memory[] memory)"},"typeName":{"baseType":{"id":5627,"nodeType":"UserDefinedTypeName","pathNode":{"id":5626,"name":"InitAdmin","nameLocations":["117568:9:0"],"nodeType":"IdentifierPath","referencedDeclaration":5216,"src":"117568:9:0"},"referencedDeclaration":5216,"src":"117568:9:0","typeDescriptions":{"typeIdentifier":"t_struct$_InitAdmin_$5216_storage_ptr","typeString":"struct RoleManager.InitAdmin"}},"id":5628,"nodeType":"ArrayTypeName","src":"117568:11:0","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_InitAdmin_$5216_storage_$dyn_storage_ptr","typeString":"struct RoleManager.InitAdmin[]"}}},"id":5631,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"117564:18:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_InitAdmin_$5216_memory_ptr_$dyn_memory_ptr","typeString":"struct RoleManager.InitAdmin memory[] memory"}},"nodeType":"VariableDeclarationStatement","src":"117532:50:0"},{"expression":{"id":5640,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":5633,"name":"initAdmins","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5625,"src":"117588:10:0","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_InitAdmin_$5216_memory_ptr_$dyn_memory_ptr","typeString":"struct RoleManager.InitAdmin memory[] memory"}},"id":5635,"indexExpression":{"hexValue":"30","id":5634,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"117599:1:0","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"117588:13:0","typeDescriptions":{"typeIdentifier":"t_struct$_InitAdmin_$5216_memory_ptr","typeString":"struct RoleManager.InitAdmin memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":5637,"name":"SLASH_ADMIN_ROLE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5442,"src":"117614:16:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":5638,"name":"slashingAdmin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5610,"src":"117632:13:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"}],"id":5636,"name":"InitAdmin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5216,"src":"117604:9:0","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_InitAdmin_$5216_storage_ptr_$","typeString":"type(struct RoleManager.InitAdmin storage pointer)"}},"id":5639,"isConstant":false,"isLValue":false,"isPure":false,"kind":"structConstructorCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"117604:42:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_InitAdmin_$5216_memory_ptr","typeString":"struct RoleManager.InitAdmin memory"}},"src":"117588:58:0","typeDescriptions":{"typeIdentifier":"t_struct$_InitAdmin_$5216_memory_ptr","typeString":"struct RoleManager.InitAdmin memory"}},"id":5641,"nodeType":"ExpressionStatement","src":"117588:58:0"},{"expression":{"id":5649,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":5642,"name":"initAdmins","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5625,"src":"117652:10:0","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_InitAdmin_$5216_memory_ptr_$dyn_memory_ptr","typeString":"struct RoleManager.InitAdmin memory[] memory"}},"id":5644,"indexExpression":{"hexValue":"31","id":5643,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"117663:1:0","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"117652:13:0","typeDescriptions":{"typeIdentifier":"t_struct$_InitAdmin_$5216_memory_ptr","typeString":"struct RoleManager.InitAdmin memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":5646,"name":"COOLDOWN_ADMIN_ROLE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5445,"src":"117678:19:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":5647,"name":"cooldownPauseAdmin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5612,"src":"117699:18:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"}],"id":5645,"name":"InitAdmin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5216,"src":"117668:9:0","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_InitAdmin_$5216_storage_ptr_$","typeString":"type(struct RoleManager.InitAdmin storage pointer)"}},"id":5648,"isConstant":false,"isLValue":false,"isPure":false,"kind":"structConstructorCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"117668:50:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_InitAdmin_$5216_memory_ptr","typeString":"struct RoleManager.InitAdmin memory"}},"src":"117652:66:0","typeDescriptions":{"typeIdentifier":"t_struct$_InitAdmin_$5216_memory_ptr","typeString":"struct RoleManager.InitAdmin memory"}},"id":5650,"nodeType":"ExpressionStatement","src":"117652:66:0"},{"expression":{"id":5658,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":5651,"name":"initAdmins","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5625,"src":"117724:10:0","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_InitAdmin_$5216_memory_ptr_$dyn_memory_ptr","typeString":"struct RoleManager.InitAdmin memory[] memory"}},"id":5653,"indexExpression":{"hexValue":"32","id":5652,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"117735:1:0","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"117724:13:0","typeDescriptions":{"typeIdentifier":"t_struct$_InitAdmin_$5216_memory_ptr","typeString":"struct RoleManager.InitAdmin memory"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"id":5655,"name":"CLAIM_HELPER_ROLE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5448,"src":"117750:17:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":5656,"name":"claimHelper","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5614,"src":"117769:11:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_address","typeString":"address"}],"id":5654,"name":"InitAdmin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5216,"src":"117740:9:0","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_InitAdmin_$5216_storage_ptr_$","typeString":"type(struct RoleManager.InitAdmin storage pointer)"}},"id":5657,"isConstant":false,"isLValue":false,"isPure":false,"kind":"structConstructorCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"117740:41:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_InitAdmin_$5216_memory_ptr","typeString":"struct RoleManager.InitAdmin memory"}},"src":"117724:57:0","typeDescriptions":{"typeIdentifier":"t_struct$_InitAdmin_$5216_memory_ptr","typeString":"struct RoleManager.InitAdmin memory"}},"id":5659,"nodeType":"ExpressionStatement","src":"117724:57:0"},{"expression":{"arguments":[{"id":5661,"name":"initAdmins","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5625,"src":"117800:10:0","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_InitAdmin_$5216_memory_ptr_$dyn_memory_ptr","typeString":"struct RoleManager.InitAdmin memory[] memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_struct$_InitAdmin_$5216_memory_ptr_$dyn_memory_ptr","typeString":"struct RoleManager.InitAdmin memory[] memory"}],"id":5660,"name":"_initAdmins","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5418,"src":"117788:11:0","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_array$_t_struct$_InitAdmin_$5216_memory_ptr_$dyn_memory_ptr_$returns$__$","typeString":"function (struct RoleManager.InitAdmin memory[] memory)"}},"id":5662,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"117788:23:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5663,"nodeType":"ExpressionStatement","src":"117788:23:0"},{"expression":{"arguments":[{"id":5665,"name":"maxSlashablePercentage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5616,"src":"117845:22:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5664,"name":"_setMaxSlashablePercentage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6224,"src":"117818:26:0","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint256_$returns$__$","typeString":"function (uint256)"}},"id":5666,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"117818:50:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5667,"nodeType":"ExpressionStatement","src":"117818:50:0"},{"expression":{"arguments":[{"id":5669,"name":"cooldownSeconds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5618,"src":"117894:15:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5668,"name":"_setCooldownSeconds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6239,"src":"117874:19:0","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint256_$returns$__$","typeString":"function (uint256)"}},"id":5670,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"117874:36:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5671,"nodeType":"ExpressionStatement","src":"117874:36:0"},{"expression":{"arguments":[{"id":5673,"name":"INITIAL_EXCHANGE_RATE","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5451,"src":"117936:21:0","typeDescriptions":{"typeIdentifier":"t_uint216","typeString":"uint216"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint216","typeString":"uint216"}],"id":5672,"name":"_updateExchangeRate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6642,"src":"117916:19:0","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint216_$returns$__$","typeString":"function (uint216)"}},"id":5674,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"117916:42:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5675,"nodeType":"ExpressionStatement","src":"117916:42:0"}]},"id":5677,"implemented":true,"kind":"function","modifiers":[],"name":"_initialize","nameLocation":"117352:11:0","nodeType":"FunctionDefinition","parameters":{"id":5619,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5610,"mutability":"mutable","name":"slashingAdmin","nameLocation":"117377:13:0","nodeType":"VariableDeclaration","scope":5677,"src":"117369:21:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5609,"name":"address","nodeType":"ElementaryTypeName","src":"117369:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5612,"mutability":"mutable","name":"cooldownPauseAdmin","nameLocation":"117404:18:0","nodeType":"VariableDeclaration","scope":5677,"src":"117396:26:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5611,"name":"address","nodeType":"ElementaryTypeName","src":"117396:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5614,"mutability":"mutable","name":"claimHelper","nameLocation":"117436:11:0","nodeType":"VariableDeclaration","scope":5677,"src":"117428:19:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5613,"name":"address","nodeType":"ElementaryTypeName","src":"117428:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5616,"mutability":"mutable","name":"maxSlashablePercentage","nameLocation":"117461:22:0","nodeType":"VariableDeclaration","scope":5677,"src":"117453:30:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5615,"name":"uint256","nodeType":"ElementaryTypeName","src":"117453:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":5618,"mutability":"mutable","name":"cooldownSeconds","nameLocation":"117497:15:0","nodeType":"VariableDeclaration","scope":5677,"src":"117489:23:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5617,"name":"uint256","nodeType":"ElementaryTypeName","src":"117489:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"117363:153:0"},"returnParameters":{"id":5620,"nodeType":"ParameterList","parameters":[],"src":"117526:0:0"},"scope":6760,"src":"117343:620:0","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"baseFunctions":[145],"body":{"id":5719,"nodeType":"Block","src":"118127:241:0","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":5690,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":5687,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"118141:3:0","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":5688,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"118145:6:0","memberName":"sender","nodeType":"MemberAccess","src":"118141:10:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":5689,"name":"EMISSION_MANAGER","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2473,"src":"118155:16:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"118141:30:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"4f4e4c595f454d495353494f4e5f4d414e41474552","id":5691,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"118173:23:0","typeDescriptions":{"typeIdentifier":"t_stringliteral_a28d34ff463a8cc689c6ec4b8c995983f85d0a40987242bc4cc3cec37303c18e","typeString":"literal_string \"ONLY_EMISSION_MANAGER\""},"value":"ONLY_EMISSION_MANAGER"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_a28d34ff463a8cc689c6ec4b8c995983f85d0a40987242bc4cc3cec37303c18e","typeString":"literal_string \"ONLY_EMISSION_MANAGER\""}],"id":5686,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"118133:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":5692,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"118133:64:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5693,"nodeType":"ExpressionStatement","src":"118133:64:0"},{"body":{"id":5713,"nodeType":"Block","src":"118259:63:0","statements":[{"expression":{"id":5711,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"baseExpression":{"id":5705,"name":"assetsConfigInput","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5682,"src":"118267:17:0","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_AssetConfigInput_$129_memory_ptr_$dyn_memory_ptr","typeString":"struct DistributionTypes.AssetConfigInput memory[] memory"}},"id":5707,"indexExpression":{"id":5706,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5695,"src":"118285:1:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"118267:20:0","typeDescriptions":{"typeIdentifier":"t_struct$_AssetConfigInput_$129_memory_ptr","typeString":"struct DistributionTypes.AssetConfigInput memory"}},"id":5708,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"118288:11:0","memberName":"totalStaked","nodeType":"MemberAccess","referencedDeclaration":126,"src":"118267:32:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[],"expression":{"argumentTypes":[],"id":5709,"name":"totalSupply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":582,"src":"118302:11:0","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":5710,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"118302:13:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"118267:48:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5712,"nodeType":"ExpressionStatement","src":"118267:48:0"}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5701,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5698,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5695,"src":"118224:1:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":5699,"name":"assetsConfigInput","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5682,"src":"118228:17:0","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_AssetConfigInput_$129_memory_ptr_$dyn_memory_ptr","typeString":"struct DistributionTypes.AssetConfigInput memory[] memory"}},"id":5700,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"118246:6:0","memberName":"length","nodeType":"MemberAccess","src":"118228:24:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"118224:28:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":5714,"initializationExpression":{"assignments":[5695],"declarations":[{"constant":false,"id":5695,"mutability":"mutable","name":"i","nameLocation":"118217:1:0","nodeType":"VariableDeclaration","scope":5714,"src":"118209:9:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5694,"name":"uint256","nodeType":"ElementaryTypeName","src":"118209:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":5697,"initialValue":{"hexValue":"30","id":5696,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"118221:1:0","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"118209:13:0"},"isSimpleCounterLoop":true,"loopExpression":{"expression":{"id":5703,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":false,"src":"118254:3:0","subExpression":{"id":5702,"name":"i","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5695,"src":"118254:1:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5704,"nodeType":"ExpressionStatement","src":"118254:3:0"},"nodeType":"ForStatement","src":"118204:118:0"},{"expression":{"arguments":[{"id":5716,"name":"assetsConfigInput","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5682,"src":"118345:17:0","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_AssetConfigInput_$129_memory_ptr_$dyn_memory_ptr","typeString":"struct DistributionTypes.AssetConfigInput memory[] memory"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_array$_t_struct$_AssetConfigInput_$129_memory_ptr_$dyn_memory_ptr","typeString":"struct DistributionTypes.AssetConfigInput memory[] memory"}],"id":5715,"name":"_configureAssets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2584,"src":"118328:16:0","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_array$_t_struct$_AssetConfigInput_$129_memory_ptr_$dyn_memory_ptr_$returns$__$","typeString":"function (struct DistributionTypes.AssetConfigInput memory[] memory)"}},"id":5717,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"118328:35:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5718,"nodeType":"ExpressionStatement","src":"118328:35:0"}]},"documentation":{"id":5678,"nodeType":"StructuredDocumentation","src":"117967:43:0","text":"@inheritdoc IPegasysDistributionManager"},"functionSelector":"b2a5dbfa","id":5720,"implemented":true,"kind":"function","modifiers":[],"name":"configureAssets","nameLocation":"118022:15:0","nodeType":"FunctionDefinition","overrides":{"id":5684,"nodeType":"OverrideSpecifier","overrides":[],"src":"118118:8:0"},"parameters":{"id":5683,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5682,"mutability":"mutable","name":"assetsConfigInput","nameLocation":"118087:17:0","nodeType":"VariableDeclaration","scope":5720,"src":"118043:61:0","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_AssetConfigInput_$129_memory_ptr_$dyn_memory_ptr","typeString":"struct DistributionTypes.AssetConfigInput[]"},"typeName":{"baseType":{"id":5680,"nodeType":"UserDefinedTypeName","pathNode":{"id":5679,"name":"DistributionTypes.AssetConfigInput","nameLocations":["118043:17:0","118061:16:0"],"nodeType":"IdentifierPath","referencedDeclaration":129,"src":"118043:34:0"},"referencedDeclaration":129,"src":"118043:34:0","typeDescriptions":{"typeIdentifier":"t_struct$_AssetConfigInput_$129_storage_ptr","typeString":"struct DistributionTypes.AssetConfigInput"}},"id":5681,"nodeType":"ArrayTypeName","src":"118043:36:0","typeDescriptions":{"typeIdentifier":"t_array$_t_struct$_AssetConfigInput_$129_storage_$dyn_storage_ptr","typeString":"struct DistributionTypes.AssetConfigInput[]"}},"visibility":"internal"}],"src":"118037:71:0"},"returnParameters":{"id":5685,"nodeType":"ParameterList","parameters":[],"src":"118127:0:0"},"scope":6760,"src":"118013:355:0","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"baseFunctions":[358],"body":{"id":5735,"nodeType":"Block","src":"118473:70:0","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5733,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5730,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5728,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5723,"src":"118487:6:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":5729,"name":"_currentExchangeRate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5470,"src":"118496:20:0","typeDescriptions":{"typeIdentifier":"t_uint216","typeString":"uint216"}},"src":"118487:29:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":5731,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"118486:31:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":5732,"name":"EXCHANGE_RATE_UNIT","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5454,"src":"118520:18:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"118486:52:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":5727,"id":5734,"nodeType":"Return","src":"118479:59:0"}]},"documentation":{"id":5721,"nodeType":"StructuredDocumentation","src":"118372:30:0","text":"@inheritdoc IStakedTokenV3"},"functionSelector":"727a5d57","id":5736,"implemented":true,"kind":"function","modifiers":[],"name":"previewStake","nameLocation":"118414:12:0","nodeType":"FunctionDefinition","parameters":{"id":5724,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5723,"mutability":"mutable","name":"assets","nameLocation":"118435:6:0","nodeType":"VariableDeclaration","scope":5736,"src":"118427:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5722,"name":"uint256","nodeType":"ElementaryTypeName","src":"118427:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"118426:16:0"},"returnParameters":{"id":5727,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5726,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5736,"src":"118464:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5725,"name":"uint256","nodeType":"ElementaryTypeName","src":"118464:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"118463:9:0"},"scope":6760,"src":"118405:138:0","stateMutability":"view","virtual":false,"visibility":"public"},{"baseFunctions":[196,4769],"body":{"id":5754,"nodeType":"Block","src":"118682:41:0","statements":[{"expression":{"arguments":[{"expression":{"id":5748,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"118695:3:0","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":5749,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"118699:6:0","memberName":"sender","nodeType":"MemberAccess","src":"118695:10:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5750,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5739,"src":"118707:2:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5751,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5741,"src":"118711:6:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5747,"name":"_stake","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6467,"src":"118688:6:0","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":5752,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"118688:30:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5753,"nodeType":"ExpressionStatement","src":"118688:30:0"}]},"documentation":{"id":5737,"nodeType":"StructuredDocumentation","src":"118547:30:0","text":"@inheritdoc IStakedTokenV2"},"functionSelector":"adc9772e","id":5755,"implemented":true,"kind":"function","modifiers":[],"name":"stake","nameLocation":"118589:5:0","nodeType":"FunctionDefinition","overrides":{"id":5745,"nodeType":"OverrideSpecifier","overrides":[{"id":5743,"name":"IStakedTokenV2","nameLocations":["118649:14:0"],"nodeType":"IdentifierPath","referencedDeclaration":243,"src":"118649:14:0"},{"id":5744,"name":"StakedTokenV2","nameLocations":["118665:13:0"],"nodeType":"IdentifierPath","referencedDeclaration":5209,"src":"118665:13:0"}],"src":"118640:39:0"},"parameters":{"id":5742,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5739,"mutability":"mutable","name":"to","nameLocation":"118603:2:0","nodeType":"VariableDeclaration","scope":5755,"src":"118595:10:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5738,"name":"address","nodeType":"ElementaryTypeName","src":"118595:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5741,"mutability":"mutable","name":"amount","nameLocation":"118615:6:0","nodeType":"VariableDeclaration","scope":5755,"src":"118607:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5740,"name":"uint256","nodeType":"ElementaryTypeName","src":"118607:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"118594:28:0"},"returnParameters":{"id":5746,"nodeType":"ParameterList","parameters":[],"src":"118682:0:0"},"scope":6760,"src":"118580:143:0","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"baseFunctions":[208,4783],"body":{"id":5767,"nodeType":"Block","src":"118829:32:0","statements":[{"expression":{"arguments":[{"expression":{"id":5763,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"118845:3:0","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":5764,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"118849:6:0","memberName":"sender","nodeType":"MemberAccess","src":"118845:10:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":5762,"name":"_cooldown","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5822,"src":"118835:9:0","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$returns$__$","typeString":"function (address)"}},"id":5765,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"118835:21:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5766,"nodeType":"ExpressionStatement","src":"118835:21:0"}]},"documentation":{"id":5756,"nodeType":"StructuredDocumentation","src":"118727:30:0","text":"@inheritdoc IStakedTokenV2"},"functionSelector":"787a08a6","id":5768,"implemented":true,"kind":"function","modifiers":[],"name":"cooldown","nameLocation":"118769:8:0","nodeType":"FunctionDefinition","overrides":{"id":5760,"nodeType":"OverrideSpecifier","overrides":[{"id":5758,"name":"IStakedTokenV2","nameLocations":["118798:14:0"],"nodeType":"IdentifierPath","referencedDeclaration":243,"src":"118798:14:0"},{"id":5759,"name":"StakedTokenV2","nameLocations":["118814:13:0"],"nodeType":"IdentifierPath","referencedDeclaration":5209,"src":"118814:13:0"}],"src":"118789:39:0"},"parameters":{"id":5757,"nodeType":"ParameterList","parameters":[],"src":"118777:2:0"},"returnParameters":{"id":5761,"nodeType":"ParameterList","parameters":[],"src":"118829:0:0"},"scope":6760,"src":"118760:101:0","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"baseFunctions":[364],"body":{"id":5781,"nodeType":"Block","src":"118974:26:0","statements":[{"expression":{"arguments":[{"id":5778,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5771,"src":"118990:4:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":5777,"name":"_cooldown","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5822,"src":"118980:9:0","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$returns$__$","typeString":"function (address)"}},"id":5779,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"118980:15:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5780,"nodeType":"ExpressionStatement","src":"118980:15:0"}]},"documentation":{"id":5769,"nodeType":"StructuredDocumentation","src":"118865:30:0","text":"@inheritdoc IStakedTokenV3"},"functionSelector":"250201db","id":5782,"implemented":true,"kind":"function","modifiers":[{"id":5775,"kind":"modifierInvocation","modifierName":{"id":5774,"name":"onlyClaimHelper","nameLocations":["118958:15:0"],"nodeType":"IdentifierPath","referencedDeclaration":5515,"src":"118958:15:0"},"nodeType":"ModifierInvocation","src":"118958:15:0"}],"name":"cooldownOnBehalfOf","nameLocation":"118907:18:0","nodeType":"FunctionDefinition","overrides":{"id":5773,"nodeType":"OverrideSpecifier","overrides":[],"src":"118949:8:0"},"parameters":{"id":5772,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5771,"mutability":"mutable","name":"from","nameLocation":"118934:4:0","nodeType":"VariableDeclaration","scope":5782,"src":"118926:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5770,"name":"address","nodeType":"ElementaryTypeName","src":"118926:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"118925:14:0"},"returnParameters":{"id":5776,"nodeType":"ParameterList","parameters":[],"src":"118974:0:0"},"scope":6760,"src":"118898:102:0","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"body":{"id":5821,"nodeType":"Block","src":"119046:262:0","statements":[{"assignments":[5788],"declarations":[{"constant":false,"id":5788,"mutability":"mutable","name":"amount","nameLocation":"119060:6:0","nodeType":"VariableDeclaration","scope":5821,"src":"119052:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5787,"name":"uint256","nodeType":"ElementaryTypeName","src":"119052:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":5792,"initialValue":{"arguments":[{"id":5790,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5784,"src":"119079:4:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":5789,"name":"balanceOf","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":596,"src":"119069:9:0","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view returns (uint256)"}},"id":5791,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"119069:15:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"119052:32:0"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5796,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5794,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5788,"src":"119098:6:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":5795,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"119108:1:0","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"119098:11:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"494e56414c49445f42414c414e43455f4f4e5f434f4f4c444f574e","id":5797,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"119111:29:0","typeDescriptions":{"typeIdentifier":"t_stringliteral_e5f9ee9777b2bbd505a43328a4cc6b61e9df46610a556d5402b9bc072df973d7","typeString":"literal_string \"INVALID_BALANCE_ON_COOLDOWN\""},"value":"INVALID_BALANCE_ON_COOLDOWN"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_e5f9ee9777b2bbd505a43328a4cc6b61e9df46610a556d5402b9bc072df973d7","typeString":"literal_string \"INVALID_BALANCE_ON_COOLDOWN\""}],"id":5793,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"119090:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":5798,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"119090:51:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5799,"nodeType":"ExpressionStatement","src":"119090:51:0"},{"expression":{"id":5814,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":5800,"name":"stakersCooldowns","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4677,"src":"119147:16:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_CooldownSnapshot_$168_storage_$","typeString":"mapping(address => struct IStakedTokenV2.CooldownSnapshot storage ref)"}},"id":5802,"indexExpression":{"id":5801,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5784,"src":"119164:4:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"119147:22:0","typeDescriptions":{"typeIdentifier":"t_struct$_CooldownSnapshot_$168_storage","typeString":"struct IStakedTokenV2.CooldownSnapshot storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"arguments":[{"expression":{"id":5806,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"119215:5:0","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":5807,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"119221:9:0","memberName":"timestamp","nodeType":"MemberAccess","src":"119215:15:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5805,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"119208:6:0","typeDescriptions":{"typeIdentifier":"t_type$_t_uint40_$","typeString":"type(uint40)"},"typeName":{"id":5804,"name":"uint40","nodeType":"ElementaryTypeName","src":"119208:6:0","typeDescriptions":{}}},"id":5808,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"119208:23:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},{"arguments":[{"id":5811,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5788,"src":"119255:6:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5810,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"119247:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_uint216_$","typeString":"type(uint216)"},"typeName":{"id":5809,"name":"uint216","nodeType":"ElementaryTypeName","src":"119247:7:0","typeDescriptions":{}}},"id":5812,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"119247:15:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint216","typeString":"uint216"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint40","typeString":"uint40"},{"typeIdentifier":"t_uint216","typeString":"uint216"}],"id":5803,"name":"CooldownSnapshot","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":168,"src":"119172:16:0","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_CooldownSnapshot_$168_storage_ptr_$","typeString":"type(struct IStakedTokenV2.CooldownSnapshot storage pointer)"}},"id":5813,"isConstant":false,"isLValue":false,"isPure":false,"kind":"structConstructorCall","lValueRequested":false,"nameLocations":["119197:9:0","119239:6:0"],"names":["timestamp","amount"],"nodeType":"FunctionCall","src":"119172:97:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_CooldownSnapshot_$168_memory_ptr","typeString":"struct IStakedTokenV2.CooldownSnapshot memory"}},"src":"119147:122:0","typeDescriptions":{"typeIdentifier":"t_struct$_CooldownSnapshot_$168_storage","typeString":"struct IStakedTokenV2.CooldownSnapshot storage ref"}},"id":5815,"nodeType":"ExpressionStatement","src":"119147:122:0"},{"eventCall":{"arguments":[{"id":5817,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5784,"src":"119290:4:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5818,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5788,"src":"119296:6:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5816,"name":"Cooldown","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":188,"src":"119281:8:0","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":5819,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"119281:22:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5820,"nodeType":"EmitStatement","src":"119276:27:0"}]},"id":5822,"implemented":true,"kind":"function","modifiers":[],"name":"_cooldown","nameLocation":"119013:9:0","nodeType":"FunctionDefinition","parameters":{"id":5785,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5784,"mutability":"mutable","name":"from","nameLocation":"119031:4:0","nodeType":"VariableDeclaration","scope":5822,"src":"119023:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5783,"name":"address","nodeType":"ElementaryTypeName","src":"119023:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"src":"119022:14:0"},"returnParameters":{"id":5786,"nodeType":"ParameterList","parameters":[],"src":"119046:0:0"},"scope":6760,"src":"119004:304:0","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"baseFunctions":[204,4778],"body":{"id":5840,"nodeType":"Block","src":"119448:42:0","statements":[{"expression":{"arguments":[{"expression":{"id":5834,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"119462:3:0","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":5835,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"119466:6:0","memberName":"sender","nodeType":"MemberAccess","src":"119462:10:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5836,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5825,"src":"119474:2:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5837,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5827,"src":"119478:6:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5833,"name":"_redeem","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6620,"src":"119454:7:0","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":5838,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"119454:31:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5839,"nodeType":"ExpressionStatement","src":"119454:31:0"}]},"documentation":{"id":5823,"nodeType":"StructuredDocumentation","src":"119312:30:0","text":"@inheritdoc IStakedTokenV2"},"functionSelector":"1e9a6950","id":5841,"implemented":true,"kind":"function","modifiers":[],"name":"redeem","nameLocation":"119354:6:0","nodeType":"FunctionDefinition","overrides":{"id":5831,"nodeType":"OverrideSpecifier","overrides":[{"id":5829,"name":"IStakedTokenV2","nameLocations":["119415:14:0"],"nodeType":"IdentifierPath","referencedDeclaration":243,"src":"119415:14:0"},{"id":5830,"name":"StakedTokenV2","nameLocations":["119431:13:0"],"nodeType":"IdentifierPath","referencedDeclaration":5209,"src":"119431:13:0"}],"src":"119406:39:0"},"parameters":{"id":5828,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5825,"mutability":"mutable","name":"to","nameLocation":"119369:2:0","nodeType":"VariableDeclaration","scope":5841,"src":"119361:10:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5824,"name":"address","nodeType":"ElementaryTypeName","src":"119361:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5827,"mutability":"mutable","name":"amount","nameLocation":"119381:6:0","nodeType":"VariableDeclaration","scope":5841,"src":"119373:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5826,"name":"uint256","nodeType":"ElementaryTypeName","src":"119373:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"119360:28:0"},"returnParameters":{"id":5832,"nodeType":"ParameterList","parameters":[],"src":"119448:0:0"},"scope":6760,"src":"119345:145:0","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"baseFunctions":[394],"body":{"id":5860,"nodeType":"Block","src":"119643:36:0","statements":[{"expression":{"arguments":[{"id":5855,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5844,"src":"119657:4:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5856,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5846,"src":"119663:2:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5857,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5848,"src":"119667:6:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5854,"name":"_redeem","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6620,"src":"119649:7:0","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":5858,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"119649:25:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5859,"nodeType":"ExpressionStatement","src":"119649:25:0"}]},"documentation":{"id":5842,"nodeType":"StructuredDocumentation","src":"119494:30:0","text":"@inheritdoc IStakedTokenV3"},"functionSelector":"112d037c","id":5861,"implemented":true,"kind":"function","modifiers":[{"id":5852,"kind":"modifierInvocation","modifierName":{"id":5851,"name":"onlyClaimHelper","nameLocations":["119627:15:0"],"nodeType":"IdentifierPath","referencedDeclaration":5515,"src":"119627:15:0"},"nodeType":"ModifierInvocation","src":"119627:15:0"}],"name":"redeemOnBehalf","nameLocation":"119536:14:0","nodeType":"FunctionDefinition","overrides":{"id":5850,"nodeType":"OverrideSpecifier","overrides":[],"src":"119618:8:0"},"parameters":{"id":5849,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5844,"mutability":"mutable","name":"from","nameLocation":"119564:4:0","nodeType":"VariableDeclaration","scope":5861,"src":"119556:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5843,"name":"address","nodeType":"ElementaryTypeName","src":"119556:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5846,"mutability":"mutable","name":"to","nameLocation":"119582:2:0","nodeType":"VariableDeclaration","scope":5861,"src":"119574:10:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5845,"name":"address","nodeType":"ElementaryTypeName","src":"119574:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5848,"mutability":"mutable","name":"amount","nameLocation":"119598:6:0","nodeType":"VariableDeclaration","scope":5861,"src":"119590:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5847,"name":"uint256","nodeType":"ElementaryTypeName","src":"119590:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"119550:58:0"},"returnParameters":{"id":5853,"nodeType":"ParameterList","parameters":[],"src":"119643:0:0"},"scope":6760,"src":"119527:152:0","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"baseFunctions":[216,4792],"body":{"id":5879,"nodeType":"Block","src":"119825:48:0","statements":[{"expression":{"arguments":[{"expression":{"id":5873,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"119845:3:0","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":5874,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"119849:6:0","memberName":"sender","nodeType":"MemberAccess","src":"119845:10:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5875,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5864,"src":"119857:2:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5876,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5866,"src":"119861:6:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5872,"name":"_claimRewards","nodeType":"Identifier","overloadedDeclarations":[6310,2781],"referencedDeclaration":6310,"src":"119831:13:0","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$_t_uint256_$","typeString":"function (address,address,uint256) returns (uint256)"}},"id":5877,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"119831:37:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5878,"nodeType":"ExpressionStatement","src":"119831:37:0"}]},"documentation":{"id":5862,"nodeType":"StructuredDocumentation","src":"119683:30:0","text":"@inheritdoc IStakedTokenV2"},"functionSelector":"9a99b4f0","id":5880,"implemented":true,"kind":"function","modifiers":[],"name":"claimRewards","nameLocation":"119725:12:0","nodeType":"FunctionDefinition","overrides":{"id":5870,"nodeType":"OverrideSpecifier","overrides":[{"id":5868,"name":"IStakedTokenV2","nameLocations":["119792:14:0"],"nodeType":"IdentifierPath","referencedDeclaration":243,"src":"119792:14:0"},{"id":5869,"name":"StakedTokenV2","nameLocations":["119808:13:0"],"nodeType":"IdentifierPath","referencedDeclaration":5209,"src":"119808:13:0"}],"src":"119783:39:0"},"parameters":{"id":5867,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5864,"mutability":"mutable","name":"to","nameLocation":"119746:2:0","nodeType":"VariableDeclaration","scope":5880,"src":"119738:10:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5863,"name":"address","nodeType":"ElementaryTypeName","src":"119738:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5866,"mutability":"mutable","name":"amount","nameLocation":"119758:6:0","nodeType":"VariableDeclaration","scope":5880,"src":"119750:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5865,"name":"uint256","nodeType":"ElementaryTypeName","src":"119750:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"119737:28:0"},"returnParameters":{"id":5871,"nodeType":"ParameterList","parameters":[],"src":"119825:0:0"},"scope":6760,"src":"119716:157:0","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"baseFunctions":[376],"body":{"id":5901,"nodeType":"Block","src":"120050:49:0","statements":[{"expression":{"arguments":[{"id":5896,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5883,"src":"120077:4:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5897,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5885,"src":"120083:2:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5898,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5887,"src":"120087:6:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5895,"name":"_claimRewards","nodeType":"Identifier","overloadedDeclarations":[6310,2781],"referencedDeclaration":6310,"src":"120063:13:0","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$_t_uint256_$","typeString":"function (address,address,uint256) returns (uint256)"}},"id":5899,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"120063:31:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":5894,"id":5900,"nodeType":"Return","src":"120056:38:0"}]},"documentation":{"id":5881,"nodeType":"StructuredDocumentation","src":"119877:30:0","text":"@inheritdoc IStakedTokenV3"},"functionSelector":"20fb80b5","id":5902,"implemented":true,"kind":"function","modifiers":[{"id":5891,"kind":"modifierInvocation","modifierName":{"id":5890,"name":"onlyClaimHelper","nameLocations":["120016:15:0"],"nodeType":"IdentifierPath","referencedDeclaration":5515,"src":"120016:15:0"},"nodeType":"ModifierInvocation","src":"120016:15:0"}],"name":"claimRewardsOnBehalf","nameLocation":"119919:20:0","nodeType":"FunctionDefinition","overrides":{"id":5889,"nodeType":"OverrideSpecifier","overrides":[],"src":"120007:8:0"},"parameters":{"id":5888,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5883,"mutability":"mutable","name":"from","nameLocation":"119953:4:0","nodeType":"VariableDeclaration","scope":5902,"src":"119945:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5882,"name":"address","nodeType":"ElementaryTypeName","src":"119945:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5885,"mutability":"mutable","name":"to","nameLocation":"119971:2:0","nodeType":"VariableDeclaration","scope":5902,"src":"119963:10:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5884,"name":"address","nodeType":"ElementaryTypeName","src":"119963:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5887,"mutability":"mutable","name":"amount","nameLocation":"119987:6:0","nodeType":"VariableDeclaration","scope":5902,"src":"119979:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5886,"name":"uint256","nodeType":"ElementaryTypeName","src":"119979:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"119939:58:0"},"returnParameters":{"id":5894,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5893,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5902,"src":"120041:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5892,"name":"uint256","nodeType":"ElementaryTypeName","src":"120041:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"120040:9:0"},"scope":6760,"src":"119910:189:0","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"baseFunctions":[404],"body":{"id":5927,"nodeType":"Block","src":"120256:96:0","statements":[{"expression":{"arguments":[{"expression":{"id":5914,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"120276:3:0","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":5915,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"120280:6:0","memberName":"sender","nodeType":"MemberAccess","src":"120276:10:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5916,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5905,"src":"120288:2:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5917,"name":"claimAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5907,"src":"120292:11:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5913,"name":"_claimRewards","nodeType":"Identifier","overloadedDeclarations":[6310,2781],"referencedDeclaration":6310,"src":"120262:13:0","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$_t_uint256_$","typeString":"function (address,address,uint256) returns (uint256)"}},"id":5918,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"120262:42:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5919,"nodeType":"ExpressionStatement","src":"120262:42:0"},{"expression":{"arguments":[{"expression":{"id":5921,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"120318:3:0","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":5922,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"120322:6:0","memberName":"sender","nodeType":"MemberAccess","src":"120318:10:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5923,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5905,"src":"120330:2:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5924,"name":"redeemAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5909,"src":"120334:12:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5920,"name":"_redeem","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6620,"src":"120310:7:0","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":5925,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"120310:37:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5926,"nodeType":"ExpressionStatement","src":"120310:37:0"}]},"documentation":{"id":5903,"nodeType":"StructuredDocumentation","src":"120103:30:0","text":"@inheritdoc IStakedTokenV3"},"functionSelector":"eab52318","id":5928,"implemented":true,"kind":"function","modifiers":[],"name":"claimRewardsAndRedeem","nameLocation":"120145:21:0","nodeType":"FunctionDefinition","overrides":{"id":5911,"nodeType":"OverrideSpecifier","overrides":[],"src":"120247:8:0"},"parameters":{"id":5910,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5905,"mutability":"mutable","name":"to","nameLocation":"120180:2:0","nodeType":"VariableDeclaration","scope":5928,"src":"120172:10:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5904,"name":"address","nodeType":"ElementaryTypeName","src":"120172:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5907,"mutability":"mutable","name":"claimAmount","nameLocation":"120196:11:0","nodeType":"VariableDeclaration","scope":5928,"src":"120188:19:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5906,"name":"uint256","nodeType":"ElementaryTypeName","src":"120188:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":5909,"mutability":"mutable","name":"redeemAmount","nameLocation":"120221:12:0","nodeType":"VariableDeclaration","scope":5928,"src":"120213:20:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5908,"name":"uint256","nodeType":"ElementaryTypeName","src":"120213:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"120166:71:0"},"returnParameters":{"id":5912,"nodeType":"ParameterList","parameters":[],"src":"120256:0:0"},"scope":6760,"src":"120136:216:0","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"baseFunctions":[416],"body":{"id":5955,"nodeType":"Block","src":"120551:84:0","statements":[{"expression":{"arguments":[{"id":5944,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5931,"src":"120571:4:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5945,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5933,"src":"120577:2:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5946,"name":"claimAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5935,"src":"120581:11:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5943,"name":"_claimRewards","nodeType":"Identifier","overloadedDeclarations":[6310,2781],"referencedDeclaration":6310,"src":"120557:13:0","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$_t_uint256_$","typeString":"function (address,address,uint256) returns (uint256)"}},"id":5947,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"120557:36:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":5948,"nodeType":"ExpressionStatement","src":"120557:36:0"},{"expression":{"arguments":[{"id":5950,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5931,"src":"120607:4:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5951,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5933,"src":"120613:2:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":5952,"name":"redeemAmount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5937,"src":"120617:12:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":5949,"name":"_redeem","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6620,"src":"120599:7:0","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":5953,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"120599:31:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":5954,"nodeType":"ExpressionStatement","src":"120599:31:0"}]},"documentation":{"id":5929,"nodeType":"StructuredDocumentation","src":"120356:30:0","text":"@inheritdoc IStakedTokenV3"},"functionSelector":"9c9b5154","id":5956,"implemented":true,"kind":"function","modifiers":[{"id":5941,"kind":"modifierInvocation","modifierName":{"id":5940,"name":"onlyClaimHelper","nameLocations":["120535:15:0"],"nodeType":"IdentifierPath","referencedDeclaration":5515,"src":"120535:15:0"},"nodeType":"ModifierInvocation","src":"120535:15:0"}],"name":"claimRewardsAndRedeemOnBehalf","nameLocation":"120398:29:0","nodeType":"FunctionDefinition","overrides":{"id":5939,"nodeType":"OverrideSpecifier","overrides":[],"src":"120526:8:0"},"parameters":{"id":5938,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5931,"mutability":"mutable","name":"from","nameLocation":"120441:4:0","nodeType":"VariableDeclaration","scope":5956,"src":"120433:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5930,"name":"address","nodeType":"ElementaryTypeName","src":"120433:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5933,"mutability":"mutable","name":"to","nameLocation":"120459:2:0","nodeType":"VariableDeclaration","scope":5956,"src":"120451:10:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5932,"name":"address","nodeType":"ElementaryTypeName","src":"120451:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5935,"mutability":"mutable","name":"claimAmount","nameLocation":"120475:11:0","nodeType":"VariableDeclaration","scope":5956,"src":"120467:19:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5934,"name":"uint256","nodeType":"ElementaryTypeName","src":"120467:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":5937,"mutability":"mutable","name":"redeemAmount","nameLocation":"120500:12:0","nodeType":"VariableDeclaration","scope":5956,"src":"120492:20:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5936,"name":"uint256","nodeType":"ElementaryTypeName","src":"120492:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"120427:89:0"},"returnParameters":{"id":5942,"nodeType":"ParameterList","parameters":[],"src":"120551:0:0"},"scope":6760,"src":"120389:246:0","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"baseFunctions":[300],"body":{"id":5965,"nodeType":"Block","src":"120738:38:0","statements":[{"expression":{"id":5963,"name":"_currentExchangeRate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5470,"src":"120751:20:0","typeDescriptions":{"typeIdentifier":"t_uint216","typeString":"uint216"}},"functionReturnParameters":5962,"id":5964,"nodeType":"Return","src":"120744:27:0"}]},"documentation":{"id":5957,"nodeType":"StructuredDocumentation","src":"120639:30:0","text":"@inheritdoc IStakedTokenV3"},"functionSelector":"e6aa216c","id":5966,"implemented":true,"kind":"function","modifiers":[],"name":"getExchangeRate","nameLocation":"120681:15:0","nodeType":"FunctionDefinition","overrides":{"id":5959,"nodeType":"OverrideSpecifier","overrides":[],"src":"120711:8:0"},"parameters":{"id":5958,"nodeType":"ParameterList","parameters":[],"src":"120696:2:0"},"returnParameters":{"id":5962,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5961,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5966,"src":"120729:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint216","typeString":"uint216"},"typeName":{"id":5960,"name":"uint216","nodeType":"ElementaryTypeName","src":"120729:7:0","typeDescriptions":{"typeIdentifier":"t_uint216","typeString":"uint216"}},"visibility":"internal"}],"src":"120728:9:0"},"scope":6760,"src":"120672:104:0","stateMutability":"view","virtual":false,"visibility":"public"},{"baseFunctions":[384],"body":{"id":5982,"nodeType":"Block","src":"120909:70:0","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5980,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":5977,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":5975,"name":"EXCHANGE_RATE_UNIT","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5454,"src":"120923:18:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":5976,"name":"shares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5969,"src":"120944:6:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"120923:27:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":5978,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"120922:29:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":5979,"name":"_currentExchangeRate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5470,"src":"120954:20:0","typeDescriptions":{"typeIdentifier":"t_uint216","typeString":"uint216"}},"src":"120922:52:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":5974,"id":5981,"nodeType":"Return","src":"120915:59:0"}]},"documentation":{"id":5967,"nodeType":"StructuredDocumentation","src":"120780:30:0","text":"@inheritdoc IStakedTokenV3"},"functionSelector":"4cdad506","id":5983,"implemented":true,"kind":"function","modifiers":[],"name":"previewRedeem","nameLocation":"120822:13:0","nodeType":"FunctionDefinition","overrides":{"id":5971,"nodeType":"OverrideSpecifier","overrides":[],"src":"120876:8:0"},"parameters":{"id":5970,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5969,"mutability":"mutable","name":"shares","nameLocation":"120844:6:0","nodeType":"VariableDeclaration","scope":5983,"src":"120836:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5968,"name":"uint256","nodeType":"ElementaryTypeName","src":"120836:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"120835:16:0"},"returnParameters":{"id":5974,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5973,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":5983,"src":"120898:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5972,"name":"uint256","nodeType":"ElementaryTypeName","src":"120898:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"120897:9:0"},"scope":6760,"src":"120813:166:0","stateMutability":"view","virtual":false,"visibility":"public"},{"baseFunctions":[310],"body":{"id":6072,"nodeType":"Block","src":"121140:643:0","statements":[{"expression":{"arguments":[{"id":5998,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"121154:21:0","subExpression":{"id":5997,"name":"inPostSlashingPeriod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5473,"src":"121155:20:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"50524556494f55535f534c415348494e475f4e4f545f534554544c4544","id":5999,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"121177:31:0","typeDescriptions":{"typeIdentifier":"t_stringliteral_f77daace20469de8df4d27824d8f88ae642c918133f638a98e78576c5af835a5","typeString":"literal_string \"PREVIOUS_SLASHING_NOT_SETTLED\""},"value":"PREVIOUS_SLASHING_NOT_SETTLED"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_f77daace20469de8df4d27824d8f88ae642c918133f638a98e78576c5af835a5","typeString":"literal_string \"PREVIOUS_SLASHING_NOT_SETTLED\""}],"id":5996,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"121146:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":6000,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"121146:63:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6001,"nodeType":"ExpressionStatement","src":"121146:63:0"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6005,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6003,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5988,"src":"121223:6:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"hexValue":"30","id":6004,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"121232:1:0","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"121223:10:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"5a45524f5f414d4f554e54","id":6006,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"121235:13:0","typeDescriptions":{"typeIdentifier":"t_stringliteral_ad8e292265788ac5c19f708ed96612bf3229f5fbdf9e1b9b3466c3f5a1b60243","typeString":"literal_string \"ZERO_AMOUNT\""},"value":"ZERO_AMOUNT"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_ad8e292265788ac5c19f708ed96612bf3229f5fbdf9e1b9b3466c3f5a1b60243","typeString":"literal_string \"ZERO_AMOUNT\""}],"id":6002,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"121215:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":6007,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"121215:34:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6008,"nodeType":"ExpressionStatement","src":"121215:34:0"},{"assignments":[6010],"declarations":[{"constant":false,"id":6010,"mutability":"mutable","name":"currentShares","nameLocation":"121263:13:0","nodeType":"VariableDeclaration","scope":6072,"src":"121255:21:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6009,"name":"uint256","nodeType":"ElementaryTypeName","src":"121255:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":6013,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":6011,"name":"totalSupply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":582,"src":"121279:11:0","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":6012,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"121279:13:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"121255:37:0"},{"assignments":[6015],"declarations":[{"constant":false,"id":6015,"mutability":"mutable","name":"balance","nameLocation":"121306:7:0","nodeType":"VariableDeclaration","scope":6072,"src":"121298:15:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6014,"name":"uint256","nodeType":"ElementaryTypeName","src":"121298:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":6019,"initialValue":{"arguments":[{"id":6017,"name":"currentShares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6010,"src":"121330:13:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6016,"name":"previewRedeem","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5983,"src":"121316:13:0","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) view returns (uint256)"}},"id":6018,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"121316:28:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"121298:46:0"},{"assignments":[6021],"declarations":[{"constant":false,"id":6021,"mutability":"mutable","name":"maxSlashable","nameLocation":"121359:12:0","nodeType":"VariableDeclaration","scope":6072,"src":"121351:20:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6020,"name":"uint256","nodeType":"ElementaryTypeName","src":"121351:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":6026,"initialValue":{"arguments":[{"id":6024,"name":"_maxSlashablePercentage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5467,"src":"121393:23:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":6022,"name":"balance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6015,"src":"121374:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":6023,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"121382:10:0","memberName":"percentMul","nodeType":"MemberAccess","referencedDeclaration":4565,"src":"121374:18:0","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint256_$attached_to$_t_uint256_$","typeString":"function (uint256,uint256) pure returns (uint256)"}},"id":6025,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"121374:43:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"121351:66:0"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6029,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6027,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5988,"src":"121428:6:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":6028,"name":"maxSlashable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6021,"src":"121437:12:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"121428:21:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6035,"nodeType":"IfStatement","src":"121424:63:0","trueBody":{"id":6034,"nodeType":"Block","src":"121451:36:0","statements":[{"expression":{"id":6032,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":6030,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5988,"src":"121459:6:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":6031,"name":"maxSlashable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6021,"src":"121468:12:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"121459:21:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":6033,"nodeType":"ExpressionStatement","src":"121459:21:0"}]}},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6041,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6039,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6037,"name":"balance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6015,"src":"121500:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":6038,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5988,"src":"121510:6:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"121500:16:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"id":6040,"name":"LOWER_BOUND","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5457,"src":"121520:11:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"121500:31:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"52454d41494e494e475f4c545f4d494e494d554d","id":6042,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"121533:22:0","typeDescriptions":{"typeIdentifier":"t_stringliteral_e42e312e91b2c7decf2c17d44adbe92f5dbd21dd2fe6c255c257f03ae436b4f4","typeString":"literal_string \"REMAINING_LT_MINIMUM\""},"value":"REMAINING_LT_MINIMUM"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_e42e312e91b2c7decf2c17d44adbe92f5dbd21dd2fe6c255c257f03ae436b4f4","typeString":"literal_string \"REMAINING_LT_MINIMUM\""}],"id":6036,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"121492:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":6043,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"121492:64:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6044,"nodeType":"ExpressionStatement","src":"121492:64:0"},{"expression":{"id":6047,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":6045,"name":"inPostSlashingPeriod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5473,"src":"121563:20:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"74727565","id":6046,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"121586:4:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"},"src":"121563:27:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6048,"nodeType":"ExpressionStatement","src":"121563:27:0"},{"expression":{"arguments":[{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6053,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6051,"name":"balance","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6015,"src":"121633:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":6052,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5988,"src":"121643:6:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"121633:16:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":6054,"name":"currentShares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6010,"src":"121651:13:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6050,"name":"_getExchangeRate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6668,"src":"121616:16:0","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint216_$","typeString":"function (uint256,uint256) pure returns (uint216)"}},"id":6055,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"121616:49:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint216","typeString":"uint216"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint216","typeString":"uint216"}],"id":6049,"name":"_updateExchangeRate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6642,"src":"121596:19:0","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint216_$returns$__$","typeString":"function (uint216)"}},"id":6056,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"121596:70:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6057,"nodeType":"ExpressionStatement","src":"121596:70:0"},{"expression":{"arguments":[{"id":6061,"name":"destination","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5986,"src":"121699:11:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6062,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5988,"src":"121712:6:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":6058,"name":"STAKED_TOKEN","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4659,"src":"121673:12:0","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$77","typeString":"contract IERC20"}},"id":6060,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"121686:12:0","memberName":"safeTransfer","nodeType":"MemberAccess","referencedDeclaration":2263,"src":"121673:25:0","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC20_$77_$_t_address_$_t_uint256_$returns$__$attached_to$_t_contract$_IERC20_$77_$","typeString":"function (contract IERC20,address,uint256)"}},"id":6063,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"121673:46:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6064,"nodeType":"ExpressionStatement","src":"121673:46:0"},{"eventCall":{"arguments":[{"id":6066,"name":"destination","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5986,"src":"121739:11:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6067,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5988,"src":"121752:6:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6065,"name":"Slashed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":276,"src":"121731:7:0","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":6068,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"121731:28:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6069,"nodeType":"EmitStatement","src":"121726:33:0"},{"expression":{"id":6070,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5988,"src":"121772:6:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":5995,"id":6071,"nodeType":"Return","src":"121765:13:0"}]},"documentation":{"id":5984,"nodeType":"StructuredDocumentation","src":"120983:30:0","text":"@inheritdoc IStakedTokenV3"},"functionSelector":"02fb4d85","id":6073,"implemented":true,"kind":"function","modifiers":[{"id":5992,"kind":"modifierInvocation","modifierName":{"id":5991,"name":"onlySlashingAdmin","nameLocations":["121098:17:0"],"nodeType":"IdentifierPath","referencedDeclaration":5487,"src":"121098:17:0"},"nodeType":"ModifierInvocation","src":"121098:17:0"}],"name":"slash","nameLocation":"121025:5:0","nodeType":"FunctionDefinition","overrides":{"id":5990,"nodeType":"OverrideSpecifier","overrides":[],"src":"121085:8:0"},"parameters":{"id":5989,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5986,"mutability":"mutable","name":"destination","nameLocation":"121039:11:0","nodeType":"VariableDeclaration","scope":6073,"src":"121031:19:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":5985,"name":"address","nodeType":"ElementaryTypeName","src":"121031:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":5988,"mutability":"mutable","name":"amount","nameLocation":"121060:6:0","nodeType":"VariableDeclaration","scope":6073,"src":"121052:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5987,"name":"uint256","nodeType":"ElementaryTypeName","src":"121052:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"121030:37:0"},"returnParameters":{"id":5995,"nodeType":"ParameterList","parameters":[{"constant":false,"id":5994,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6073,"src":"121129:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":5993,"name":"uint256","nodeType":"ElementaryTypeName","src":"121129:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"121128:9:0"},"scope":6760,"src":"121016:767:0","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"baseFunctions":[320],"body":{"id":6130,"nodeType":"Block","src":"121875:398:0","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6083,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6081,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6076,"src":"121889:6:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"id":6082,"name":"LOWER_BOUND","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5457,"src":"121899:11:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"121889:21:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"414d4f554e545f4c545f4d494e494d554d","id":6084,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"121912:19:0","typeDescriptions":{"typeIdentifier":"t_stringliteral_621f50d6436d0a4dd01bdd0a290cbd90a33871f85d2f75ec24041520fb128387","typeString":"literal_string \"AMOUNT_LT_MINIMUM\""},"value":"AMOUNT_LT_MINIMUM"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_621f50d6436d0a4dd01bdd0a290cbd90a33871f85d2f75ec24041520fb128387","typeString":"literal_string \"AMOUNT_LT_MINIMUM\""}],"id":6080,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"121881:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":6085,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"121881:51:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6086,"nodeType":"ExpressionStatement","src":"121881:51:0"},{"assignments":[6088],"declarations":[{"constant":false,"id":6088,"mutability":"mutable","name":"currentShares","nameLocation":"121946:13:0","nodeType":"VariableDeclaration","scope":6130,"src":"121938:21:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6087,"name":"uint256","nodeType":"ElementaryTypeName","src":"121938:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":6091,"initialValue":{"arguments":[],"expression":{"argumentTypes":[],"id":6089,"name":"totalSupply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":582,"src":"121962:11:0","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":6090,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"121962:13:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"121938:37:0"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6095,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6093,"name":"currentShares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6088,"src":"121989:13:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"id":6094,"name":"LOWER_BOUND","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5457,"src":"122006:11:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"121989:28:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"5348415245535f4c545f4d494e494d554d","id":6096,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"122019:19:0","typeDescriptions":{"typeIdentifier":"t_stringliteral_5407ed0094c102003a23cbee6bcb44020e6bb1be4fa76486e3d76e28e8ab8c65","typeString":"literal_string \"SHARES_LT_MINIMUM\""},"value":"SHARES_LT_MINIMUM"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_5407ed0094c102003a23cbee6bcb44020e6bb1be4fa76486e3d76e28e8ab8c65","typeString":"literal_string \"SHARES_LT_MINIMUM\""}],"id":6092,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"121981:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":6097,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"121981:58:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6098,"nodeType":"ExpressionStatement","src":"121981:58:0"},{"assignments":[6100],"declarations":[{"constant":false,"id":6100,"mutability":"mutable","name":"assets","nameLocation":"122053:6:0","nodeType":"VariableDeclaration","scope":6130,"src":"122045:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6099,"name":"uint256","nodeType":"ElementaryTypeName","src":"122045:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":6104,"initialValue":{"arguments":[{"id":6102,"name":"currentShares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6088,"src":"122076:13:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6101,"name":"previewRedeem","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5983,"src":"122062:13:0","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) view returns (uint256)"}},"id":6103,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"122062:28:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"122045:45:0"},{"expression":{"arguments":[{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6109,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6107,"name":"assets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6100,"src":"122133:6:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":6108,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6076,"src":"122142:6:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"122133:15:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":6110,"name":"currentShares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6088,"src":"122150:13:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6106,"name":"_getExchangeRate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6668,"src":"122116:16:0","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$_t_uint256_$returns$_t_uint216_$","typeString":"function (uint256,uint256) pure returns (uint216)"}},"id":6111,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"122116:48:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint216","typeString":"uint216"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint216","typeString":"uint216"}],"id":6105,"name":"_updateExchangeRate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6642,"src":"122096:19:0","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint216_$returns$__$","typeString":"function (uint216)"}},"id":6112,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"122096:69:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6113,"nodeType":"ExpressionStatement","src":"122096:69:0"},{"expression":{"arguments":[{"expression":{"id":6117,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"122202:3:0","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":6118,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"122206:6:0","memberName":"sender","nodeType":"MemberAccess","src":"122202:10:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":6121,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"122222:4:0","typeDescriptions":{"typeIdentifier":"t_contract$_StakedTokenV3_$6760","typeString":"contract StakedTokenV3"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_StakedTokenV3_$6760","typeString":"contract StakedTokenV3"}],"id":6120,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"122214:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":6119,"name":"address","nodeType":"ElementaryTypeName","src":"122214:7:0","typeDescriptions":{}}},"id":6122,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"122214:13:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6123,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6076,"src":"122229:6:0","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":6114,"name":"STAKED_TOKEN","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4659,"src":"122172:12:0","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$77","typeString":"contract IERC20"}},"id":6116,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"122185:16:0","memberName":"safeTransferFrom","nodeType":"MemberAccess","referencedDeclaration":2289,"src":"122172:29:0","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC20_$77_$_t_address_$_t_address_$_t_uint256_$returns$__$attached_to$_t_contract$_IERC20_$77_$","typeString":"function (contract IERC20,address,address,uint256)"}},"id":6124,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"122172:64:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6125,"nodeType":"ExpressionStatement","src":"122172:64:0"},{"eventCall":{"arguments":[{"id":6127,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6076,"src":"122261:6:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6126,"name":"FundsReturned","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":292,"src":"122247:13:0","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint256_$returns$__$","typeString":"function (uint256)"}},"id":6128,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"122247:21:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6129,"nodeType":"EmitStatement","src":"122242:26:0"}]},"documentation":{"id":6074,"nodeType":"StructuredDocumentation","src":"121787:30:0","text":"@inheritdoc IStakedTokenV3"},"functionSelector":"45755dd6","id":6131,"implemented":true,"kind":"function","modifiers":[],"name":"returnFunds","nameLocation":"121829:11:0","nodeType":"FunctionDefinition","overrides":{"id":6078,"nodeType":"OverrideSpecifier","overrides":[],"src":"121866:8:0"},"parameters":{"id":6077,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6076,"mutability":"mutable","name":"amount","nameLocation":"121849:6:0","nodeType":"VariableDeclaration","scope":6131,"src":"121841:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6075,"name":"uint256","nodeType":"ElementaryTypeName","src":"121841:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"121840:16:0"},"returnParameters":{"id":6079,"nodeType":"ParameterList","parameters":[],"src":"121875:0:0"},"scope":6760,"src":"121820:453:0","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"baseFunctions":[314],"body":{"id":6145,"nodeType":"Block","src":"122372:67:0","statements":[{"expression":{"id":6140,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":6138,"name":"inPostSlashingPeriod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5473,"src":"122378:20:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"hexValue":"66616c7365","id":6139,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"122401:5:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"},"src":"122378:28:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6141,"nodeType":"ExpressionStatement","src":"122378:28:0"},{"eventCall":{"arguments":[],"expression":{"argumentTypes":[],"id":6142,"name":"SlashingSettled","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":294,"src":"122417:15:0","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$__$returns$__$","typeString":"function ()"}},"id":6143,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"122417:17:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6144,"nodeType":"EmitStatement","src":"122412:22:0"}]},"documentation":{"id":6132,"nodeType":"StructuredDocumentation","src":"122277:30:0","text":"@inheritdoc IStakedTokenV3"},"functionSelector":"aff05aa9","id":6146,"implemented":true,"kind":"function","modifiers":[{"id":6136,"kind":"modifierInvocation","modifierName":{"id":6135,"name":"onlySlashingAdmin","nameLocations":["122354:17:0"],"nodeType":"IdentifierPath","referencedDeclaration":5487,"src":"122354:17:0"},"nodeType":"ModifierInvocation","src":"122354:17:0"}],"name":"settleSlashing","nameLocation":"122319:14:0","nodeType":"FunctionDefinition","overrides":{"id":6134,"nodeType":"OverrideSpecifier","overrides":[],"src":"122345:8:0"},"parameters":{"id":6133,"nodeType":"ParameterList","parameters":[],"src":"122333:2:0"},"returnParameters":{"id":6137,"nodeType":"ParameterList","parameters":[],"src":"122372:0:0"},"scope":6760,"src":"122310:129:0","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"baseFunctions":[350],"body":{"id":6159,"nodeType":"Block","src":"122581:49:0","statements":[{"expression":{"arguments":[{"id":6156,"name":"percentage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6149,"src":"122614:10:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6155,"name":"_setMaxSlashablePercentage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6224,"src":"122587:26:0","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint256_$returns$__$","typeString":"function (uint256)"}},"id":6157,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"122587:38:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6158,"nodeType":"ExpressionStatement","src":"122587:38:0"}]},"documentation":{"id":6147,"nodeType":"StructuredDocumentation","src":"122443:30:0","text":"@inheritdoc IStakedTokenV3"},"functionSelector":"74011f56","id":6160,"implemented":true,"kind":"function","modifiers":[{"id":6153,"kind":"modifierInvocation","modifierName":{"id":6152,"name":"onlySlashingAdmin","nameLocations":["122561:17:0"],"nodeType":"IdentifierPath","referencedDeclaration":5487,"src":"122561:17:0"},"nodeType":"ModifierInvocation","src":"122561:17:0"}],"name":"setMaxSlashablePercentage","nameLocation":"122485:25:0","nodeType":"FunctionDefinition","overrides":{"id":6151,"nodeType":"OverrideSpecifier","overrides":[],"src":"122548:8:0"},"parameters":{"id":6150,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6149,"mutability":"mutable","name":"percentage","nameLocation":"122519:10:0","nodeType":"VariableDeclaration","scope":6160,"src":"122511:18:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6148,"name":"uint256","nodeType":"ElementaryTypeName","src":"122511:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"122510:20:0"},"returnParameters":{"id":6154,"nodeType":"ParameterList","parameters":[],"src":"122581:0:0"},"scope":6760,"src":"122476:154:0","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"baseFunctions":[344],"body":{"id":6169,"nodeType":"Block","src":"122763:41:0","statements":[{"expression":{"id":6167,"name":"_maxSlashablePercentage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5467,"src":"122776:23:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":6166,"id":6168,"nodeType":"Return","src":"122769:30:0"}]},"documentation":{"id":6161,"nodeType":"StructuredDocumentation","src":"122634:30:0","text":"@inheritdoc IStakedTokenV3"},"functionSelector":"f34d96da","id":6170,"implemented":true,"kind":"function","modifiers":[],"name":"getMaxSlashablePercentage","nameLocation":"122676:25:0","nodeType":"FunctionDefinition","overrides":{"id":6163,"nodeType":"OverrideSpecifier","overrides":[],"src":"122730:8:0"},"parameters":{"id":6162,"nodeType":"ParameterList","parameters":[],"src":"122701:2:0"},"returnParameters":{"id":6166,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6165,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6170,"src":"122752:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6164,"name":"uint256","nodeType":"ElementaryTypeName","src":"122752:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"122751:9:0"},"scope":6760,"src":"122667:137:0","stateMutability":"view","virtual":false,"visibility":"external"},{"baseFunctions":[338],"body":{"id":6182,"nodeType":"Block","src":"122931:47:0","statements":[{"expression":{"arguments":[{"id":6179,"name":"cooldownSeconds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6173,"src":"122957:15:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6178,"name":"_setCooldownSeconds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6239,"src":"122937:19:0","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint256_$returns$__$","typeString":"function (uint256)"}},"id":6180,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"122937:36:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6181,"nodeType":"ExpressionStatement","src":"122937:36:0"}]},"documentation":{"id":6171,"nodeType":"StructuredDocumentation","src":"122808:30:0","text":"@inheritdoc IStakedTokenV3"},"functionSelector":"7b5b1157","id":6183,"implemented":true,"kind":"function","modifiers":[{"id":6176,"kind":"modifierInvocation","modifierName":{"id":6175,"name":"onlyCooldownAdmin","nameLocations":["122911:17:0"],"nodeType":"IdentifierPath","referencedDeclaration":5501,"src":"122911:17:0"},"nodeType":"ModifierInvocation","src":"122911:17:0"}],"name":"setCooldownSeconds","nameLocation":"122850:18:0","nodeType":"FunctionDefinition","parameters":{"id":6174,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6173,"mutability":"mutable","name":"cooldownSeconds","nameLocation":"122877:15:0","nodeType":"VariableDeclaration","scope":6183,"src":"122869:23:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6172,"name":"uint256","nodeType":"ElementaryTypeName","src":"122869:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"122868:25:0"},"returnParameters":{"id":6177,"nodeType":"ParameterList","parameters":[],"src":"122931:0:0"},"scope":6760,"src":"122841:137:0","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"baseFunctions":[326],"body":{"id":6191,"nodeType":"Block","src":"123077:34:0","statements":[{"expression":{"id":6189,"name":"_cooldownSeconds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5464,"src":"123090:16:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":6188,"id":6190,"nodeType":"Return","src":"123083:23:0"}]},"documentation":{"id":6184,"nodeType":"StructuredDocumentation","src":"122982:30:0","text":"@inheritdoc IStakedTokenV3"},"functionSelector":"616e0bf9","id":6192,"implemented":true,"kind":"function","modifiers":[],"name":"getCooldownSeconds","nameLocation":"123024:18:0","nodeType":"FunctionDefinition","parameters":{"id":6185,"nodeType":"ParameterList","parameters":[],"src":"123042:2:0"},"returnParameters":{"id":6188,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6187,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6192,"src":"123068:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6186,"name":"uint256","nodeType":"ElementaryTypeName","src":"123068:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"123067:9:0"},"scope":6760,"src":"123015:96:0","stateMutability":"view","virtual":false,"visibility":"external"},{"baseFunctions":[332],"body":{"id":6200,"nodeType":"Block","src":"123208:34:0","statements":[{"expression":{"id":6198,"name":"_cooldownSeconds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5464,"src":"123221:16:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":6197,"id":6199,"nodeType":"Return","src":"123214:23:0"}]},"documentation":{"id":6193,"nodeType":"StructuredDocumentation","src":"123115:30:0","text":"@inheritdoc IStakedTokenV3"},"functionSelector":"72b49d63","id":6201,"implemented":true,"kind":"function","modifiers":[],"name":"COOLDOWN_SECONDS","nameLocation":"123157:16:0","nodeType":"FunctionDefinition","parameters":{"id":6194,"nodeType":"ParameterList","parameters":[],"src":"123173:2:0"},"returnParameters":{"id":6197,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6196,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6201,"src":"123199:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6195,"name":"uint256","nodeType":"ElementaryTypeName","src":"123199:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"123198:9:0"},"scope":6760,"src":"123148:94:0","stateMutability":"view","virtual":false,"visibility":"external"},{"body":{"id":6223,"nodeType":"Block","src":"123488:209:0","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6211,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6208,"name":"percentage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6204,"src":"123509:10:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":6209,"name":"PercentageMath","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4604,"src":"123522:14:0","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_PercentageMath_$4604_$","typeString":"type(library PercentageMath)"}},"id":6210,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"123537:17:0","memberName":"PERCENTAGE_FACTOR","nodeType":"MemberAccess","referencedDeclaration":4517,"src":"123522:32:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"123509:45:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"494e56414c49445f534c415348494e475f50455243454e54414745","id":6212,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"123562:29:0","typeDescriptions":{"typeIdentifier":"t_stringliteral_ce93b50079b62f2df0cdb8205f7bed11a1c18f1ff774f2e6b4f84f4f62875ed5","typeString":"literal_string \"INVALID_SLASHING_PERCENTAGE\""},"value":"INVALID_SLASHING_PERCENTAGE"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_ce93b50079b62f2df0cdb8205f7bed11a1c18f1ff774f2e6b4f84f4f62875ed5","typeString":"literal_string \"INVALID_SLASHING_PERCENTAGE\""}],"id":6207,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"123494:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":6213,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"123494:103:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6214,"nodeType":"ExpressionStatement","src":"123494:103:0"},{"expression":{"id":6217,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":6215,"name":"_maxSlashablePercentage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5467,"src":"123604:23:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":6216,"name":"percentage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6204,"src":"123630:10:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"123604:36:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":6218,"nodeType":"ExpressionStatement","src":"123604:36:0"},{"eventCall":{"arguments":[{"id":6220,"name":"percentage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6204,"src":"123681:10:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6219,"name":"MaxSlashablePercentageChanged","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":270,"src":"123651:29:0","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint256_$returns$__$","typeString":"function (uint256)"}},"id":6221,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"123651:41:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6222,"nodeType":"EmitStatement","src":"123646:46:0"}]},"documentation":{"id":6202,"nodeType":"StructuredDocumentation","src":"123246:174:0","text":" @dev sets the max slashable percentage\n @param percentage must be strictly lower 100% as otherwise the exchange rate calculation would result in 0 division"},"id":6224,"implemented":true,"kind":"function","modifiers":[],"name":"_setMaxSlashablePercentage","nameLocation":"123432:26:0","nodeType":"FunctionDefinition","parameters":{"id":6205,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6204,"mutability":"mutable","name":"percentage","nameLocation":"123467:10:0","nodeType":"VariableDeclaration","scope":6224,"src":"123459:18:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6203,"name":"uint256","nodeType":"ElementaryTypeName","src":"123459:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"123458:20:0"},"returnParameters":{"id":6206,"nodeType":"ParameterList","parameters":[],"src":"123488:0:0"},"scope":6760,"src":"123423:274:0","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":6238,"nodeType":"Block","src":"123875:95:0","statements":[{"expression":{"id":6232,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":6230,"name":"_cooldownSeconds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5464,"src":"123881:16:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":6231,"name":"cooldownSeconds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6227,"src":"123900:15:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"123881:34:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":6233,"nodeType":"ExpressionStatement","src":"123881:34:0"},{"eventCall":{"arguments":[{"id":6235,"name":"cooldownSeconds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6227,"src":"123949:15:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6234,"name":"CooldownSecondsChanged","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":284,"src":"123926:22:0","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint256_$returns$__$","typeString":"function (uint256)"}},"id":6236,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"123926:39:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6237,"nodeType":"EmitStatement","src":"123921:44:0"}]},"documentation":{"id":6225,"nodeType":"StructuredDocumentation","src":"123701:108:0","text":" @dev sets the cooldown seconds\n @param cooldownSeconds the new amount of cooldown seconds"},"id":6239,"implemented":true,"kind":"function","modifiers":[],"name":"_setCooldownSeconds","nameLocation":"123821:19:0","nodeType":"FunctionDefinition","parameters":{"id":6228,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6227,"mutability":"mutable","name":"cooldownSeconds","nameLocation":"123849:15:0","nodeType":"VariableDeclaration","scope":6239,"src":"123841:23:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6226,"name":"uint256","nodeType":"ElementaryTypeName","src":"123841:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"123840:25:0"},"returnParameters":{"id":6229,"nodeType":"ParameterList","parameters":[],"src":"123875:0:0"},"scope":6760,"src":"123812:158:0","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":6309,"nodeType":"Block","src":"124340:534:0","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6254,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6252,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6246,"src":"124354:6:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":6253,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"124364:1:0","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"124354:11:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"494e56414c49445f5a45524f5f414d4f554e54","id":6255,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"124367:21:0","typeDescriptions":{"typeIdentifier":"t_stringliteral_33d2eb294587ef7b32eb48e48695ebfec45a9c8922ec7d1c444cfad1fb208e8d","typeString":"literal_string \"INVALID_ZERO_AMOUNT\""},"value":"INVALID_ZERO_AMOUNT"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_33d2eb294587ef7b32eb48e48695ebfec45a9c8922ec7d1c444cfad1fb208e8d","typeString":"literal_string \"INVALID_ZERO_AMOUNT\""}],"id":6251,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"124346:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":6256,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"124346:43:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6257,"nodeType":"ExpressionStatement","src":"124346:43:0"},{"assignments":[6259],"declarations":[{"constant":false,"id":6259,"mutability":"mutable","name":"newTotalRewards","nameLocation":"124403:15:0","nodeType":"VariableDeclaration","scope":6309,"src":"124395:23:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6258,"name":"uint256","nodeType":"ElementaryTypeName","src":"124395:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":6267,"initialValue":{"arguments":[{"id":6261,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6242,"src":"124459:4:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":6263,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6242,"src":"124481:4:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":6262,"name":"balanceOf","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":596,"src":"124471:9:0","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view returns (uint256)"}},"id":6264,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"124471:15:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"66616c7365","id":6265,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"124494:5:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"false"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bool","typeString":"bool"}],"id":6260,"name":"_updateCurrentUnclaimedRewards","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5167,"src":"124421:30:0","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$_t_bool_$returns$_t_uint256_$","typeString":"function (address,uint256,bool) returns (uint256)"}},"id":6266,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"124421:84:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"124395:110:0"},{"assignments":[6269],"declarations":[{"constant":false,"id":6269,"mutability":"mutable","name":"amountToClaim","nameLocation":"124520:13:0","nodeType":"VariableDeclaration","scope":6309,"src":"124512:21:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6268,"name":"uint256","nodeType":"ElementaryTypeName","src":"124512:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":6277,"initialValue":{"condition":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6272,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6270,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6246,"src":"124537:6:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":6271,"name":"newTotalRewards","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6259,"src":"124546:15:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"124537:24:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":6273,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"124536:26:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"id":6275,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6246,"src":"124595:6:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":6276,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"124536:65:0","trueExpression":{"id":6274,"name":"newTotalRewards","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6259,"src":"124571:15:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"124512:89:0"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6281,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6279,"name":"amountToClaim","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6269,"src":"124615:13:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":6280,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"124632:1:0","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"124615:18:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"494e56414c49445f5a45524f5f414d4f554e54","id":6282,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"124635:21:0","typeDescriptions":{"typeIdentifier":"t_stringliteral_33d2eb294587ef7b32eb48e48695ebfec45a9c8922ec7d1c444cfad1fb208e8d","typeString":"literal_string \"INVALID_ZERO_AMOUNT\""},"value":"INVALID_ZERO_AMOUNT"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_33d2eb294587ef7b32eb48e48695ebfec45a9c8922ec7d1c444cfad1fb208e8d","typeString":"literal_string \"INVALID_ZERO_AMOUNT\""}],"id":6278,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"124607:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":6283,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"124607:50:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6284,"nodeType":"ExpressionStatement","src":"124607:50:0"},{"expression":{"id":6291,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":6285,"name":"stakerRewardsToClaim","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4672,"src":"124664:20:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":6287,"indexExpression":{"id":6286,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6242,"src":"124685:4:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"124664:26:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6290,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6288,"name":"newTotalRewards","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6259,"src":"124693:15:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":6289,"name":"amountToClaim","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6269,"src":"124711:13:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"124693:31:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"124664:60:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":6292,"nodeType":"ExpressionStatement","src":"124664:60:0"},{"expression":{"arguments":[{"id":6296,"name":"REWARDS_VAULT","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4668,"src":"124760:13:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6297,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6244,"src":"124775:2:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6298,"name":"amountToClaim","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6269,"src":"124779:13:0","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":6293,"name":"REWARD_TOKEN","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4662,"src":"124730:12:0","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$77","typeString":"contract IERC20"}},"id":6295,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"124743:16:0","memberName":"safeTransferFrom","nodeType":"MemberAccess","referencedDeclaration":2289,"src":"124730:29:0","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC20_$77_$_t_address_$_t_address_$_t_uint256_$returns$__$attached_to$_t_contract$_IERC20_$77_$","typeString":"function (contract IERC20,address,address,uint256)"}},"id":6299,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"124730:63:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6300,"nodeType":"ExpressionStatement","src":"124730:63:0"},{"eventCall":{"arguments":[{"id":6302,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6242,"src":"124819:4:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6303,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6244,"src":"124825:2:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6304,"name":"amountToClaim","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6269,"src":"124829:13:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6301,"name":"RewardsClaimed","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":182,"src":"124804:14:0","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":6305,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"124804:39:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6306,"nodeType":"EmitStatement","src":"124799:44:0"},{"expression":{"id":6307,"name":"amountToClaim","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6269,"src":"124856:13:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":6250,"id":6308,"nodeType":"Return","src":"124849:20:0"}]},"documentation":{"id":6240,"nodeType":"StructuredDocumentation","src":"123974:255:0","text":" @dev claims the rewards for a specified address to a specified address\n @param from The address of the from from which to claim\n @param to Address to receive the rewards\n @param amount Amount to claim\n @return amount claimed"},"id":6310,"implemented":true,"kind":"function","modifiers":[],"name":"_claimRewards","nameLocation":"124241:13:0","nodeType":"FunctionDefinition","parameters":{"id":6247,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6242,"mutability":"mutable","name":"from","nameLocation":"124268:4:0","nodeType":"VariableDeclaration","scope":6310,"src":"124260:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6241,"name":"address","nodeType":"ElementaryTypeName","src":"124260:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6244,"mutability":"mutable","name":"to","nameLocation":"124286:2:0","nodeType":"VariableDeclaration","scope":6310,"src":"124278:10:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6243,"name":"address","nodeType":"ElementaryTypeName","src":"124278:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6246,"mutability":"mutable","name":"amount","nameLocation":"124302:6:0","nodeType":"VariableDeclaration","scope":6310,"src":"124294:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6245,"name":"uint256","nodeType":"ElementaryTypeName","src":"124294:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"124254:58:0"},"returnParameters":{"id":6250,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6249,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6310,"src":"124331:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6248,"name":"uint256","nodeType":"ElementaryTypeName","src":"124331:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"124330:9:0"},"scope":6760,"src":"124232:642:0","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":6374,"nodeType":"Block","src":"125232:473:0","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_contract$_IERC20_$77","typeString":"contract IERC20"},"id":6325,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6323,"name":"REWARD_TOKEN","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4662,"src":"125246:12:0","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$77","typeString":"contract IERC20"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":6324,"name":"STAKED_TOKEN","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4659,"src":"125262:12:0","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$77","typeString":"contract IERC20"}},"src":"125246:28:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"5245574152445f544f4b454e5f49535f4e4f545f5354414b45445f544f4b454e","id":6326,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"125276:34:0","typeDescriptions":{"typeIdentifier":"t_stringliteral_f4a42223776f3ea267c2495ef3dc746d28101276fa8315b76ae8b45133d59a50","typeString":"literal_string \"REWARD_TOKEN_IS_NOT_STAKED_TOKEN\""},"value":"REWARD_TOKEN_IS_NOT_STAKED_TOKEN"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_f4a42223776f3ea267c2495ef3dc746d28101276fa8315b76ae8b45133d59a50","typeString":"literal_string \"REWARD_TOKEN_IS_NOT_STAKED_TOKEN\""}],"id":6322,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"125238:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":6327,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"125238:73:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6328,"nodeType":"ExpressionStatement","src":"125238:73:0"},{"assignments":[6330],"declarations":[{"constant":false,"id":6330,"mutability":"mutable","name":"userUpdatedRewards","nameLocation":"125326:18:0","nodeType":"VariableDeclaration","scope":6374,"src":"125318:26:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6329,"name":"uint256","nodeType":"ElementaryTypeName","src":"125318:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":6338,"initialValue":{"arguments":[{"id":6332,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6313,"src":"125385:4:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":6334,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6313,"src":"125407:4:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":6333,"name":"balanceOf","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":596,"src":"125397:9:0","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view returns (uint256)"}},"id":6335,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"125397:15:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"74727565","id":6336,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"125420:4:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bool","typeString":"bool"}],"id":6331,"name":"_updateCurrentUnclaimedRewards","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5167,"src":"125347:30:0","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$_t_bool_$returns$_t_uint256_$","typeString":"function (address,uint256,bool) returns (uint256)"}},"id":6337,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"125347:83:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"125318:112:0"},{"assignments":[6340],"declarations":[{"constant":false,"id":6340,"mutability":"mutable","name":"amountToClaim","nameLocation":"125444:13:0","nodeType":"VariableDeclaration","scope":6374,"src":"125436:21:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6339,"name":"uint256","nodeType":"ElementaryTypeName","src":"125436:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":6348,"initialValue":{"condition":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6343,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6341,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6317,"src":"125461:6:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":6342,"name":"userUpdatedRewards","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6330,"src":"125470:18:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"125461:27:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":6344,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"125460:29:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"id":6346,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6317,"src":"125525:6:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":6347,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"125460:71:0","trueExpression":{"id":6345,"name":"userUpdatedRewards","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6330,"src":"125498:18:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"125436:95:0"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6351,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6349,"name":"amountToClaim","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6340,"src":"125542:13:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":6350,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"125559:1:0","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"125542:18:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6371,"nodeType":"IfStatement","src":"125538:136:0","trueBody":{"id":6370,"nodeType":"Block","src":"125562:112:0","statements":[{"expression":{"arguments":[{"id":6353,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6313,"src":"125584:4:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":6356,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"125598:4:0","typeDescriptions":{"typeIdentifier":"t_contract$_StakedTokenV3_$6760","typeString":"contract StakedTokenV3"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_StakedTokenV3_$6760","typeString":"contract StakedTokenV3"}],"id":6355,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"125590:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":6354,"name":"address","nodeType":"ElementaryTypeName","src":"125590:7:0","typeDescriptions":{}}},"id":6357,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"125590:13:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6358,"name":"amountToClaim","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6340,"src":"125605:13:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6352,"name":"_claimRewards","nodeType":"Identifier","overloadedDeclarations":[6310,2781],"referencedDeclaration":6310,"src":"125570:13:0","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$_t_uint256_$","typeString":"function (address,address,uint256) returns (uint256)"}},"id":6359,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"125570:49:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":6360,"nodeType":"ExpressionStatement","src":"125570:49:0"},{"expression":{"arguments":[{"arguments":[{"id":6364,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"125642:4:0","typeDescriptions":{"typeIdentifier":"t_contract$_StakedTokenV3_$6760","typeString":"contract StakedTokenV3"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_StakedTokenV3_$6760","typeString":"contract StakedTokenV3"}],"id":6363,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"125634:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":6362,"name":"address","nodeType":"ElementaryTypeName","src":"125634:7:0","typeDescriptions":{}}},"id":6365,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"125634:13:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6366,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6315,"src":"125649:2:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6367,"name":"amountToClaim","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6340,"src":"125653:13:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6361,"name":"_stake","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6467,"src":"125627:6:0","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":6368,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"125627:40:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6369,"nodeType":"ExpressionStatement","src":"125627:40:0"}]}},{"expression":{"id":6372,"name":"amountToClaim","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6340,"src":"125687:13:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":6321,"id":6373,"nodeType":"Return","src":"125680:20:0"}]},"documentation":{"id":6311,"nodeType":"StructuredDocumentation","src":"124878:227:0","text":" @dev Claims an `amount` of `REWARD_TOKEN` and stakes.\n @param from The address of the from from which to claim\n @param to Address to stake to\n @param amount Amount to claim\n @return amount claimed"},"id":6375,"implemented":true,"kind":"function","modifiers":[],"name":"_claimRewardsAndStakeOnBehalf","nameLocation":"125117:29:0","nodeType":"FunctionDefinition","parameters":{"id":6318,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6313,"mutability":"mutable","name":"from","nameLocation":"125160:4:0","nodeType":"VariableDeclaration","scope":6375,"src":"125152:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6312,"name":"address","nodeType":"ElementaryTypeName","src":"125152:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6315,"mutability":"mutable","name":"to","nameLocation":"125178:2:0","nodeType":"VariableDeclaration","scope":6375,"src":"125170:10:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6314,"name":"address","nodeType":"ElementaryTypeName","src":"125170:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6317,"mutability":"mutable","name":"amount","nameLocation":"125194:6:0","nodeType":"VariableDeclaration","scope":6375,"src":"125186:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6316,"name":"uint256","nodeType":"ElementaryTypeName","src":"125186:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"125146:58:0"},"returnParameters":{"id":6321,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6320,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6375,"src":"125223:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6319,"name":"uint256","nodeType":"ElementaryTypeName","src":"125223:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"125222:9:0"},"scope":6760,"src":"125108:597:0","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":6466,"nodeType":"Block","src":"125968:641:0","statements":[{"expression":{"arguments":[{"id":6387,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"125982:21:0","subExpression":{"id":6386,"name":"inPostSlashingPeriod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5473,"src":"125983:20:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"534c415348494e475f4f4e474f494e47","id":6388,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"126005:18:0","typeDescriptions":{"typeIdentifier":"t_stringliteral_ca68b1751ae29c5f09bd0021f927ba7e466485e5196910ff5ec2e20b861ddf43","typeString":"literal_string \"SLASHING_ONGOING\""},"value":"SLASHING_ONGOING"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_ca68b1751ae29c5f09bd0021f927ba7e466485e5196910ff5ec2e20b861ddf43","typeString":"literal_string \"SLASHING_ONGOING\""}],"id":6385,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"125974:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":6389,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"125974:50:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6390,"nodeType":"ExpressionStatement","src":"125974:50:0"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6394,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6392,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6382,"src":"126038:6:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":6393,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"126048:1:0","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"126038:11:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"494e56414c49445f5a45524f5f414d4f554e54","id":6395,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"126051:21:0","typeDescriptions":{"typeIdentifier":"t_stringliteral_33d2eb294587ef7b32eb48e48695ebfec45a9c8922ec7d1c444cfad1fb208e8d","typeString":"literal_string \"INVALID_ZERO_AMOUNT\""},"value":"INVALID_ZERO_AMOUNT"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_33d2eb294587ef7b32eb48e48695ebfec45a9c8922ec7d1c444cfad1fb208e8d","typeString":"literal_string \"INVALID_ZERO_AMOUNT\""}],"id":6391,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"126030:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":6396,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"126030:43:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6397,"nodeType":"ExpressionStatement","src":"126030:43:0"},{"assignments":[6399],"declarations":[{"constant":false,"id":6399,"mutability":"mutable","name":"balanceOfTo","nameLocation":"126088:11:0","nodeType":"VariableDeclaration","scope":6466,"src":"126080:19:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6398,"name":"uint256","nodeType":"ElementaryTypeName","src":"126080:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":6403,"initialValue":{"arguments":[{"id":6401,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6380,"src":"126112:2:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":6400,"name":"balanceOf","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":596,"src":"126102:9:0","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view returns (uint256)"}},"id":6402,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"126102:13:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"126080:35:0"},{"assignments":[6405],"declarations":[{"constant":false,"id":6405,"mutability":"mutable","name":"accruedRewards","nameLocation":"126130:14:0","nodeType":"VariableDeclaration","scope":6466,"src":"126122:22:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6404,"name":"uint256","nodeType":"ElementaryTypeName","src":"126122:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":6416,"initialValue":{"arguments":[{"id":6407,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6380,"src":"126179:2:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":6410,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"126197:4:0","typeDescriptions":{"typeIdentifier":"t_contract$_StakedTokenV3_$6760","typeString":"contract StakedTokenV3"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_StakedTokenV3_$6760","typeString":"contract StakedTokenV3"}],"id":6409,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"126189:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":6408,"name":"address","nodeType":"ElementaryTypeName","src":"126189:7:0","typeDescriptions":{}}},"id":6411,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"126189:13:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6412,"name":"balanceOfTo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6399,"src":"126210:11:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[],"expression":{"argumentTypes":[],"id":6413,"name":"totalSupply","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":582,"src":"126229:11:0","typeDescriptions":{"typeIdentifier":"t_function_internal_view$__$returns$_t_uint256_$","typeString":"function () view returns (uint256)"}},"id":6414,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"126229:13:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6406,"name":"_updateUserAssetInternal","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":2729,"src":"126147:24:0","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (address,address,uint256,uint256) returns (uint256)"}},"id":6415,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"126147:101:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"126122:126:0"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6419,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6417,"name":"accruedRewards","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6405,"src":"126259:14:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":6418,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"126277:1:0","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"126259:19:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6436,"nodeType":"IfStatement","src":"126255:155:0","trueBody":{"id":6435,"nodeType":"Block","src":"126280:130:0","statements":[{"expression":{"id":6428,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":6420,"name":"stakerRewardsToClaim","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4672,"src":"126288:20:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":6422,"indexExpression":{"id":6421,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6380,"src":"126309:2:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"126288:24:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6427,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"baseExpression":{"id":6423,"name":"stakerRewardsToClaim","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4672,"src":"126315:20:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},"id":6425,"indexExpression":{"id":6424,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6380,"src":"126336:2:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"126315:24:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":6426,"name":"accruedRewards","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6405,"src":"126342:14:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"126315:41:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"126288:68:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":6429,"nodeType":"ExpressionStatement","src":"126288:68:0"},{"eventCall":{"arguments":[{"id":6431,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6380,"src":"126384:2:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6432,"name":"accruedRewards","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6405,"src":"126388:14:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6430,"name":"RewardsAccrued","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":174,"src":"126369:14:0","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":6433,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"126369:34:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6434,"nodeType":"EmitStatement","src":"126364:39:0"}]}},{"assignments":[6438],"declarations":[{"constant":false,"id":6438,"mutability":"mutable","name":"sharesToMint","nameLocation":"126424:12:0","nodeType":"VariableDeclaration","scope":6466,"src":"126416:20:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6437,"name":"uint256","nodeType":"ElementaryTypeName","src":"126416:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":6442,"initialValue":{"arguments":[{"id":6440,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6382,"src":"126452:6:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6439,"name":"previewStake","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5736,"src":"126439:12:0","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) view returns (uint256)"}},"id":6441,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"126439:20:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"126416:43:0"},{"expression":{"arguments":[{"id":6446,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6378,"src":"126496:4:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":6449,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"126510:4:0","typeDescriptions":{"typeIdentifier":"t_contract$_StakedTokenV3_$6760","typeString":"contract StakedTokenV3"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_StakedTokenV3_$6760","typeString":"contract StakedTokenV3"}],"id":6448,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"126502:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":6447,"name":"address","nodeType":"ElementaryTypeName","src":"126502:7:0","typeDescriptions":{}}},"id":6450,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"126502:13:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6451,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6382,"src":"126517:6:0","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":6443,"name":"STAKED_TOKEN","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4659,"src":"126466:12:0","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$77","typeString":"contract IERC20"}},"id":6445,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"126479:16:0","memberName":"safeTransferFrom","nodeType":"MemberAccess","referencedDeclaration":2289,"src":"126466:29:0","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC20_$77_$_t_address_$_t_address_$_t_uint256_$returns$__$attached_to$_t_contract$_IERC20_$77_$","typeString":"function (contract IERC20,address,address,uint256)"}},"id":6452,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"126466:58:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6453,"nodeType":"ExpressionStatement","src":"126466:58:0"},{"expression":{"arguments":[{"id":6455,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6380,"src":"126537:2:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6456,"name":"sharesToMint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6438,"src":"126541:12:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6454,"name":"_mint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":901,"src":"126531:5:0","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":6457,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"126531:23:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6458,"nodeType":"ExpressionStatement","src":"126531:23:0"},{"eventCall":{"arguments":[{"id":6460,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6378,"src":"126573:4:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6461,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6380,"src":"126579:2:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6462,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6382,"src":"126583:6:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":6463,"name":"sharesToMint","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6438,"src":"126591:12:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6459,"name":"Staked","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":256,"src":"126566:6:0","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256,uint256)"}},"id":6464,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"126566:38:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6465,"nodeType":"EmitStatement","src":"126561:43:0"}]},"documentation":{"id":6376,"nodeType":"StructuredDocumentation","src":"125709:173:0","text":" @dev Allows staking a specified amount of STAKED_TOKEN\n @param to The address to receiving the shares\n @param amount The amount of assets to be staked"},"id":6467,"implemented":true,"kind":"function","modifiers":[],"name":"_stake","nameLocation":"125894:6:0","nodeType":"FunctionDefinition","parameters":{"id":6383,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6378,"mutability":"mutable","name":"from","nameLocation":"125914:4:0","nodeType":"VariableDeclaration","scope":6467,"src":"125906:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6377,"name":"address","nodeType":"ElementaryTypeName","src":"125906:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6380,"mutability":"mutable","name":"to","nameLocation":"125932:2:0","nodeType":"VariableDeclaration","scope":6467,"src":"125924:10:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6379,"name":"address","nodeType":"ElementaryTypeName","src":"125924:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6382,"mutability":"mutable","name":"amount","nameLocation":"125948:6:0","nodeType":"VariableDeclaration","scope":6467,"src":"125940:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6381,"name":"uint256","nodeType":"ElementaryTypeName","src":"125940:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"125900:58:0"},"returnParameters":{"id":6384,"nodeType":"ParameterList","parameters":[],"src":"125968:0:0"},"scope":6760,"src":"125885:724:0","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":6619,"nodeType":"Block","src":"126879:1337:0","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6480,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6478,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6474,"src":"126893:6:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":6479,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"126903:1:0","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"126893:11:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"494e56414c49445f5a45524f5f414d4f554e54","id":6481,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"126906:21:0","typeDescriptions":{"typeIdentifier":"t_stringliteral_33d2eb294587ef7b32eb48e48695ebfec45a9c8922ec7d1c444cfad1fb208e8d","typeString":"literal_string \"INVALID_ZERO_AMOUNT\""},"value":"INVALID_ZERO_AMOUNT"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_33d2eb294587ef7b32eb48e48695ebfec45a9c8922ec7d1c444cfad1fb208e8d","typeString":"literal_string \"INVALID_ZERO_AMOUNT\""}],"id":6477,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"126885:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":6482,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"126885:43:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6483,"nodeType":"ExpressionStatement","src":"126885:43:0"},{"assignments":[6486],"declarations":[{"constant":false,"id":6486,"mutability":"mutable","name":"cooldownSnapshot","nameLocation":"126959:16:0","nodeType":"VariableDeclaration","scope":6619,"src":"126935:40:0","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_CooldownSnapshot_$168_memory_ptr","typeString":"struct IStakedTokenV2.CooldownSnapshot"},"typeName":{"id":6485,"nodeType":"UserDefinedTypeName","pathNode":{"id":6484,"name":"CooldownSnapshot","nameLocations":["126935:16:0"],"nodeType":"IdentifierPath","referencedDeclaration":168,"src":"126935:16:0"},"referencedDeclaration":168,"src":"126935:16:0","typeDescriptions":{"typeIdentifier":"t_struct$_CooldownSnapshot_$168_storage_ptr","typeString":"struct IStakedTokenV2.CooldownSnapshot"}},"visibility":"internal"}],"id":6490,"initialValue":{"baseExpression":{"id":6487,"name":"stakersCooldowns","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4677,"src":"126978:16:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_CooldownSnapshot_$168_storage_$","typeString":"mapping(address => struct IStakedTokenV2.CooldownSnapshot storage ref)"}},"id":6489,"indexExpression":{"id":6488,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6470,"src":"126995:4:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"126978:22:0","typeDescriptions":{"typeIdentifier":"t_struct$_CooldownSnapshot_$168_storage","typeString":"struct IStakedTokenV2.CooldownSnapshot storage ref"}},"nodeType":"VariableDeclarationStatement","src":"126935:65:0"},{"condition":{"id":6492,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"!","prefix":true,"src":"127010:21:0","subExpression":{"id":6491,"name":"inPostSlashingPeriod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5473,"src":"127011:20:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6521,"nodeType":"IfStatement","src":"127006:329:0","trueBody":{"id":6520,"nodeType":"Block","src":"127033:302:0","statements":[{"expression":{"arguments":[{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6500,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":6494,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"127059:5:0","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":6495,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"127065:9:0","memberName":"timestamp","nodeType":"MemberAccess","src":"127059:15:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">=","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6499,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":6496,"name":"cooldownSnapshot","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6486,"src":"127078:16:0","typeDescriptions":{"typeIdentifier":"t_struct$_CooldownSnapshot_$168_memory_ptr","typeString":"struct IStakedTokenV2.CooldownSnapshot memory"}},"id":6497,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"127095:9:0","memberName":"timestamp","nodeType":"MemberAccess","referencedDeclaration":165,"src":"127078:26:0","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":6498,"name":"_cooldownSeconds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5464,"src":"127107:16:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"127078:45:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"127059:64:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":6501,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"127058:66:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"494e53554646494349454e545f434f4f4c444f574e","id":6502,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"127134:23:0","typeDescriptions":{"typeIdentifier":"t_stringliteral_66cceaab4b8a6f427cff5482a526862a61c3ef92948b70aceb4a8f720a8f0ead","typeString":"literal_string \"INSUFFICIENT_COOLDOWN\""},"value":"INSUFFICIENT_COOLDOWN"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_66cceaab4b8a6f427cff5482a526862a61c3ef92948b70aceb4a8f720a8f0ead","typeString":"literal_string \"INSUFFICIENT_COOLDOWN\""}],"id":6493,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"127041:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":6503,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"127041:124:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6504,"nodeType":"ExpressionStatement","src":"127041:124:0"},{"expression":{"arguments":[{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6515,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6513,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":6506,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"127191:5:0","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":6507,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"127197:9:0","memberName":"timestamp","nodeType":"MemberAccess","src":"127191:15:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6511,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":6508,"name":"cooldownSnapshot","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6486,"src":"127210:16:0","typeDescriptions":{"typeIdentifier":"t_struct$_CooldownSnapshot_$168_memory_ptr","typeString":"struct IStakedTokenV2.CooldownSnapshot memory"}},"id":6509,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"127227:9:0","memberName":"timestamp","nodeType":"MemberAccess","referencedDeclaration":165,"src":"127210:26:0","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":6510,"name":"_cooldownSeconds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5464,"src":"127239:16:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"127210:45:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":6512,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"127209:47:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"127191:65:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"id":6514,"name":"UNSTAKE_WINDOW","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4665,"src":"127270:14:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"127191:93:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":6516,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"127190:95:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"554e5354414b455f57494e444f575f46494e4953484544","id":6517,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"127295:25:0","typeDescriptions":{"typeIdentifier":"t_stringliteral_c6959acf2335419e4a75195e2fb1c276a96baa5b7fab6be19b14b9420a4bd962","typeString":"literal_string \"UNSTAKE_WINDOW_FINISHED\""},"value":"UNSTAKE_WINDOW_FINISHED"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_c6959acf2335419e4a75195e2fb1c276a96baa5b7fab6be19b14b9420a4bd962","typeString":"literal_string \"UNSTAKE_WINDOW_FINISHED\""}],"id":6505,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"127173:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":6518,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"127173:155:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6519,"nodeType":"ExpressionStatement","src":"127173:155:0"}]}},{"assignments":[6523],"declarations":[{"constant":false,"id":6523,"mutability":"mutable","name":"balanceOfFrom","nameLocation":"127349:13:0","nodeType":"VariableDeclaration","scope":6619,"src":"127341:21:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6522,"name":"uint256","nodeType":"ElementaryTypeName","src":"127341:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":6527,"initialValue":{"arguments":[{"id":6525,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6470,"src":"127375:4:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":6524,"name":"balanceOf","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":596,"src":"127365:9:0","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view returns (uint256)"}},"id":6526,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"127365:15:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"127341:39:0"},{"assignments":[6529],"declarations":[{"constant":false,"id":6529,"mutability":"mutable","name":"maxRedeemable","nameLocation":"127394:13:0","nodeType":"VariableDeclaration","scope":6619,"src":"127386:21:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6528,"name":"uint256","nodeType":"ElementaryTypeName","src":"127386:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":6535,"initialValue":{"condition":{"id":6530,"name":"inPostSlashingPeriod","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5473,"src":"127410:20:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"expression":{"id":6532,"name":"cooldownSnapshot","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6486,"src":"127461:16:0","typeDescriptions":{"typeIdentifier":"t_struct$_CooldownSnapshot_$168_memory_ptr","typeString":"struct IStakedTokenV2.CooldownSnapshot memory"}},"id":6533,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"127478:6:0","memberName":"amount","nodeType":"MemberAccess","referencedDeclaration":167,"src":"127461:23:0","typeDescriptions":{"typeIdentifier":"t_uint216","typeString":"uint216"}},"id":6534,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"127410:74:0","trueExpression":{"id":6531,"name":"balanceOfFrom","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6523,"src":"127439:13:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"127386:98:0"},{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6539,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6537,"name":"maxRedeemable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6529,"src":"127498:13:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":6538,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"127515:1:0","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"127498:18:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"494e56414c49445f5a45524f5f4d41585f52454445454d41424c45","id":6540,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"127518:29:0","typeDescriptions":{"typeIdentifier":"t_stringliteral_fa2c368672f35856ca139c6dfba7cf36845bc24e7a2795ed29d2eba4e8313209","typeString":"literal_string \"INVALID_ZERO_MAX_REDEEMABLE\""},"value":"INVALID_ZERO_MAX_REDEEMABLE"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_fa2c368672f35856ca139c6dfba7cf36845bc24e7a2795ed29d2eba4e8313209","typeString":"literal_string \"INVALID_ZERO_MAX_REDEEMABLE\""}],"id":6536,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"127490:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":6541,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"127490:58:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6542,"nodeType":"ExpressionStatement","src":"127490:58:0"},{"assignments":[6544],"declarations":[{"constant":false,"id":6544,"mutability":"mutable","name":"amountToRedeem","nameLocation":"127563:14:0","nodeType":"VariableDeclaration","scope":6619,"src":"127555:22:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6543,"name":"uint256","nodeType":"ElementaryTypeName","src":"127555:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":6552,"initialValue":{"condition":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6547,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6545,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6474,"src":"127581:6:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":6546,"name":"maxRedeemable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6529,"src":"127590:13:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"127581:22:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"id":6548,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"127580:24:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseExpression":{"id":6550,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6474,"src":"127623:6:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":6551,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"Conditional","src":"127580:49:0","trueExpression":{"id":6549,"name":"maxRedeemable","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6529,"src":"127607:13:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"127555:74:0"},{"expression":{"arguments":[{"id":6554,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6470,"src":"127667:4:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6555,"name":"balanceOfFrom","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6523,"src":"127673:13:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"74727565","id":6556,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"127688:4:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bool","typeString":"bool"}],"id":6553,"name":"_updateCurrentUnclaimedRewards","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5167,"src":"127636:30:0","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$_t_bool_$returns$_t_uint256_$","typeString":"function (address,uint256,bool) returns (uint256)"}},"id":6557,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"127636:57:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":6558,"nodeType":"ExpressionStatement","src":"127636:57:0"},{"assignments":[6560],"declarations":[{"constant":false,"id":6560,"mutability":"mutable","name":"underlyingToRedeem","nameLocation":"127708:18:0","nodeType":"VariableDeclaration","scope":6619,"src":"127700:26:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6559,"name":"uint256","nodeType":"ElementaryTypeName","src":"127700:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":6564,"initialValue":{"arguments":[{"id":6562,"name":"amountToRedeem","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6544,"src":"127743:14:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6561,"name":"previewRedeem","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5983,"src":"127729:13:0","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_uint256_$returns$_t_uint256_$","typeString":"function (uint256) view returns (uint256)"}},"id":6563,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"127729:29:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"127700:58:0"},{"expression":{"arguments":[{"id":6566,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6470,"src":"127771:4:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6567,"name":"amountToRedeem","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6544,"src":"127777:14:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6565,"name":"_burn","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":973,"src":"127765:5:0","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,uint256)"}},"id":6568,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"127765:27:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6569,"nodeType":"ExpressionStatement","src":"127765:27:0"},{"condition":{"commonType":{"typeIdentifier":"t_uint40","typeString":"uint40"},"id":6573,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":6570,"name":"cooldownSnapshot","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6486,"src":"127803:16:0","typeDescriptions":{"typeIdentifier":"t_struct$_CooldownSnapshot_$168_memory_ptr","typeString":"struct IStakedTokenV2.CooldownSnapshot memory"}},"id":6571,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"127820:9:0","memberName":"timestamp","nodeType":"MemberAccess","referencedDeclaration":165,"src":"127803:26:0","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":6572,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"127833:1:0","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"127803:31:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6603,"nodeType":"IfStatement","src":"127799:285:0","trueBody":{"id":6602,"nodeType":"Block","src":"127836:248:0","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6579,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6577,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":6574,"name":"cooldownSnapshot","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6486,"src":"127848:16:0","typeDescriptions":{"typeIdentifier":"t_struct$_CooldownSnapshot_$168_memory_ptr","typeString":"struct IStakedTokenV2.CooldownSnapshot memory"}},"id":6575,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"127865:6:0","memberName":"amount","nodeType":"MemberAccess","referencedDeclaration":167,"src":"127848:23:0","typeDescriptions":{"typeIdentifier":"t_uint216","typeString":"uint216"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":6576,"name":"amountToRedeem","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6544,"src":"127874:14:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"127848:40:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"30","id":6578,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"127892:1:0","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"127848:45:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":6600,"nodeType":"Block","src":"127949:129:0","statements":[{"expression":{"id":6598,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"baseExpression":{"id":6586,"name":"stakersCooldowns","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4677,"src":"127959:16:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_CooldownSnapshot_$168_storage_$","typeString":"mapping(address => struct IStakedTokenV2.CooldownSnapshot storage ref)"}},"id":6588,"indexExpression":{"id":6587,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6470,"src":"127976:4:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"127959:22:0","typeDescriptions":{"typeIdentifier":"t_struct$_CooldownSnapshot_$168_storage","typeString":"struct IStakedTokenV2.CooldownSnapshot storage ref"}},"id":6589,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"127982:6:0","memberName":"amount","nodeType":"MemberAccess","referencedDeclaration":167,"src":"127959:29:0","typeDescriptions":{"typeIdentifier":"t_uint216","typeString":"uint216"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint216","typeString":"uint216"},"id":6597,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"baseExpression":{"id":6590,"name":"stakersCooldowns","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4677,"src":"128001:16:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_CooldownSnapshot_$168_storage_$","typeString":"mapping(address => struct IStakedTokenV2.CooldownSnapshot storage ref)"}},"id":6592,"indexExpression":{"id":6591,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6470,"src":"128018:4:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"128001:22:0","typeDescriptions":{"typeIdentifier":"t_struct$_CooldownSnapshot_$168_storage","typeString":"struct IStakedTokenV2.CooldownSnapshot storage ref"}},"id":6593,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"128024:6:0","memberName":"amount","nodeType":"MemberAccess","referencedDeclaration":167,"src":"128001:29:0","typeDescriptions":{"typeIdentifier":"t_uint216","typeString":"uint216"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"id":6594,"name":"amountToRedeem","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6544,"src":"128043:14:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":6595,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"128058:9:0","memberName":"toUint184","nodeType":"MemberAccess","referencedDeclaration":3199,"src":"128043:24:0","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint184_$attached_to$_t_uint256_$","typeString":"function (uint256) pure returns (uint184)"}},"id":6596,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"128043:26:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint184","typeString":"uint184"}},"src":"128001:68:0","typeDescriptions":{"typeIdentifier":"t_uint216","typeString":"uint216"}},"src":"127959:110:0","typeDescriptions":{"typeIdentifier":"t_uint216","typeString":"uint216"}},"id":6599,"nodeType":"ExpressionStatement","src":"127959:110:0"}]},"id":6601,"nodeType":"IfStatement","src":"127844:234:0","trueBody":{"id":6585,"nodeType":"Block","src":"127895:48:0","statements":[{"expression":{"id":6583,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"delete","prefix":true,"src":"127905:29:0","subExpression":{"baseExpression":{"id":6580,"name":"stakersCooldowns","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4677,"src":"127912:16:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_CooldownSnapshot_$168_storage_$","typeString":"mapping(address => struct IStakedTokenV2.CooldownSnapshot storage ref)"}},"id":6582,"indexExpression":{"id":6581,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6470,"src":"127929:4:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"127912:22:0","typeDescriptions":{"typeIdentifier":"t_struct$_CooldownSnapshot_$168_storage","typeString":"struct IStakedTokenV2.CooldownSnapshot storage ref"}},"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6584,"nodeType":"ExpressionStatement","src":"127905:29:0"}]}}]}},{"expression":{"arguments":[{"id":6608,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6472,"src":"128124:2:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6609,"name":"underlyingToRedeem","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6560,"src":"128128:18:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"arguments":[{"id":6605,"name":"STAKED_TOKEN","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4659,"src":"128097:12:0","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$77","typeString":"contract IERC20"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC20_$77","typeString":"contract IERC20"}],"id":6604,"name":"IERC20","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":77,"src":"128090:6:0","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC20_$77_$","typeString":"type(contract IERC20)"}},"id":6606,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"128090:20:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$77","typeString":"contract IERC20"}},"id":6607,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"128111:12:0","memberName":"safeTransfer","nodeType":"MemberAccess","referencedDeclaration":2263,"src":"128090:33:0","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_contract$_IERC20_$77_$_t_address_$_t_uint256_$returns$__$attached_to$_t_contract$_IERC20_$77_$","typeString":"function (contract IERC20,address,uint256)"}},"id":6610,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"128090:57:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6611,"nodeType":"ExpressionStatement","src":"128090:57:0"},{"eventCall":{"arguments":[{"id":6613,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6470,"src":"128166:4:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6614,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6472,"src":"128172:2:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6615,"name":"underlyingToRedeem","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6560,"src":"128176:18:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":6616,"name":"amountToRedeem","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6544,"src":"128196:14:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6612,"name":"Redeem","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":266,"src":"128159:6:0","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256,uint256)"}},"id":6617,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"128159:52:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6618,"nodeType":"EmitStatement","src":"128154:57:0"}]},"documentation":{"id":6468,"nodeType":"StructuredDocumentation","src":"126613:179:0","text":" @dev Redeems staked tokens, and stop earning rewards\n @param from Address to redeem from\n @param to Address to redeem to\n @param amount Amount to redeem"},"id":6620,"implemented":true,"kind":"function","modifiers":[],"name":"_redeem","nameLocation":"126804:7:0","nodeType":"FunctionDefinition","parameters":{"id":6475,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6470,"mutability":"mutable","name":"from","nameLocation":"126825:4:0","nodeType":"VariableDeclaration","scope":6620,"src":"126817:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6469,"name":"address","nodeType":"ElementaryTypeName","src":"126817:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6472,"mutability":"mutable","name":"to","nameLocation":"126843:2:0","nodeType":"VariableDeclaration","scope":6620,"src":"126835:10:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6471,"name":"address","nodeType":"ElementaryTypeName","src":"126835:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6474,"mutability":"mutable","name":"amount","nameLocation":"126859:6:0","nodeType":"VariableDeclaration","scope":6620,"src":"126851:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6473,"name":"uint256","nodeType":"ElementaryTypeName","src":"126851:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"126811:58:0"},"returnParameters":{"id":6476,"nodeType":"ParameterList","parameters":[],"src":"126879:0:0"},"scope":6760,"src":"126795:1421:0","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":6641,"nodeType":"Block","src":"128417:153:0","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_uint216","typeString":"uint216"},"id":6629,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6627,"name":"newExchangeRate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6623,"src":"128431:15:0","typeDescriptions":{"typeIdentifier":"t_uint216","typeString":"uint216"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":6628,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"128450:1:0","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"128431:20:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},{"hexValue":"5a45524f5f45584348414e47455f52415445","id":6630,"isConstant":false,"isLValue":false,"isPure":true,"kind":"string","lValueRequested":false,"nodeType":"Literal","src":"128453:20:0","typeDescriptions":{"typeIdentifier":"t_stringliteral_2f1333997521c1f7b64fb9baad89e36b71dfc7265a9804df600ce8ae5c1f6f36","typeString":"literal_string \"ZERO_EXCHANGE_RATE\""},"value":"ZERO_EXCHANGE_RATE"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"},{"typeIdentifier":"t_stringliteral_2f1333997521c1f7b64fb9baad89e36b71dfc7265a9804df600ce8ae5c1f6f36","typeString":"literal_string \"ZERO_EXCHANGE_RATE\""}],"id":6626,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"128423:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$","typeString":"function (bool,string memory) pure"}},"id":6631,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"128423:51:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6632,"nodeType":"ExpressionStatement","src":"128423:51:0"},{"expression":{"id":6635,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":6633,"name":"_currentExchangeRate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5470,"src":"128480:20:0","typeDescriptions":{"typeIdentifier":"t_uint216","typeString":"uint216"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":6634,"name":"newExchangeRate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6623,"src":"128503:15:0","typeDescriptions":{"typeIdentifier":"t_uint216","typeString":"uint216"}},"src":"128480:38:0","typeDescriptions":{"typeIdentifier":"t_uint216","typeString":"uint216"}},"id":6636,"nodeType":"ExpressionStatement","src":"128480:38:0"},{"eventCall":{"arguments":[{"id":6638,"name":"newExchangeRate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6623,"src":"128549:15:0","typeDescriptions":{"typeIdentifier":"t_uint216","typeString":"uint216"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint216","typeString":"uint216"}],"id":6637,"name":"ExchangeRateChanged","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":288,"src":"128529:19:0","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_uint216_$returns$__$","typeString":"function (uint216)"}},"id":6639,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"128529:36:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6640,"nodeType":"EmitStatement","src":"128524:41:0"}]},"documentation":{"id":6621,"nodeType":"StructuredDocumentation","src":"128220:123:0","text":" @dev Updates the exchangeRate and emits events accordingly\n @param newExchangeRate the new exchange rate"},"id":6642,"implemented":true,"kind":"function","modifiers":[],"name":"_updateExchangeRate","nameLocation":"128355:19:0","nodeType":"FunctionDefinition","parameters":{"id":6624,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6623,"mutability":"mutable","name":"newExchangeRate","nameLocation":"128383:15:0","nodeType":"VariableDeclaration","scope":6642,"src":"128375:23:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint216","typeString":"uint216"},"typeName":{"id":6622,"name":"uint216","nodeType":"ElementaryTypeName","src":"128375:7:0","typeDescriptions":{"typeIdentifier":"t_uint216","typeString":"uint216"}},"visibility":"internal"}],"src":"128374:25:0"},"returnParameters":{"id":6625,"nodeType":"ParameterList","parameters":[],"src":"128417:0:0"},"scope":6760,"src":"128346:224:0","stateMutability":"nonpayable","virtual":true,"visibility":"internal"},{"body":{"id":6667,"nodeType":"Block","src":"129040:115:0","statements":[{"expression":{"arguments":[],"expression":{"argumentTypes":[],"expression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6662,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6659,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6657,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6654,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6652,"name":"totalShares","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6647,"src":"129062:11:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":6653,"name":"EXCHANGE_RATE_UNIT","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5454,"src":"129076:18:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"129062:32:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":6655,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"129061:34:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"+","rightExpression":{"id":6656,"name":"totalAssets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6645,"src":"129098:11:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"129061:48:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":6658,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"129112:1:0","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"129061:52:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":6660,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"129060:54:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"id":6661,"name":"totalAssets","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6645,"src":"129117:11:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"129060:68:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":6663,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"129059:70:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":6664,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"129139:9:0","memberName":"toUint216","nodeType":"MemberAccess","referencedDeclaration":3099,"src":"129059:89:0","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint216_$attached_to$_t_uint256_$","typeString":"function (uint256) pure returns (uint216)"}},"id":6665,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"129059:91:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint216","typeString":"uint216"}},"functionReturnParameters":6651,"id":6666,"nodeType":"Return","src":"129046:104:0"}]},"documentation":{"id":6643,"nodeType":"StructuredDocumentation","src":"128574:349:0","text":" @dev calculates the exchange rate based on totalAssets and totalShares\n @dev always rounds up to ensure 100% backing of shares by rounding in favor of the contract\n @param totalAssets The total amount of assets staked\n @param totalShares The total amount of shares\n @return exchangeRate as 18 decimal precision uint216"},"id":6668,"implemented":true,"kind":"function","modifiers":[],"name":"_getExchangeRate","nameLocation":"128935:16:0","nodeType":"FunctionDefinition","parameters":{"id":6648,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6645,"mutability":"mutable","name":"totalAssets","nameLocation":"128960:11:0","nodeType":"VariableDeclaration","scope":6668,"src":"128952:19:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6644,"name":"uint256","nodeType":"ElementaryTypeName","src":"128952:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":6647,"mutability":"mutable","name":"totalShares","nameLocation":"128981:11:0","nodeType":"VariableDeclaration","scope":6668,"src":"128973:19:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6646,"name":"uint256","nodeType":"ElementaryTypeName","src":"128973:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"128951:42:0"},"returnParameters":{"id":6651,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6650,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6668,"src":"129029:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint216","typeString":"uint216"},"typeName":{"id":6649,"name":"uint216","nodeType":"ElementaryTypeName","src":"129029:7:0","typeDescriptions":{"typeIdentifier":"t_uint216","typeString":"uint216"}},"visibility":"internal"}],"src":"129028:9:0"},"scope":6760,"src":"128926:229:0","stateMutability":"pure","virtual":false,"visibility":"internal"},{"baseFunctions":[844],"body":{"id":6758,"nodeType":"Block","src":"129254:790:0","statements":[{"assignments":[6679],"declarations":[{"constant":false,"id":6679,"mutability":"mutable","name":"balanceOfFrom","nameLocation":"129268:13:0","nodeType":"VariableDeclaration","scope":6758,"src":"129260:21:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6678,"name":"uint256","nodeType":"ElementaryTypeName","src":"129260:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":6683,"initialValue":{"arguments":[{"id":6681,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6670,"src":"129294:4:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":6680,"name":"balanceOf","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":596,"src":"129284:9:0","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view returns (uint256)"}},"id":6682,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"129284:15:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"129260:39:0"},{"expression":{"arguments":[{"id":6685,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6670,"src":"129350:4:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6686,"name":"balanceOfFrom","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6679,"src":"129356:13:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"74727565","id":6687,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"129371:4:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bool","typeString":"bool"}],"id":6684,"name":"_updateCurrentUnclaimedRewards","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5167,"src":"129319:30:0","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$_t_bool_$returns$_t_uint256_$","typeString":"function (address,uint256,bool) returns (uint256)"}},"id":6688,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"129319:57:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":6689,"nodeType":"ExpressionStatement","src":"129319:57:0"},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":6692,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6690,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6670,"src":"129404:4:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"id":6691,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6672,"src":"129412:2:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"129404:10:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6749,"nodeType":"IfStatement","src":"129400:600:0","trueBody":{"id":6748,"nodeType":"Block","src":"129416:584:0","statements":[{"assignments":[6694],"declarations":[{"constant":false,"id":6694,"mutability":"mutable","name":"balanceOfTo","nameLocation":"129432:11:0","nodeType":"VariableDeclaration","scope":6748,"src":"129424:19:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6693,"name":"uint256","nodeType":"ElementaryTypeName","src":"129424:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":6698,"initialValue":{"arguments":[{"id":6696,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6672,"src":"129456:2:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":6695,"name":"balanceOf","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":596,"src":"129446:9:0","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view returns (uint256)"}},"id":6697,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"129446:13:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"129424:35:0"},{"expression":{"arguments":[{"id":6700,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6672,"src":"129498:2:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6701,"name":"balanceOfTo","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6694,"src":"129502:11:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"hexValue":"74727565","id":6702,"isConstant":false,"isLValue":false,"isPure":true,"kind":"bool","lValueRequested":false,"nodeType":"Literal","src":"129515:4:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"},"value":"true"}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_bool","typeString":"bool"}],"id":6699,"name":"_updateCurrentUnclaimedRewards","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5167,"src":"129467:30:0","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_uint256_$_t_bool_$returns$_t_uint256_$","typeString":"function (address,uint256,bool) returns (uint256)"}},"id":6703,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"129467:53:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":6704,"nodeType":"ExpressionStatement","src":"129467:53:0"},{"assignments":[6707],"declarations":[{"constant":false,"id":6707,"mutability":"mutable","name":"previousSenderCooldown","nameLocation":"129553:22:0","nodeType":"VariableDeclaration","scope":6748,"src":"129529:46:0","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_CooldownSnapshot_$168_memory_ptr","typeString":"struct IStakedTokenV2.CooldownSnapshot"},"typeName":{"id":6706,"nodeType":"UserDefinedTypeName","pathNode":{"id":6705,"name":"CooldownSnapshot","nameLocations":["129529:16:0"],"nodeType":"IdentifierPath","referencedDeclaration":168,"src":"129529:16:0"},"referencedDeclaration":168,"src":"129529:16:0","typeDescriptions":{"typeIdentifier":"t_struct$_CooldownSnapshot_$168_storage_ptr","typeString":"struct IStakedTokenV2.CooldownSnapshot"}},"visibility":"internal"}],"id":6711,"initialValue":{"baseExpression":{"id":6708,"name":"stakersCooldowns","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4677,"src":"129578:16:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_CooldownSnapshot_$168_storage_$","typeString":"mapping(address => struct IStakedTokenV2.CooldownSnapshot storage ref)"}},"id":6710,"indexExpression":{"id":6709,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6670,"src":"129595:4:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"129578:22:0","typeDescriptions":{"typeIdentifier":"t_struct$_CooldownSnapshot_$168_storage","typeString":"struct IStakedTokenV2.CooldownSnapshot storage ref"}},"nodeType":"VariableDeclarationStatement","src":"129529:71:0"},{"condition":{"commonType":{"typeIdentifier":"t_uint40","typeString":"uint40"},"id":6715,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":6712,"name":"previousSenderCooldown","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6707,"src":"129612:22:0","typeDescriptions":{"typeIdentifier":"t_struct$_CooldownSnapshot_$168_memory_ptr","typeString":"struct IStakedTokenV2.CooldownSnapshot memory"}},"id":6713,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"129635:9:0","memberName":"timestamp","nodeType":"MemberAccess","referencedDeclaration":165,"src":"129612:32:0","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"hexValue":"30","id":6714,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"129648:1:0","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"src":"129612:37:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6747,"nodeType":"IfStatement","src":"129608:386:0","trueBody":{"id":6746,"nodeType":"Block","src":"129651:343:0","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6718,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6716,"name":"balanceOfFrom","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6679,"src":"129757:13:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":6717,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6674,"src":"129774:6:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"129757:23:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6730,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6727,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6725,"name":"balanceOfFrom","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6679,"src":"129844:13:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":6726,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6674,"src":"129860:6:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"129844:22:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"expression":{"id":6728,"name":"previousSenderCooldown","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6707,"src":"129869:22:0","typeDescriptions":{"typeIdentifier":"t_struct$_CooldownSnapshot_$168_memory_ptr","typeString":"struct IStakedTokenV2.CooldownSnapshot memory"}},"id":6729,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"129892:6:0","memberName":"amount","nodeType":"MemberAccess","referencedDeclaration":167,"src":"129869:29:0","typeDescriptions":{"typeIdentifier":"t_uint216","typeString":"uint216"}},"src":"129844:54:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6744,"nodeType":"IfStatement","src":"129840:146:0","trueBody":{"id":6743,"nodeType":"Block","src":"129900:86:0","statements":[{"expression":{"id":6741,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"expression":{"baseExpression":{"id":6731,"name":"stakersCooldowns","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4677,"src":"129912:16:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_CooldownSnapshot_$168_storage_$","typeString":"mapping(address => struct IStakedTokenV2.CooldownSnapshot storage ref)"}},"id":6733,"indexExpression":{"id":6732,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6670,"src":"129929:4:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"129912:22:0","typeDescriptions":{"typeIdentifier":"t_struct$_CooldownSnapshot_$168_storage","typeString":"struct IStakedTokenV2.CooldownSnapshot storage ref"}},"id":6734,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"memberLocation":"129935:6:0","memberName":"amount","nodeType":"MemberAccess","referencedDeclaration":167,"src":"129912:29:0","typeDescriptions":{"typeIdentifier":"t_uint216","typeString":"uint216"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":6739,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":6737,"name":"balanceOfFrom","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6679,"src":"129952:13:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":6738,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6674,"src":"129968:6:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"129952:22:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6736,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"129944:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_uint216_$","typeString":"type(uint216)"},"typeName":{"id":6735,"name":"uint216","nodeType":"ElementaryTypeName","src":"129944:7:0","typeDescriptions":{}}},"id":6740,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"129944:31:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint216","typeString":"uint216"}},"src":"129912:63:0","typeDescriptions":{"typeIdentifier":"t_uint216","typeString":"uint216"}},"id":6742,"nodeType":"ExpressionStatement","src":"129912:63:0"}]}},"id":6745,"nodeType":"IfStatement","src":"129753:233:0","trueBody":{"id":6724,"nodeType":"Block","src":"129782:52:0","statements":[{"expression":{"id":6722,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"delete","prefix":true,"src":"129794:29:0","subExpression":{"baseExpression":{"id":6719,"name":"stakersCooldowns","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4677,"src":"129801:16:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_struct$_CooldownSnapshot_$168_storage_$","typeString":"mapping(address => struct IStakedTokenV2.CooldownSnapshot storage ref)"}},"id":6721,"indexExpression":{"id":6720,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6670,"src":"129818:4:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"129801:22:0","typeDescriptions":{"typeIdentifier":"t_struct$_CooldownSnapshot_$168_storage","typeString":"struct IStakedTokenV2.CooldownSnapshot storage ref"}},"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6723,"nodeType":"ExpressionStatement","src":"129794:29:0"}]}}]}}]}},{"expression":{"arguments":[{"id":6753,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6670,"src":"130022:4:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6754,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6672,"src":"130028:2:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6755,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6674,"src":"130032:6:0","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":6750,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"130006:5:0","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_StakedTokenV3_$6760_$","typeString":"type(contract super StakedTokenV3)"}},"id":6752,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"130012:9:0","memberName":"_transfer","nodeType":"MemberAccess","referencedDeclaration":844,"src":"130006:15:0","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":6756,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"130006:33:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6757,"nodeType":"ExpressionStatement","src":"130006:33:0"}]},"id":6759,"implemented":true,"kind":"function","modifiers":[],"name":"_transfer","nameLocation":"129168:9:0","nodeType":"FunctionDefinition","overrides":{"id":6676,"nodeType":"OverrideSpecifier","overrides":[],"src":"129245:8:0"},"parameters":{"id":6675,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6670,"mutability":"mutable","name":"from","nameLocation":"129191:4:0","nodeType":"VariableDeclaration","scope":6759,"src":"129183:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6669,"name":"address","nodeType":"ElementaryTypeName","src":"129183:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6672,"mutability":"mutable","name":"to","nameLocation":"129209:2:0","nodeType":"VariableDeclaration","scope":6759,"src":"129201:10:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6671,"name":"address","nodeType":"ElementaryTypeName","src":"129201:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6674,"mutability":"mutable","name":"amount","nameLocation":"129225:6:0","nodeType":"VariableDeclaration","scope":6759,"src":"129217:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6673,"name":"uint256","nodeType":"ElementaryTypeName","src":"129217:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"129177:58:0"},"returnParameters":{"id":6677,"nodeType":"ParameterList","parameters":[],"src":"129254:0:0"},"scope":6760,"src":"129159:885:0","stateMutability":"nonpayable","virtual":false,"visibility":"internal"}],"scope":7298,"src":"114302:15744:0","usedErrors":[],"usedEvents":[11,20,174,182,188,256,266,270,276,280,284,288,292,294,1098,1108,2487,2493,2501,5230,5236]},{"id":6761,"literals":["solidity","^","0.8",".0"],"nodeType":"PragmaDirective","src":"130140:23:0"},{"abstract":false,"baseContracts":[{"baseName":{"id":6763,"name":"StakedTokenV3","nameLocations":["130327:13:0"],"nodeType":"IdentifierPath","referencedDeclaration":6760,"src":"130327:13:0"},"id":6764,"nodeType":"InheritanceSpecifier","src":"130327:13:0"},{"baseName":{"id":6765,"name":"IStakedPSYSV3","nameLocations":["130342:13:0"],"nodeType":"IdentifierPath","referencedDeclaration":490,"src":"130342:13:0"},"id":6766,"nodeType":"InheritanceSpecifier","src":"130342:13:0"}],"canonicalName":"StakedPSYSV3","contractDependencies":[],"contractKind":"contract","documentation":{"id":6762,"nodeType":"StructuredDocumentation","src":"130172:129:0","text":" @title StakedPsysV3\n @notice StakedTokenV3 with WPSYS token as staked token\n @author BGD Labs, modified by Pegasys"},"fullyImplemented":true,"id":7297,"linearizedBaseContracts":[7297,490,6760,146,5419,417,5209,2972,4642,1906,1874,1167,1084,100,77,511,243],"name":"StakedPSYSV3","nameLocation":"130311:12:0","nodeType":"ContractDefinition","nodes":[{"global":false,"id":6769,"libraryName":{"id":6767,"name":"SafeCast","nameLocations":["130366:8:0"],"nodeType":"IdentifierPath","referencedDeclaration":4512,"src":"130366:8:0"},"nodeType":"UsingForDirective","src":"130360:27:0","typeName":{"id":6768,"name":"uint256","nodeType":"ElementaryTypeName","src":"130379:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}},{"constant":false,"id":6771,"mutability":"mutable","name":"_exchangeRateSnapshotsCount","nameLocation":"130407:27:0","nodeType":"VariableDeclaration","scope":7297,"src":"130391:43:0","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":6770,"name":"uint32","nodeType":"ElementaryTypeName","src":"130391:6:0","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"},{"constant":false,"documentation":{"id":6772,"nodeType":"StructuredDocumentation","src":"130438:59:0","text":"@notice Snapshots of the exchangeRate for a given block"},"id":6777,"mutability":"mutable","name":"_exchangeRateSnapshots","nameLocation":"130550:22:0","nodeType":"VariableDeclaration","scope":7297,"src":"130500:72:0","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_ExchangeRateSnapshot_$425_storage_$","typeString":"mapping(uint256 => struct IStakedPSYSV3.ExchangeRateSnapshot)"},"typeName":{"id":6776,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":6773,"name":"uint256","nodeType":"ElementaryTypeName","src":"130508:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Mapping","src":"130500:40:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_ExchangeRateSnapshot_$425_storage_$","typeString":"mapping(uint256 => struct IStakedPSYSV3.ExchangeRateSnapshot)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":6775,"nodeType":"UserDefinedTypeName","pathNode":{"id":6774,"name":"ExchangeRateSnapshot","nameLocations":["130519:20:0"],"nodeType":"IdentifierPath","referencedDeclaration":425,"src":"130519:20:0"},"referencedDeclaration":425,"src":"130519:20:0","typeDescriptions":{"typeIdentifier":"t_struct$_ExchangeRateSnapshot_$425_storage_ptr","typeString":"struct IStakedPSYSV3.ExchangeRateSnapshot"}}},"visibility":"internal"},{"constant":false,"documentation":{"id":6778,"nodeType":"StructuredDocumentation","src":"130577:70:0","text":"@notice GHO debt token to be used in the _beforeTokenTransfer hook"},"functionSelector":"174ed542","id":6781,"mutability":"mutable","name":"ghoDebtToken","nameLocation":"130691:12:0","nodeType":"VariableDeclaration","scope":7297,"src":"130650:53:0","stateVariable":true,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IGhoVariableDebtTokenTransferHook_$162","typeString":"contract IGhoVariableDebtTokenTransferHook"},"typeName":{"id":6780,"nodeType":"UserDefinedTypeName","pathNode":{"id":6779,"name":"IGhoVariableDebtTokenTransferHook","nameLocations":["130650:33:0"],"nodeType":"IdentifierPath","referencedDeclaration":162,"src":"130650:33:0"},"referencedDeclaration":162,"src":"130650:33:0","typeDescriptions":{"typeIdentifier":"t_contract$_IGhoVariableDebtTokenTransferHook_$162","typeString":"contract IGhoVariableDebtTokenTransferHook"}},"visibility":"public"},{"baseFunctions":[5572],"body":{"id":6789,"nodeType":"Block","src":"130775:19:0","statements":[{"expression":{"hexValue":"31","id":6787,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"130788:1:0","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"functionReturnParameters":6786,"id":6788,"nodeType":"Return","src":"130781:8:0"}]},"functionSelector":"dde43cba","id":6790,"implemented":true,"kind":"function","modifiers":[],"name":"REVISION","nameLocation":"130717:8:0","nodeType":"FunctionDefinition","overrides":{"id":6783,"nodeType":"OverrideSpecifier","overrides":[],"src":"130748:8:0"},"parameters":{"id":6782,"nodeType":"ParameterList","parameters":[],"src":"130725:2:0"},"returnParameters":{"id":6786,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6785,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6790,"src":"130766:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6784,"name":"uint256","nodeType":"ElementaryTypeName","src":"130766:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"130765:9:0"},"scope":7297,"src":"130708:86:0","stateMutability":"pure","virtual":true,"visibility":"public"},{"body":{"id":6820,"nodeType":"Block","src":"131134:71:0","statements":[{"expression":{"id":6818,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":6815,"name":"lastInitializedRevision","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4610,"src":"131164:23:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[],"expression":{"argumentTypes":[],"id":6816,"name":"REVISION","nodeType":"Identifier","overloadedDeclarations":[6790],"referencedDeclaration":6790,"src":"131190:8:0","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$__$returns$_t_uint256_$","typeString":"function () pure returns (uint256)"}},"id":6817,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"131190:10:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"131164:36:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":6819,"nodeType":"ExpressionStatement","src":"131164:36:0"}]},"id":6821,"implemented":true,"kind":"constructor","modifiers":[{"arguments":[{"id":6807,"name":"stakedToken","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6793,"src":"131003:11:0","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$77","typeString":"contract IERC20"}},{"id":6808,"name":"rewardToken","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6796,"src":"131022:11:0","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$77","typeString":"contract IERC20"}},{"id":6809,"name":"unstakeWindow","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6798,"src":"131041:13:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":6810,"name":"rewardsVault","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6800,"src":"131062:12:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6811,"name":"emissionManager","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6802,"src":"131082:15:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6812,"name":"distributionDuration","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6804,"src":"131105:20:0","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}}],"id":6813,"kind":"baseConstructorSpecifier","modifierName":{"id":6806,"name":"StakedTokenV3","nameLocations":["130982:13:0"],"nodeType":"IdentifierPath","referencedDeclaration":6760,"src":"130982:13:0"},"nodeType":"ModifierInvocation","src":"130982:149:0"}],"name":"","nameLocation":"-1:-1:-1","nodeType":"FunctionDefinition","parameters":{"id":6805,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6793,"mutability":"mutable","name":"stakedToken","nameLocation":"130822:11:0","nodeType":"VariableDeclaration","scope":6821,"src":"130815:18:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$77","typeString":"contract IERC20"},"typeName":{"id":6792,"nodeType":"UserDefinedTypeName","pathNode":{"id":6791,"name":"IERC20","nameLocations":["130815:6:0"],"nodeType":"IdentifierPath","referencedDeclaration":77,"src":"130815:6:0"},"referencedDeclaration":77,"src":"130815:6:0","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$77","typeString":"contract IERC20"}},"visibility":"internal"},{"constant":false,"id":6796,"mutability":"mutable","name":"rewardToken","nameLocation":"130846:11:0","nodeType":"VariableDeclaration","scope":6821,"src":"130839:18:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$77","typeString":"contract IERC20"},"typeName":{"id":6795,"nodeType":"UserDefinedTypeName","pathNode":{"id":6794,"name":"IERC20","nameLocations":["130839:6:0"],"nodeType":"IdentifierPath","referencedDeclaration":77,"src":"130839:6:0"},"referencedDeclaration":77,"src":"130839:6:0","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$77","typeString":"contract IERC20"}},"visibility":"internal"},{"constant":false,"id":6798,"mutability":"mutable","name":"unstakeWindow","nameLocation":"130871:13:0","nodeType":"VariableDeclaration","scope":6821,"src":"130863:21:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6797,"name":"uint256","nodeType":"ElementaryTypeName","src":"130863:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":6800,"mutability":"mutable","name":"rewardsVault","nameLocation":"130898:12:0","nodeType":"VariableDeclaration","scope":6821,"src":"130890:20:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6799,"name":"address","nodeType":"ElementaryTypeName","src":"130890:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6802,"mutability":"mutable","name":"emissionManager","nameLocation":"130924:15:0","nodeType":"VariableDeclaration","scope":6821,"src":"130916:23:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6801,"name":"address","nodeType":"ElementaryTypeName","src":"130916:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6804,"mutability":"mutable","name":"distributionDuration","nameLocation":"130953:20:0","nodeType":"VariableDeclaration","scope":6821,"src":"130945:28:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"},"typeName":{"id":6803,"name":"uint128","nodeType":"ElementaryTypeName","src":"130945:7:0","typeDescriptions":{"typeIdentifier":"t_uint128","typeString":"uint128"}},"visibility":"internal"}],"src":"130809:168:0"},"returnParameters":{"id":6814,"nodeType":"ParameterList","parameters":[],"src":"131134:0:0"},"scope":7297,"src":"130798:407:0","stateMutability":"nonpayable","virtual":false,"visibility":"public"},{"baseFunctions":[5608],"body":{"id":6860,"nodeType":"Block","src":"131463:288:0","statements":[{"expression":{"arguments":[{"id":6839,"name":"slashingAdmin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6824,"src":"131488:13:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6840,"name":"cooldownPauseAdmin","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6826,"src":"131509:18:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6841,"name":"claimHelper","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6828,"src":"131535:11:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6842,"name":"maxSlashablePercentage","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6830,"src":"131554:22:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":6843,"name":"cooldownSeconds","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6832,"src":"131584:15:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6838,"name":"_initialize","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5677,"src":"131469:11:0","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_address_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (address,address,address,uint256,uint256)"}},"id":6844,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"131469:136:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6845,"nodeType":"ExpressionStatement","src":"131469:136:0"},{"expression":{"arguments":[{"arguments":[{"id":6851,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"131721:4:0","typeDescriptions":{"typeIdentifier":"t_contract$_StakedPSYSV3_$7297","typeString":"contract StakedPSYSV3"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_StakedPSYSV3_$7297","typeString":"contract StakedPSYSV3"}],"id":6850,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"131713:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":6849,"name":"address","nodeType":"ElementaryTypeName","src":"131713:7:0","typeDescriptions":{}}},"id":6852,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"131713:13:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"expression":{"arguments":[{"id":6855,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"131733:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"},"typeName":{"id":6854,"name":"uint256","nodeType":"ElementaryTypeName","src":"131733:7:0","typeDescriptions":{}}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_type$_t_uint256_$","typeString":"type(uint256)"}],"id":6853,"name":"type","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-27,"src":"131728:4:0","typeDescriptions":{"typeIdentifier":"t_function_metatype_pure$__$returns$__$","typeString":"function () pure"}},"id":6856,"isConstant":false,"isLValue":false,"isPure":true,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"131728:13:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_magic_meta_type_t_uint256","typeString":"type(uint256)"}},"id":6857,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"131742:3:0","memberName":"max","nodeType":"MemberAccess","src":"131728:17:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":6846,"name":"STAKED_TOKEN","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4659,"src":"131692:12:0","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$77","typeString":"contract IERC20"}},"id":6848,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"131705:7:0","memberName":"approve","nodeType":"MemberAccess","referencedDeclaration":64,"src":"131692:20:0","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_uint256_$returns$_t_bool_$","typeString":"function (address,uint256) external returns (bool)"}},"id":6858,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"131692:54:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":6859,"nodeType":"ExpressionStatement","src":"131692:54:0"}]},"documentation":{"id":6822,"nodeType":"StructuredDocumentation","src":"131209:48:0","text":" @dev Called by the proxy contract"},"functionSelector":"a6b63eb8","id":6861,"implemented":true,"kind":"function","modifiers":[{"id":6836,"kind":"modifierInvocation","modifierName":{"id":6835,"name":"initializer","nameLocations":["131451:11:0"],"nodeType":"IdentifierPath","referencedDeclaration":4631,"src":"131451:11:0"},"nodeType":"ModifierInvocation","src":"131451:11:0"}],"name":"initialize","nameLocation":"131269:10:0","nodeType":"FunctionDefinition","overrides":{"id":6834,"nodeType":"OverrideSpecifier","overrides":[],"src":"131442:8:0"},"parameters":{"id":6833,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6824,"mutability":"mutable","name":"slashingAdmin","nameLocation":"131293:13:0","nodeType":"VariableDeclaration","scope":6861,"src":"131285:21:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6823,"name":"address","nodeType":"ElementaryTypeName","src":"131285:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6826,"mutability":"mutable","name":"cooldownPauseAdmin","nameLocation":"131320:18:0","nodeType":"VariableDeclaration","scope":6861,"src":"131312:26:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6825,"name":"address","nodeType":"ElementaryTypeName","src":"131312:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6828,"mutability":"mutable","name":"claimHelper","nameLocation":"131352:11:0","nodeType":"VariableDeclaration","scope":6861,"src":"131344:19:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6827,"name":"address","nodeType":"ElementaryTypeName","src":"131344:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6830,"mutability":"mutable","name":"maxSlashablePercentage","nameLocation":"131377:22:0","nodeType":"VariableDeclaration","scope":6861,"src":"131369:30:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6829,"name":"uint256","nodeType":"ElementaryTypeName","src":"131369:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":6832,"mutability":"mutable","name":"cooldownSeconds","nameLocation":"131413:15:0","nodeType":"VariableDeclaration","scope":6861,"src":"131405:23:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6831,"name":"uint256","nodeType":"ElementaryTypeName","src":"131405:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"131279:153:0"},"returnParameters":{"id":6837,"nodeType":"ParameterList","parameters":[],"src":"131463:0:0"},"scope":7297,"src":"131260:491:0","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"baseFunctions":[451],"body":{"id":6886,"nodeType":"Block","src":"131878:186:0","statements":[{"expression":{"arguments":[{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":6872,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":6869,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"131892:3:0","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":6870,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"131896:6:0","memberName":"sender","nodeType":"MemberAccess","src":"131892:10:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"hexValue":"307845453536653242334434393135393042356233313733386343333464353233324633373861384435","id":6871,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"131906:42:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"value":"0xEE56e2B3D491590B5b31738cC34d5232F378a8D5"},"src":"131892:56:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_bool","typeString":"bool"}],"id":6868,"name":"require","nodeType":"Identifier","overloadedDeclarations":[-18,-18,-18],"referencedDeclaration":-18,"src":"131884:7:0","typeDescriptions":{"typeIdentifier":"t_function_require_pure$_t_bool_$returns$__$","typeString":"function (bool) pure"}},"id":6873,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"131884:65:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6874,"nodeType":"ExpressionStatement","src":"131884:65:0"},{"expression":{"id":6877,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":6875,"name":"ghoDebtToken","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6781,"src":"131973:12:0","typeDescriptions":{"typeIdentifier":"t_contract$_IGhoVariableDebtTokenTransferHook_$162","typeString":"contract IGhoVariableDebtTokenTransferHook"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":6876,"name":"newGHODebtToken","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6865,"src":"131988:15:0","typeDescriptions":{"typeIdentifier":"t_contract$_IGhoVariableDebtTokenTransferHook_$162","typeString":"contract IGhoVariableDebtTokenTransferHook"}},"src":"131973:30:0","typeDescriptions":{"typeIdentifier":"t_contract$_IGhoVariableDebtTokenTransferHook_$162","typeString":"contract IGhoVariableDebtTokenTransferHook"}},"id":6878,"nodeType":"ExpressionStatement","src":"131973:30:0"},{"eventCall":{"arguments":[{"arguments":[{"id":6882,"name":"newGHODebtToken","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6865,"src":"132042:15:0","typeDescriptions":{"typeIdentifier":"t_contract$_IGhoVariableDebtTokenTransferHook_$162","typeString":"contract IGhoVariableDebtTokenTransferHook"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IGhoVariableDebtTokenTransferHook_$162","typeString":"contract IGhoVariableDebtTokenTransferHook"}],"id":6881,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"132034:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":6880,"name":"address","nodeType":"ElementaryTypeName","src":"132034:7:0","typeDescriptions":{}}},"id":6883,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"132034:24:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":6879,"name":"GHODebtTokenChanged","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":429,"src":"132014:19:0","typeDescriptions":{"typeIdentifier":"t_function_event_nonpayable$_t_address_$returns$__$","typeString":"function (address)"}},"id":6884,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"132014:45:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6885,"nodeType":"EmitStatement","src":"132009:50:0"}]},"documentation":{"id":6862,"nodeType":"StructuredDocumentation","src":"131755:29:0","text":"@inheritdoc IStakedPSYSV3"},"functionSelector":"4998fffd","id":6887,"implemented":true,"kind":"function","modifiers":[],"name":"setGHODebtToken","nameLocation":"131796:15:0","nodeType":"FunctionDefinition","parameters":{"id":6866,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6865,"mutability":"mutable","name":"newGHODebtToken","nameLocation":"131846:15:0","nodeType":"VariableDeclaration","scope":6887,"src":"131812:49:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IGhoVariableDebtTokenTransferHook_$162","typeString":"contract IGhoVariableDebtTokenTransferHook"},"typeName":{"id":6864,"nodeType":"UserDefinedTypeName","pathNode":{"id":6863,"name":"IGhoVariableDebtTokenTransferHook","nameLocations":["131812:33:0"],"nodeType":"IdentifierPath","referencedDeclaration":162,"src":"131812:33:0"},"referencedDeclaration":162,"src":"131812:33:0","typeDescriptions":{"typeIdentifier":"t_contract$_IGhoVariableDebtTokenTransferHook_$162","typeString":"contract IGhoVariableDebtTokenTransferHook"}},"visibility":"internal"}],"src":"131811:51:0"},"returnParameters":{"id":6867,"nodeType":"ParameterList","parameters":[],"src":"131878:0:0"},"scope":7297,"src":"131787:277:0","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"baseFunctions":[461],"body":{"id":6905,"nodeType":"Block","src":"132208:71:0","statements":[{"expression":{"arguments":[{"expression":{"id":6899,"name":"msg","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-15,"src":"132251:3:0","typeDescriptions":{"typeIdentifier":"t_magic_message","typeString":"msg"}},"id":6900,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"132255:6:0","memberName":"sender","nodeType":"MemberAccess","src":"132251:10:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6901,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6890,"src":"132263:2:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6902,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6892,"src":"132267:6:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6898,"name":"_claimRewardsAndStakeOnBehalf","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6375,"src":"132221:29:0","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$_t_uint256_$","typeString":"function (address,address,uint256) returns (uint256)"}},"id":6903,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"132221:53:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":6897,"id":6904,"nodeType":"Return","src":"132214:60:0"}]},"documentation":{"id":6888,"nodeType":"StructuredDocumentation","src":"132068:29:0","text":"@inheritdoc IStakedPSYSV3"},"functionSelector":"955e18af","id":6906,"implemented":true,"kind":"function","modifiers":[],"name":"claimRewardsAndStake","nameLocation":"132109:20:0","nodeType":"FunctionDefinition","overrides":{"id":6894,"nodeType":"OverrideSpecifier","overrides":[],"src":"132175:8:0"},"parameters":{"id":6893,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6890,"mutability":"mutable","name":"to","nameLocation":"132138:2:0","nodeType":"VariableDeclaration","scope":6906,"src":"132130:10:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6889,"name":"address","nodeType":"ElementaryTypeName","src":"132130:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6892,"mutability":"mutable","name":"amount","nameLocation":"132150:6:0","nodeType":"VariableDeclaration","scope":6906,"src":"132142:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6891,"name":"uint256","nodeType":"ElementaryTypeName","src":"132142:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"132129:28:0"},"returnParameters":{"id":6897,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6896,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6906,"src":"132197:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6895,"name":"uint256","nodeType":"ElementaryTypeName","src":"132197:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"132196:9:0"},"scope":7297,"src":"132100:179:0","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"baseFunctions":[473],"body":{"id":6927,"nodeType":"Block","src":"132463:65:0","statements":[{"expression":{"arguments":[{"id":6922,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6909,"src":"132506:4:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6923,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6911,"src":"132512:2:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6924,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6913,"src":"132516:6:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6921,"name":"_claimRewardsAndStakeOnBehalf","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6375,"src":"132476:29:0","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$_t_uint256_$","typeString":"function (address,address,uint256) returns (uint256)"}},"id":6925,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"132476:47:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":6920,"id":6926,"nodeType":"Return","src":"132469:54:0"}]},"documentation":{"id":6907,"nodeType":"StructuredDocumentation","src":"132283:29:0","text":"@inheritdoc IStakedPSYSV3"},"functionSelector":"c18f539a","id":6928,"implemented":true,"kind":"function","modifiers":[{"id":6917,"kind":"modifierInvocation","modifierName":{"id":6916,"name":"onlyClaimHelper","nameLocations":["132429:15:0"],"nodeType":"IdentifierPath","referencedDeclaration":5515,"src":"132429:15:0"},"nodeType":"ModifierInvocation","src":"132429:15:0"}],"name":"claimRewardsAndStakeOnBehalf","nameLocation":"132324:28:0","nodeType":"FunctionDefinition","overrides":{"id":6915,"nodeType":"OverrideSpecifier","overrides":[],"src":"132420:8:0"},"parameters":{"id":6914,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6909,"mutability":"mutable","name":"from","nameLocation":"132366:4:0","nodeType":"VariableDeclaration","scope":6928,"src":"132358:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6908,"name":"address","nodeType":"ElementaryTypeName","src":"132358:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6911,"mutability":"mutable","name":"to","nameLocation":"132384:2:0","nodeType":"VariableDeclaration","scope":6928,"src":"132376:10:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6910,"name":"address","nodeType":"ElementaryTypeName","src":"132376:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6913,"mutability":"mutable","name":"amount","nameLocation":"132400:6:0","nodeType":"VariableDeclaration","scope":6928,"src":"132392:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6912,"name":"uint256","nodeType":"ElementaryTypeName","src":"132392:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"132352:58:0"},"returnParameters":{"id":6920,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6919,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6928,"src":"132454:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6918,"name":"uint256","nodeType":"ElementaryTypeName","src":"132454:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"132453:9:0"},"scope":7297,"src":"132315:213:0","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"baseFunctions":[489],"body":{"id":6970,"nodeType":"Block","src":"132714:185:0","statements":[{"expression":{"arguments":[{"id":6952,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6931,"src":"132774:4:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":6955,"name":"this","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-28,"src":"132794:4:0","typeDescriptions":{"typeIdentifier":"t_contract$_StakedPSYSV3_$7297","typeString":"contract StakedPSYSV3"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_StakedPSYSV3_$7297","typeString":"contract StakedPSYSV3"}],"id":6954,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"132786:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":6953,"name":"address","nodeType":"ElementaryTypeName","src":"132786:7:0","typeDescriptions":{}}},"id":6956,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"132786:13:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6957,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6933,"src":"132807:6:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":6958,"name":"deadline","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6935,"src":"132821:8:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":6959,"name":"v","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6937,"src":"132837:1:0","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},{"id":6960,"name":"r","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6939,"src":"132846:1:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},{"id":6961,"name":"s","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6941,"src":"132855:1:0","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":[{"arguments":[{"id":6948,"name":"STAKED_TOKEN","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4659,"src":"132745:12:0","typeDescriptions":{"typeIdentifier":"t_contract$_IERC20_$77","typeString":"contract IERC20"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IERC20_$77","typeString":"contract IERC20"}],"id":6947,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"132737:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":6946,"name":"address","nodeType":"ElementaryTypeName","src":"132737:7:0","typeDescriptions":{}}},"id":6949,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"132737:21:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":6945,"name":"IERC20WithPermit","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":121,"src":"132720:16:0","typeDescriptions":{"typeIdentifier":"t_type$_t_contract$_IERC20WithPermit_$121_$","typeString":"type(contract IERC20WithPermit)"}},"id":6950,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"132720:39:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_contract$_IERC20WithPermit_$121","typeString":"contract IERC20WithPermit"}},"id":6951,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"132760:6:0","memberName":"permit","nodeType":"MemberAccess","referencedDeclaration":120,"src":"132720:46:0","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":6962,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"132720:142:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6963,"nodeType":"ExpressionStatement","src":"132720:142:0"},{"expression":{"arguments":[{"id":6965,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6931,"src":"132875:4:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6966,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6931,"src":"132881:4:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":6967,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6933,"src":"132887:6:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":6964,"name":"_stake","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6467,"src":"132868:6:0","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256)"}},"id":6968,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"132868:26:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":6969,"nodeType":"ExpressionStatement","src":"132868:26:0"}]},"documentation":{"id":6929,"nodeType":"StructuredDocumentation","src":"132532:29:0","text":"@inheritdoc IStakedPSYSV3"},"functionSelector":"73d6a889","id":6971,"implemented":true,"kind":"function","modifiers":[],"name":"stakeWithPermit","nameLocation":"132573:15:0","nodeType":"FunctionDefinition","overrides":{"id":6943,"nodeType":"OverrideSpecifier","overrides":[],"src":"132705:8:0"},"parameters":{"id":6942,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6931,"mutability":"mutable","name":"from","nameLocation":"132602:4:0","nodeType":"VariableDeclaration","scope":6971,"src":"132594:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6930,"name":"address","nodeType":"ElementaryTypeName","src":"132594:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6933,"mutability":"mutable","name":"amount","nameLocation":"132620:6:0","nodeType":"VariableDeclaration","scope":6971,"src":"132612:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6932,"name":"uint256","nodeType":"ElementaryTypeName","src":"132612:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":6935,"mutability":"mutable","name":"deadline","nameLocation":"132640:8:0","nodeType":"VariableDeclaration","scope":6971,"src":"132632:16:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":6934,"name":"uint256","nodeType":"ElementaryTypeName","src":"132632:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":6937,"mutability":"mutable","name":"v","nameLocation":"132660:1:0","nodeType":"VariableDeclaration","scope":6971,"src":"132654:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"},"typeName":{"id":6936,"name":"uint8","nodeType":"ElementaryTypeName","src":"132654:5:0","typeDescriptions":{"typeIdentifier":"t_uint8","typeString":"uint8"}},"visibility":"internal"},{"constant":false,"id":6939,"mutability":"mutable","name":"r","nameLocation":"132675:1:0","nodeType":"VariableDeclaration","scope":6971,"src":"132667:9:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":6938,"name":"bytes32","nodeType":"ElementaryTypeName","src":"132667:7:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"},{"constant":false,"id":6941,"mutability":"mutable","name":"s","nameLocation":"132690:1:0","nodeType":"VariableDeclaration","scope":6971,"src":"132682:9:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"},"typeName":{"id":6940,"name":"bytes32","nodeType":"ElementaryTypeName","src":"132682:7:0","typeDescriptions":{"typeIdentifier":"t_bytes32","typeString":"bytes32"}},"visibility":"internal"}],"src":"132588:107:0"},"returnParameters":{"id":6944,"nodeType":"ParameterList","parameters":[],"src":"132714:0:0"},"scope":7297,"src":"132564:335:0","stateMutability":"nonpayable","virtual":false,"visibility":"external"},{"baseFunctions":[435],"body":{"id":6979,"nodeType":"Block","src":"133007:45:0","statements":[{"expression":{"id":6977,"name":"_exchangeRateSnapshotsCount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6771,"src":"133020:27:0","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"functionReturnParameters":6976,"id":6978,"nodeType":"Return","src":"133013:34:0"}]},"documentation":{"id":6972,"nodeType":"StructuredDocumentation","src":"132903:29:0","text":"@inheritdoc IStakedPSYSV3"},"functionSelector":"60ba192b","id":6980,"implemented":true,"kind":"function","modifiers":[],"name":"getExchangeRateSnapshotsCount","nameLocation":"132944:29:0","nodeType":"FunctionDefinition","parameters":{"id":6973,"nodeType":"ParameterList","parameters":[],"src":"132973:2:0"},"returnParameters":{"id":6976,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6975,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6980,"src":"132999:6:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":6974,"name":"uint32","nodeType":"ElementaryTypeName","src":"132999:6:0","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"132998:8:0"},"scope":7297,"src":"132935:117:0","stateMutability":"view","virtual":false,"visibility":"external"},{"baseFunctions":[444],"body":{"id":6993,"nodeType":"Block","src":"133201:47:0","statements":[{"expression":{"baseExpression":{"id":6989,"name":"_exchangeRateSnapshots","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6777,"src":"133214:22:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_ExchangeRateSnapshot_$425_storage_$","typeString":"mapping(uint256 => struct IStakedPSYSV3.ExchangeRateSnapshot storage ref)"}},"id":6991,"indexExpression":{"id":6990,"name":"index","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6983,"src":"133237:5:0","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"133214:29:0","typeDescriptions":{"typeIdentifier":"t_struct$_ExchangeRateSnapshot_$425_storage","typeString":"struct IStakedPSYSV3.ExchangeRateSnapshot storage ref"}},"functionReturnParameters":6988,"id":6992,"nodeType":"Return","src":"133207:36:0"}]},"documentation":{"id":6981,"nodeType":"StructuredDocumentation","src":"133056:29:0","text":"@inheritdoc IStakedPSYSV3"},"functionSelector":"8ef98e0e","id":6994,"implemented":true,"kind":"function","modifiers":[],"name":"getExchangeRateSnapshot","nameLocation":"133097:23:0","nodeType":"FunctionDefinition","parameters":{"id":6984,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6983,"mutability":"mutable","name":"index","nameLocation":"133128:5:0","nodeType":"VariableDeclaration","scope":6994,"src":"133121:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"},"typeName":{"id":6982,"name":"uint32","nodeType":"ElementaryTypeName","src":"133121:6:0","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"visibility":"internal"}],"src":"133120:14:0"},"returnParameters":{"id":6988,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6987,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":6994,"src":"133170:27:0","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_ExchangeRateSnapshot_$425_memory_ptr","typeString":"struct IStakedPSYSV3.ExchangeRateSnapshot"},"typeName":{"id":6986,"nodeType":"UserDefinedTypeName","pathNode":{"id":6985,"name":"ExchangeRateSnapshot","nameLocations":["133170:20:0"],"nodeType":"IdentifierPath","referencedDeclaration":425,"src":"133170:20:0"},"referencedDeclaration":425,"src":"133170:20:0","typeDescriptions":{"typeIdentifier":"t_struct$_ExchangeRateSnapshot_$425_storage_ptr","typeString":"struct IStakedPSYSV3.ExchangeRateSnapshot"}},"visibility":"internal"}],"src":"133169:29:0"},"scope":7297,"src":"133088:160:0","stateMutability":"view","virtual":false,"visibility":"external"},{"baseFunctions":[1072],"body":{"id":7129,"nodeType":"Block","src":"133709:1216:0","statements":[{"assignments":[7007],"declarations":[{"constant":false,"id":7007,"mutability":"mutable","name":"cachedGhoDebtToken","nameLocation":"133749:18:0","nodeType":"VariableDeclaration","scope":7129,"src":"133715:52:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_contract$_IGhoVariableDebtTokenTransferHook_$162","typeString":"contract IGhoVariableDebtTokenTransferHook"},"typeName":{"id":7006,"nodeType":"UserDefinedTypeName","pathNode":{"id":7005,"name":"IGhoVariableDebtTokenTransferHook","nameLocations":["133715:33:0"],"nodeType":"IdentifierPath","referencedDeclaration":162,"src":"133715:33:0"},"referencedDeclaration":162,"src":"133715:33:0","typeDescriptions":{"typeIdentifier":"t_contract$_IGhoVariableDebtTokenTransferHook_$162","typeString":"contract IGhoVariableDebtTokenTransferHook"}},"visibility":"internal"}],"id":7009,"initialValue":{"id":7008,"name":"ghoDebtToken","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6781,"src":"133770:12:0","typeDescriptions":{"typeIdentifier":"t_contract$_IGhoVariableDebtTokenTransferHook_$162","typeString":"contract IGhoVariableDebtTokenTransferHook"}},"nodeType":"VariableDeclarationStatement","src":"133715:67:0"},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":7018,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":7012,"name":"cachedGhoDebtToken","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7007,"src":"133800:18:0","typeDescriptions":{"typeIdentifier":"t_contract$_IGhoVariableDebtTokenTransferHook_$162","typeString":"contract IGhoVariableDebtTokenTransferHook"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_contract$_IGhoVariableDebtTokenTransferHook_$162","typeString":"contract IGhoVariableDebtTokenTransferHook"}],"id":7011,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"133792:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":7010,"name":"address","nodeType":"ElementaryTypeName","src":"133792:7:0","typeDescriptions":{}}},"id":7013,"isConstant":false,"isLValue":false,"isPure":false,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"133792:27:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"!=","rightExpression":{"arguments":[{"hexValue":"30","id":7016,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"133831:1:0","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":7015,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"133823:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":7014,"name":"address","nodeType":"ElementaryTypeName","src":"133823:7:0","typeDescriptions":{}}},"id":7017,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"133823:10:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"133792:41:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7040,"nodeType":"IfStatement","src":"133788:261:0","trueBody":{"id":7039,"nodeType":"Block","src":"133835:214:0","statements":[{"clauses":[{"block":{"id":7031,"nodeType":"Block","src":"134017:2:0","statements":[]},"errorName":"","id":7032,"nodeType":"TryCatchClause","src":"134017:2:0"},{"block":{"id":7036,"nodeType":"Block","src":"134041:2:0","statements":[]},"errorName":"","id":7037,"nodeType":"TryCatchClause","parameters":{"id":7035,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7034,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7037,"src":"134027:12:0","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_bytes_memory_ptr","typeString":"bytes"},"typeName":{"id":7033,"name":"bytes","nodeType":"ElementaryTypeName","src":"134027:5:0","typeDescriptions":{"typeIdentifier":"t_bytes_storage_ptr","typeString":"bytes"}},"visibility":"internal"}],"src":"134026:14:0"},"src":"134020:23:0"}],"externalCall":{"arguments":[{"id":7021,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6997,"src":"133912:4:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":7022,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6999,"src":"133928:2:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"arguments":[{"id":7024,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6997,"src":"133952:4:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":7023,"name":"balanceOf","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":596,"src":"133942:9:0","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view returns (uint256)"}},"id":7025,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"133942:15:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"arguments":[{"id":7027,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6999,"src":"133979:2:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"}],"id":7026,"name":"balanceOf","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":596,"src":"133969:9:0","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_address_$returns$_t_uint256_$","typeString":"function (address) view returns (uint256)"}},"id":7028,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"133969:13:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"id":7029,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7001,"src":"133994:6:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"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":7019,"name":"cachedGhoDebtToken","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7007,"src":"133855:18:0","typeDescriptions":{"typeIdentifier":"t_contract$_IGhoVariableDebtTokenTransferHook_$162","typeString":"contract IGhoVariableDebtTokenTransferHook"}},"id":7020,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"133874:26:0","memberName":"updateDiscountDistribution","nodeType":"MemberAccess","referencedDeclaration":161,"src":"133855:45:0","typeDescriptions":{"typeIdentifier":"t_function_external_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_uint256_$_t_uint256_$returns$__$","typeString":"function (address,address,uint256,uint256,uint256) external"}},"id":7030,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"133855:155:0","tryCall":true,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":7038,"nodeType":"TryStatement","src":"133843:200:0"}]}},{"assignments":[7042],"declarations":[{"constant":false,"id":7042,"mutability":"mutable","name":"votingFromDelegatee","nameLocation":"134062:19:0","nodeType":"VariableDeclaration","scope":7129,"src":"134054:27:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":7041,"name":"address","nodeType":"ElementaryTypeName","src":"134054:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":7046,"initialValue":{"baseExpression":{"id":7043,"name":"_votingDelegates","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4682,"src":"134084:16:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_address_$","typeString":"mapping(address => address)"}},"id":7045,"indexExpression":{"id":7044,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6997,"src":"134101:4:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"134084:22:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"134054:52:0"},{"assignments":[7048],"declarations":[{"constant":false,"id":7048,"mutability":"mutable","name":"votingToDelegatee","nameLocation":"134120:17:0","nodeType":"VariableDeclaration","scope":7129,"src":"134112:25:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":7047,"name":"address","nodeType":"ElementaryTypeName","src":"134112:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":7052,"initialValue":{"baseExpression":{"id":7049,"name":"_votingDelegates","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4682,"src":"134140:16:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_address_$","typeString":"mapping(address => address)"}},"id":7051,"indexExpression":{"id":7050,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6999,"src":"134157:2:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"134140:20:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"134112:48:0"},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":7058,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7053,"name":"votingFromDelegatee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7042,"src":"134171:19:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":7056,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"134202:1:0","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":7055,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"134194:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":7054,"name":"address","nodeType":"ElementaryTypeName","src":"134194:7:0","typeDescriptions":{}}},"id":7057,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"134194:10:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"134171:33:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7064,"nodeType":"IfStatement","src":"134167:80:0","trueBody":{"id":7063,"nodeType":"Block","src":"134206:41:0","statements":[{"expression":{"id":7061,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":7059,"name":"votingFromDelegatee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7042,"src":"134214:19:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":7060,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6997,"src":"134236:4:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"134214:26:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":7062,"nodeType":"ExpressionStatement","src":"134214:26:0"}]}},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":7070,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7065,"name":"votingToDelegatee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7048,"src":"134256:17:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":7068,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"134285:1:0","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":7067,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"134277:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":7066,"name":"address","nodeType":"ElementaryTypeName","src":"134277:7:0","typeDescriptions":{}}},"id":7069,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"134277:10:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"134256:31:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7076,"nodeType":"IfStatement","src":"134252:74:0","trueBody":{"id":7075,"nodeType":"Block","src":"134289:37:0","statements":[{"expression":{"id":7073,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":7071,"name":"votingToDelegatee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7048,"src":"134297:17:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":7072,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6999,"src":"134317:2:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"134297:22:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":7074,"nodeType":"ExpressionStatement","src":"134297:22:0"}]}},{"expression":{"arguments":[{"id":7078,"name":"votingFromDelegatee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7042,"src":"134360:19:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":7079,"name":"votingToDelegatee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7048,"src":"134387:17:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":7080,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7001,"src":"134412:6:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":7081,"name":"DelegationType","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1088,"src":"134426:14:0","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_DelegationType_$1088_$","typeString":"type(enum IGovernancePowerDelegationToken.DelegationType)"}},"id":7082,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"134441:12:0","memberName":"VOTING_POWER","nodeType":"MemberAccess","referencedDeclaration":1086,"src":"134426:27:0","typeDescriptions":{"typeIdentifier":"t_enum$_DelegationType_$1088","typeString":"enum IGovernancePowerDelegationToken.DelegationType"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_enum$_DelegationType_$1088","typeString":"enum IGovernancePowerDelegationToken.DelegationType"}],"id":7077,"name":"_moveDelegatesByType","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1572,"src":"134332:20:0","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_enum$_DelegationType_$1088_$returns$__$","typeString":"function (address,address,uint256,enum IGovernancePowerDelegationToken.DelegationType)"}},"id":7083,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"134332:127:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":7084,"nodeType":"ExpressionStatement","src":"134332:127:0"},{"assignments":[7086],"declarations":[{"constant":false,"id":7086,"mutability":"mutable","name":"propPowerFromDelegatee","nameLocation":"134474:22:0","nodeType":"VariableDeclaration","scope":7129,"src":"134466:30:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":7085,"name":"address","nodeType":"ElementaryTypeName","src":"134466:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":7090,"initialValue":{"baseExpression":{"id":7087,"name":"_propositionPowerDelegates","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4697,"src":"134499:26:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_address_$","typeString":"mapping(address => address)"}},"id":7089,"indexExpression":{"id":7088,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6997,"src":"134526:4:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"134499:32:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"134466:65:0"},{"assignments":[7092],"declarations":[{"constant":false,"id":7092,"mutability":"mutable","name":"propPowerToDelegatee","nameLocation":"134545:20:0","nodeType":"VariableDeclaration","scope":7129,"src":"134537:28:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":7091,"name":"address","nodeType":"ElementaryTypeName","src":"134537:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"}],"id":7096,"initialValue":{"baseExpression":{"id":7093,"name":"_propositionPowerDelegates","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":4697,"src":"134568:26:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_address_$","typeString":"mapping(address => address)"}},"id":7095,"indexExpression":{"id":7094,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6999,"src":"134595:2:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"134568:30:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"VariableDeclarationStatement","src":"134537:61:0"},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":7102,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7097,"name":"propPowerFromDelegatee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7086,"src":"134609:22:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":7100,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"134643:1:0","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":7099,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"134635:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":7098,"name":"address","nodeType":"ElementaryTypeName","src":"134635:7:0","typeDescriptions":{}}},"id":7101,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"134635:10:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"134609:36:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7108,"nodeType":"IfStatement","src":"134605:86:0","trueBody":{"id":7107,"nodeType":"Block","src":"134647:44:0","statements":[{"expression":{"id":7105,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":7103,"name":"propPowerFromDelegatee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7086,"src":"134655:22:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":7104,"name":"from","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6997,"src":"134680:4:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"134655:29:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":7106,"nodeType":"ExpressionStatement","src":"134655:29:0"}]}},{"condition":{"commonType":{"typeIdentifier":"t_address","typeString":"address"},"id":7114,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7109,"name":"propPowerToDelegatee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7092,"src":"134700:20:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"arguments":[{"hexValue":"30","id":7112,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"134732:1:0","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":7111,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"nodeType":"ElementaryTypeNameExpression","src":"134724:7:0","typeDescriptions":{"typeIdentifier":"t_type$_t_address_$","typeString":"type(address)"},"typeName":{"id":7110,"name":"address","nodeType":"ElementaryTypeName","src":"134724:7:0","typeDescriptions":{}}},"id":7113,"isConstant":false,"isLValue":false,"isPure":true,"kind":"typeConversion","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"134724:10:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"134700:34:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7120,"nodeType":"IfStatement","src":"134696:80:0","trueBody":{"id":7119,"nodeType":"Block","src":"134736:40:0","statements":[{"expression":{"id":7117,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":7115,"name":"propPowerToDelegatee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7092,"src":"134744:20:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":7116,"name":"to","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6999,"src":"134767:2:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"src":"134744:25:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"id":7118,"nodeType":"ExpressionStatement","src":"134744:25:0"}]}},{"expression":{"arguments":[{"id":7122,"name":"propPowerFromDelegatee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7086,"src":"134810:22:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":7123,"name":"propPowerToDelegatee","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7092,"src":"134840:20:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":7124,"name":"amount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7001,"src":"134868:6:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},{"expression":{"id":7125,"name":"DelegationType","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1088,"src":"134882:14:0","typeDescriptions":{"typeIdentifier":"t_type$_t_enum$_DelegationType_$1088_$","typeString":"type(enum IGovernancePowerDelegationToken.DelegationType)"}},"id":7126,"isConstant":false,"isLValue":false,"isPure":true,"lValueRequested":false,"memberLocation":"134897:17:0","memberName":"PROPOSITION_POWER","nodeType":"MemberAccess","referencedDeclaration":1087,"src":"134882:32:0","typeDescriptions":{"typeIdentifier":"t_enum$_DelegationType_$1088","typeString":"enum IGovernancePowerDelegationToken.DelegationType"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"},{"typeIdentifier":"t_enum$_DelegationType_$1088","typeString":"enum IGovernancePowerDelegationToken.DelegationType"}],"id":7121,"name":"_moveDelegatesByType","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":1572,"src":"134782:20:0","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_address_$_t_address_$_t_uint256_$_t_enum$_DelegationType_$1088_$returns$__$","typeString":"function (address,address,uint256,enum IGovernancePowerDelegationToken.DelegationType)"}},"id":7127,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"134782:138:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":7128,"nodeType":"ExpressionStatement","src":"134782:138:0"}]},"documentation":{"id":6995,"nodeType":"StructuredDocumentation","src":"133252:348:0","text":" @dev Writes a snapshot before any operation involving transfer of value: _transfer, _mint and _burn\n - On _transfer, it writes snapshots for both \"from\" and \"to\"\n - On _mint, only for _to\n - On _burn, only for _from\n @param from the from address\n @param to the to address\n @param amount the amount to transfer"},"id":7130,"implemented":true,"kind":"function","modifiers":[],"name":"_beforeTokenTransfer","nameLocation":"133612:20:0","nodeType":"FunctionDefinition","overrides":{"id":7003,"nodeType":"OverrideSpecifier","overrides":[],"src":"133700:8:0"},"parameters":{"id":7002,"nodeType":"ParameterList","parameters":[{"constant":false,"id":6997,"mutability":"mutable","name":"from","nameLocation":"133646:4:0","nodeType":"VariableDeclaration","scope":7130,"src":"133638:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6996,"name":"address","nodeType":"ElementaryTypeName","src":"133638:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":6999,"mutability":"mutable","name":"to","nameLocation":"133664:2:0","nodeType":"VariableDeclaration","scope":7130,"src":"133656:10:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":6998,"name":"address","nodeType":"ElementaryTypeName","src":"133656:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":7001,"mutability":"mutable","name":"amount","nameLocation":"133680:6:0","nodeType":"VariableDeclaration","scope":7130,"src":"133672:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7000,"name":"uint256","nodeType":"ElementaryTypeName","src":"133672:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"133632:58:0"},"returnParameters":{"id":7004,"nodeType":"ParameterList","parameters":[],"src":"133709:0:0"},"scope":7297,"src":"133603:1322:0","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"baseFunctions":[1637],"body":{"id":7169,"nodeType":"Block","src":"135291:292:0","statements":[{"expression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7167,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7160,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"arguments":[{"id":7154,"name":"snapshots","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7138,"src":"135347:9:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_uint256_$_t_struct$_Snapshot_$1190_storage_$_$","typeString":"mapping(address => mapping(uint256 => struct GovernancePowerDelegationERC20.Snapshot storage ref))"}},{"id":7155,"name":"snapshotsCounts","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7142,"src":"135366:15:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"}},{"id":7156,"name":"user","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7144,"src":"135391:4:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},{"id":7157,"name":"blockNumber","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7146,"src":"135405:11:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_uint256_$_t_struct$_Snapshot_$1190_storage_$_$","typeString":"mapping(address => mapping(uint256 => struct GovernancePowerDelegationERC20.Snapshot storage ref))"},{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},{"typeIdentifier":"t_address","typeString":"address"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"expression":{"id":7152,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"135311:5:0","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_StakedPSYSV3_$7297_$","typeString":"type(contract super StakedPSYSV3)"}},"id":7153,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"135317:20:0","memberName":"_searchByBlockNumber","nodeType":"MemberAccess","referencedDeclaration":1637,"src":"135311:26:0","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_mapping$_t_address_$_t_mapping$_t_uint256_$_t_struct$_Snapshot_$1190_storage_$_$_$_t_mapping$_t_address_$_t_uint256_$_$_t_address_$_t_uint256_$returns$_t_uint256_$","typeString":"function (mapping(address => mapping(uint256 => struct GovernancePowerDelegationERC20.Snapshot storage ref)),mapping(address => uint256),address,uint256) view returns (uint256)"}},"id":7158,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"135311:113:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"*","rightExpression":{"id":7159,"name":"EXCHANGE_RATE_UNIT","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":5454,"src":"135427:18:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"135311:134:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":7161,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"135310:136:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"arguments":[{"id":7163,"name":"_exchangeRateSnapshots","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6777,"src":"135490:22:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_ExchangeRateSnapshot_$425_storage_$","typeString":"mapping(uint256 => struct IStakedPSYSV3.ExchangeRateSnapshot storage ref)"}},{"id":7164,"name":"_exchangeRateSnapshotsCount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6771,"src":"135522:27:0","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},{"id":7165,"name":"blockNumber","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7146,"src":"135559:11:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_ExchangeRateSnapshot_$425_storage_$","typeString":"mapping(uint256 => struct IStakedPSYSV3.ExchangeRateSnapshot storage ref)"},{"typeIdentifier":"t_uint32","typeString":"uint32"},{"typeIdentifier":"t_uint256","typeString":"uint256"}],"id":7162,"name":"_binarySearchExchangeRate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7296,"src":"135455:25:0","typeDescriptions":{"typeIdentifier":"t_function_internal_view$_t_mapping$_t_uint256_$_t_struct$_ExchangeRateSnapshot_$425_storage_$_$_t_uint256_$_t_uint256_$returns$_t_uint256_$","typeString":"function (mapping(uint256 => struct IStakedPSYSV3.ExchangeRateSnapshot storage ref),uint256,uint256) view returns (uint256)"}},"id":7166,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"135455:123:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"135310:268:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"functionReturnParameters":7151,"id":7168,"nodeType":"Return","src":"135297:281:0"}]},"documentation":{"id":7131,"nodeType":"StructuredDocumentation","src":"134929:112:0","text":"@dev Modified version accounting for exchange rate at block\n @inheritdoc GovernancePowerDelegationERC20"},"id":7170,"implemented":true,"kind":"function","modifiers":[],"name":"_searchByBlockNumber","nameLocation":"135053:20:0","nodeType":"FunctionDefinition","overrides":{"id":7148,"nodeType":"OverrideSpecifier","overrides":[],"src":"135264:8:0"},"parameters":{"id":7147,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7138,"mutability":"mutable","name":"snapshots","nameLocation":"135136:9:0","nodeType":"VariableDeclaration","scope":7170,"src":"135079:66:0","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_uint256_$_t_struct$_Snapshot_$1190_storage_$_$","typeString":"mapping(address => mapping(uint256 => struct GovernancePowerDelegationERC20.Snapshot))"},"typeName":{"id":7137,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":7132,"name":"address","nodeType":"ElementaryTypeName","src":"135087:7:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"135079:48:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_mapping$_t_uint256_$_t_struct$_Snapshot_$1190_storage_$_$","typeString":"mapping(address => mapping(uint256 => struct GovernancePowerDelegationERC20.Snapshot))"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":7136,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":7133,"name":"uint256","nodeType":"ElementaryTypeName","src":"135106:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Mapping","src":"135098:28:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_Snapshot_$1190_storage_$","typeString":"mapping(uint256 => struct GovernancePowerDelegationERC20.Snapshot)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":7135,"nodeType":"UserDefinedTypeName","pathNode":{"id":7134,"name":"Snapshot","nameLocations":["135117:8:0"],"nodeType":"IdentifierPath","referencedDeclaration":1190,"src":"135117:8:0"},"referencedDeclaration":1190,"src":"135117:8:0","typeDescriptions":{"typeIdentifier":"t_struct$_Snapshot_$1190_storage_ptr","typeString":"struct GovernancePowerDelegationERC20.Snapshot"}}}},"visibility":"internal"},{"constant":false,"id":7142,"mutability":"mutable","name":"snapshotsCounts","nameLocation":"135187:15:0","nodeType":"VariableDeclaration","scope":7170,"src":"135151:51:0","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"typeName":{"id":7141,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":7139,"name":"address","nodeType":"ElementaryTypeName","src":"135159:7:0","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"nodeType":"Mapping","src":"135151:27:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_address_$_t_uint256_$","typeString":"mapping(address => uint256)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":7140,"name":"uint256","nodeType":"ElementaryTypeName","src":"135170:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}},"visibility":"internal"},{"constant":false,"id":7144,"mutability":"mutable","name":"user","nameLocation":"135216:4:0","nodeType":"VariableDeclaration","scope":7170,"src":"135208:12:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"},"typeName":{"id":7143,"name":"address","nodeType":"ElementaryTypeName","src":"135208:7:0","stateMutability":"nonpayable","typeDescriptions":{"typeIdentifier":"t_address","typeString":"address"}},"visibility":"internal"},{"constant":false,"id":7146,"mutability":"mutable","name":"blockNumber","nameLocation":"135234:11:0","nodeType":"VariableDeclaration","scope":7170,"src":"135226:19:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7145,"name":"uint256","nodeType":"ElementaryTypeName","src":"135226:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"135073:176:0"},"returnParameters":{"id":7151,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7150,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7170,"src":"135282:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7149,"name":"uint256","nodeType":"ElementaryTypeName","src":"135282:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"135281:9:0"},"scope":7297,"src":"135044:539:0","stateMutability":"view","virtual":false,"visibility":"internal"},{"baseFunctions":[6642],"body":{"id":7198,"nodeType":"Block","src":"135785:228:0","statements":[{"expression":{"id":7187,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"baseExpression":{"id":7177,"name":"_exchangeRateSnapshots","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6777,"src":"135791:22:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_ExchangeRateSnapshot_$425_storage_$","typeString":"mapping(uint256 => struct IStakedPSYSV3.ExchangeRateSnapshot storage ref)"}},"id":7179,"indexExpression":{"id":7178,"name":"_exchangeRateSnapshotsCount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6771,"src":"135814:27:0","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":true,"nodeType":"IndexAccess","src":"135791:51:0","typeDescriptions":{"typeIdentifier":"t_struct$_ExchangeRateSnapshot_$425_storage","typeString":"struct IStakedPSYSV3.ExchangeRateSnapshot storage ref"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"arguments":[{"arguments":[],"expression":{"argumentTypes":[],"expression":{"expression":{"id":7181,"name":"block","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-4,"src":"135873:5:0","typeDescriptions":{"typeIdentifier":"t_magic_block","typeString":"block"}},"id":7182,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"135879:6:0","memberName":"number","nodeType":"MemberAccess","src":"135873:12:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":7183,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"135886:8:0","memberName":"toUint40","nodeType":"MemberAccess","referencedDeclaration":3649,"src":"135873:21:0","typeDescriptions":{"typeIdentifier":"t_function_internal_pure$_t_uint256_$returns$_t_uint40_$attached_to$_t_uint256_$","typeString":"function (uint256) pure returns (uint40)"}},"id":7184,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"135873:23:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},{"id":7185,"name":"newExchangeRate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7173,"src":"135904:15:0","typeDescriptions":{"typeIdentifier":"t_uint216","typeString":"uint216"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint40","typeString":"uint40"},{"typeIdentifier":"t_uint216","typeString":"uint216"}],"id":7180,"name":"ExchangeRateSnapshot","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":425,"src":"135845:20:0","typeDescriptions":{"typeIdentifier":"t_type$_t_struct$_ExchangeRateSnapshot_$425_storage_ptr_$","typeString":"type(struct IStakedPSYSV3.ExchangeRateSnapshot storage pointer)"}},"id":7186,"isConstant":false,"isLValue":false,"isPure":false,"kind":"structConstructorCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"135845:80:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_struct$_ExchangeRateSnapshot_$425_memory_ptr","typeString":"struct IStakedPSYSV3.ExchangeRateSnapshot memory"}},"src":"135791:134:0","typeDescriptions":{"typeIdentifier":"t_struct$_ExchangeRateSnapshot_$425_storage","typeString":"struct IStakedPSYSV3.ExchangeRateSnapshot storage ref"}},"id":7188,"nodeType":"ExpressionStatement","src":"135791:134:0"},{"expression":{"id":7190,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"UnaryOperation","operator":"++","prefix":true,"src":"135931:29:0","subExpression":{"id":7189,"name":"_exchangeRateSnapshotsCount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":6771,"src":"135933:27:0","typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"typeDescriptions":{"typeIdentifier":"t_uint32","typeString":"uint32"}},"id":7191,"nodeType":"ExpressionStatement","src":"135931:29:0"},{"expression":{"arguments":[{"id":7195,"name":"newExchangeRate","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7173,"src":"135992:15:0","typeDescriptions":{"typeIdentifier":"t_uint216","typeString":"uint216"}}],"expression":{"argumentTypes":[{"typeIdentifier":"t_uint216","typeString":"uint216"}],"expression":{"id":7192,"name":"super","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":-25,"src":"135966:5:0","typeDescriptions":{"typeIdentifier":"t_type$_t_super$_StakedPSYSV3_$7297_$","typeString":"type(contract super StakedPSYSV3)"}},"id":7194,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"memberLocation":"135972:19:0","memberName":"_updateExchangeRate","nodeType":"MemberAccess","referencedDeclaration":6642,"src":"135966:25:0","typeDescriptions":{"typeIdentifier":"t_function_internal_nonpayable$_t_uint216_$returns$__$","typeString":"function (uint216)"}},"id":7196,"isConstant":false,"isLValue":false,"isPure":false,"kind":"functionCall","lValueRequested":false,"nameLocations":[],"names":[],"nodeType":"FunctionCall","src":"135966:42:0","tryCall":false,"typeDescriptions":{"typeIdentifier":"t_tuple$__$","typeString":"tuple()"}},"id":7197,"nodeType":"ExpressionStatement","src":"135966:42:0"}]},"documentation":{"id":7171,"nodeType":"StructuredDocumentation","src":"135587:123:0","text":" @dev Updates the exchangeRate and emits events accordingly\n @param newExchangeRate the new exchange rate"},"id":7199,"implemented":true,"kind":"function","modifiers":[],"name":"_updateExchangeRate","nameLocation":"135722:19:0","nodeType":"FunctionDefinition","overrides":{"id":7175,"nodeType":"OverrideSpecifier","overrides":[],"src":"135776:8:0"},"parameters":{"id":7174,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7173,"mutability":"mutable","name":"newExchangeRate","nameLocation":"135750:15:0","nodeType":"VariableDeclaration","scope":7199,"src":"135742:23:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint216","typeString":"uint216"},"typeName":{"id":7172,"name":"uint216","nodeType":"ElementaryTypeName","src":"135742:7:0","typeDescriptions":{"typeIdentifier":"t_uint216","typeString":"uint216"}},"visibility":"internal"}],"src":"135741:25:0"},"returnParameters":{"id":7176,"nodeType":"ParameterList","parameters":[],"src":"135785:0:0"},"scope":7297,"src":"135713:300:0","stateMutability":"nonpayable","virtual":false,"visibility":"internal"},{"body":{"id":7295,"nodeType":"Block","src":"136205:712:0","statements":[{"id":7294,"nodeType":"UncheckedBlock","src":"136211:702:0","statements":[{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7220,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"baseExpression":{"id":7213,"name":"snapshots","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7204,"src":"136274:9:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_ExchangeRateSnapshot_$425_storage_$","typeString":"mapping(uint256 => struct IStakedPSYSV3.ExchangeRateSnapshot storage ref)"}},"id":7217,"indexExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7216,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7214,"name":"snapshotsCount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7206,"src":"136284:14:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":7215,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"136301:1:0","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"136284:18:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"136274:29:0","typeDescriptions":{"typeIdentifier":"t_struct$_ExchangeRateSnapshot_$425_storage","typeString":"struct IStakedPSYSV3.ExchangeRateSnapshot storage ref"}},"id":7218,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"136304:11:0","memberName":"blockNumber","nodeType":"MemberAccess","referencedDeclaration":422,"src":"136274:41:0","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"nodeType":"BinaryOperation","operator":"<=","rightExpression":{"id":7219,"name":"blockNumber","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7208,"src":"136319:11:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"136274:56:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7229,"nodeType":"IfStatement","src":"136270:123:0","trueBody":{"id":7228,"nodeType":"Block","src":"136332:61:0","statements":[{"expression":{"expression":{"baseExpression":{"id":7221,"name":"snapshots","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7204,"src":"136349:9:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_ExchangeRateSnapshot_$425_storage_$","typeString":"mapping(uint256 => struct IStakedPSYSV3.ExchangeRateSnapshot storage ref)"}},"id":7225,"indexExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7224,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7222,"name":"snapshotsCount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7206,"src":"136359:14:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":7223,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"136376:1:0","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"136359:18:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"136349:29:0","typeDescriptions":{"typeIdentifier":"t_struct$_ExchangeRateSnapshot_$425_storage","typeString":"struct IStakedPSYSV3.ExchangeRateSnapshot storage ref"}},"id":7226,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"136379:5:0","memberName":"value","nodeType":"MemberAccess","referencedDeclaration":424,"src":"136349:35:0","typeDescriptions":{"typeIdentifier":"t_uint216","typeString":"uint216"}},"functionReturnParameters":7212,"id":7227,"nodeType":"Return","src":"136342:42:0"}]}},{"assignments":[7231],"declarations":[{"constant":false,"id":7231,"mutability":"mutable","name":"lower","nameLocation":"136409:5:0","nodeType":"VariableDeclaration","scope":7294,"src":"136401:13:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7230,"name":"uint256","nodeType":"ElementaryTypeName","src":"136401:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":7233,"initialValue":{"hexValue":"30","id":7232,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"136417:1:0","typeDescriptions":{"typeIdentifier":"t_rational_0_by_1","typeString":"int_const 0"},"value":"0"},"nodeType":"VariableDeclarationStatement","src":"136401:17:0"},{"assignments":[7235],"declarations":[{"constant":false,"id":7235,"mutability":"mutable","name":"upper","nameLocation":"136434:5:0","nodeType":"VariableDeclaration","scope":7294,"src":"136426:13:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7234,"name":"uint256","nodeType":"ElementaryTypeName","src":"136426:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":7239,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7238,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7236,"name":"snapshotsCount","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7206,"src":"136442:14:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":7237,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"136459:1:0","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"136442:18:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"136426:34:0"},{"body":{"id":7287,"nodeType":"Block","src":"136490:380:0","statements":[{"assignments":[7244],"declarations":[{"constant":false,"id":7244,"mutability":"mutable","name":"center","nameLocation":"136508:6:0","nodeType":"VariableDeclaration","scope":7287,"src":"136500:14:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7243,"name":"uint256","nodeType":"ElementaryTypeName","src":"136500:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"id":7253,"initialValue":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7252,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7245,"name":"upper","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7235,"src":"136517:5:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7251,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"components":[{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7248,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7246,"name":"upper","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7235,"src":"136526:5:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"id":7247,"name":"lower","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7231,"src":"136534:5:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"136526:13:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}}],"id":7249,"isConstant":false,"isInlineArray":false,"isLValue":false,"isPure":false,"lValueRequested":false,"nodeType":"TupleExpression","src":"136525:15:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"/","rightExpression":{"hexValue":"32","id":7250,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"136543:1:0","typeDescriptions":{"typeIdentifier":"t_rational_2_by_1","typeString":"int_const 2"},"value":"2"},"src":"136525:19:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"136517:27:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"VariableDeclarationStatement","src":"136500:44:0"},{"assignments":[7256],"declarations":[{"constant":false,"id":7256,"mutability":"mutable","name":"snapshot","nameLocation":"136609:8:0","nodeType":"VariableDeclaration","scope":7287,"src":"136581:36:0","stateVariable":false,"storageLocation":"memory","typeDescriptions":{"typeIdentifier":"t_struct$_ExchangeRateSnapshot_$425_memory_ptr","typeString":"struct IStakedPSYSV3.ExchangeRateSnapshot"},"typeName":{"id":7255,"nodeType":"UserDefinedTypeName","pathNode":{"id":7254,"name":"ExchangeRateSnapshot","nameLocations":["136581:20:0"],"nodeType":"IdentifierPath","referencedDeclaration":425,"src":"136581:20:0"},"referencedDeclaration":425,"src":"136581:20:0","typeDescriptions":{"typeIdentifier":"t_struct$_ExchangeRateSnapshot_$425_storage_ptr","typeString":"struct IStakedPSYSV3.ExchangeRateSnapshot"}},"visibility":"internal"}],"id":7260,"initialValue":{"baseExpression":{"id":7257,"name":"snapshots","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7204,"src":"136620:9:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_ExchangeRateSnapshot_$425_storage_$","typeString":"mapping(uint256 => struct IStakedPSYSV3.ExchangeRateSnapshot storage ref)"}},"id":7259,"indexExpression":{"id":7258,"name":"center","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7244,"src":"136630:6:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"136620:17:0","typeDescriptions":{"typeIdentifier":"t_struct$_ExchangeRateSnapshot_$425_storage","typeString":"struct IStakedPSYSV3.ExchangeRateSnapshot storage ref"}},"nodeType":"VariableDeclarationStatement","src":"136581:56:0"},{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7264,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":7261,"name":"snapshot","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7256,"src":"136651:8:0","typeDescriptions":{"typeIdentifier":"t_struct$_ExchangeRateSnapshot_$425_memory_ptr","typeString":"struct IStakedPSYSV3.ExchangeRateSnapshot memory"}},"id":7262,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"136660:11:0","memberName":"blockNumber","nodeType":"MemberAccess","referencedDeclaration":422,"src":"136651:20:0","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"nodeType":"BinaryOperation","operator":"==","rightExpression":{"id":7263,"name":"blockNumber","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7208,"src":"136675:11:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"136651:35:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7272,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"expression":{"id":7269,"name":"snapshot","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7256,"src":"136742:8:0","typeDescriptions":{"typeIdentifier":"t_struct$_ExchangeRateSnapshot_$425_memory_ptr","typeString":"struct IStakedPSYSV3.ExchangeRateSnapshot memory"}},"id":7270,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"136751:11:0","memberName":"blockNumber","nodeType":"MemberAccess","referencedDeclaration":422,"src":"136742:20:0","typeDescriptions":{"typeIdentifier":"t_uint40","typeString":"uint40"}},"nodeType":"BinaryOperation","operator":"<","rightExpression":{"id":7271,"name":"blockNumber","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7208,"src":"136765:11:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"136742:34:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"falseBody":{"id":7284,"nodeType":"Block","src":"136821:41:0","statements":[{"expression":{"id":7282,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":7278,"name":"upper","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7235,"src":"136833:5:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7281,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7279,"name":"center","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7244,"src":"136841:6:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":"-","rightExpression":{"hexValue":"31","id":7280,"isConstant":false,"isLValue":false,"isPure":true,"kind":"number","lValueRequested":false,"nodeType":"Literal","src":"136850:1:0","typeDescriptions":{"typeIdentifier":"t_rational_1_by_1","typeString":"int_const 1"},"value":"1"},"src":"136841:10:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"136833:18:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":7283,"nodeType":"ExpressionStatement","src":"136833:18:0"}]},"id":7285,"nodeType":"IfStatement","src":"136738:124:0","trueBody":{"id":7277,"nodeType":"Block","src":"136778:37:0","statements":[{"expression":{"id":7275,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftHandSide":{"id":7273,"name":"lower","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7231,"src":"136790:5:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Assignment","operator":"=","rightHandSide":{"id":7274,"name":"center","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7244,"src":"136798:6:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"136790:14:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"id":7276,"nodeType":"ExpressionStatement","src":"136790:14:0"}]}},"id":7286,"nodeType":"IfStatement","src":"136647:215:0","trueBody":{"id":7268,"nodeType":"Block","src":"136688:44:0","statements":[{"expression":{"expression":{"id":7265,"name":"snapshot","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7256,"src":"136707:8:0","typeDescriptions":{"typeIdentifier":"t_struct$_ExchangeRateSnapshot_$425_memory_ptr","typeString":"struct IStakedPSYSV3.ExchangeRateSnapshot memory"}},"id":7266,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"136716:5:0","memberName":"value","nodeType":"MemberAccess","referencedDeclaration":424,"src":"136707:14:0","typeDescriptions":{"typeIdentifier":"t_uint216","typeString":"uint216"}},"functionReturnParameters":7212,"id":7267,"nodeType":"Return","src":"136700:21:0"}]}}]},"condition":{"commonType":{"typeIdentifier":"t_uint256","typeString":"uint256"},"id":7242,"isConstant":false,"isLValue":false,"isPure":false,"lValueRequested":false,"leftExpression":{"id":7240,"name":"upper","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7235,"src":"136475:5:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"BinaryOperation","operator":">","rightExpression":{"id":7241,"name":"lower","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7231,"src":"136483:5:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"src":"136475:13:0","typeDescriptions":{"typeIdentifier":"t_bool","typeString":"bool"}},"id":7288,"nodeType":"WhileStatement","src":"136468:402:0"},{"expression":{"expression":{"baseExpression":{"id":7289,"name":"snapshots","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7204,"src":"136884:9:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_ExchangeRateSnapshot_$425_storage_$","typeString":"mapping(uint256 => struct IStakedPSYSV3.ExchangeRateSnapshot storage ref)"}},"id":7291,"indexExpression":{"id":7290,"name":"lower","nodeType":"Identifier","overloadedDeclarations":[],"referencedDeclaration":7231,"src":"136894:5:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"nodeType":"IndexAccess","src":"136884:16:0","typeDescriptions":{"typeIdentifier":"t_struct$_ExchangeRateSnapshot_$425_storage","typeString":"struct IStakedPSYSV3.ExchangeRateSnapshot storage ref"}},"id":7292,"isConstant":false,"isLValue":true,"isPure":false,"lValueRequested":false,"memberLocation":"136901:5:0","memberName":"value","nodeType":"MemberAccess","referencedDeclaration":424,"src":"136884:22:0","typeDescriptions":{"typeIdentifier":"t_uint216","typeString":"uint216"}},"functionReturnParameters":7212,"id":7293,"nodeType":"Return","src":"136877:29:0"}]}]},"id":7296,"implemented":true,"kind":"function","modifiers":[],"name":"_binarySearchExchangeRate","nameLocation":"136026:25:0","nodeType":"FunctionDefinition","parameters":{"id":7209,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7204,"mutability":"mutable","name":"snapshots","nameLocation":"136106:9:0","nodeType":"VariableDeclaration","scope":7296,"src":"136057:58:0","stateVariable":false,"storageLocation":"storage","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_ExchangeRateSnapshot_$425_storage_$","typeString":"mapping(uint256 => struct IStakedPSYSV3.ExchangeRateSnapshot)"},"typeName":{"id":7203,"keyName":"","keyNameLocation":"-1:-1:-1","keyType":{"id":7200,"name":"uint256","nodeType":"ElementaryTypeName","src":"136065:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"nodeType":"Mapping","src":"136057:40:0","typeDescriptions":{"typeIdentifier":"t_mapping$_t_uint256_$_t_struct$_ExchangeRateSnapshot_$425_storage_$","typeString":"mapping(uint256 => struct IStakedPSYSV3.ExchangeRateSnapshot)"},"valueName":"","valueNameLocation":"-1:-1:-1","valueType":{"id":7202,"nodeType":"UserDefinedTypeName","pathNode":{"id":7201,"name":"ExchangeRateSnapshot","nameLocations":["136076:20:0"],"nodeType":"IdentifierPath","referencedDeclaration":425,"src":"136076:20:0"},"referencedDeclaration":425,"src":"136076:20:0","typeDescriptions":{"typeIdentifier":"t_struct$_ExchangeRateSnapshot_$425_storage_ptr","typeString":"struct IStakedPSYSV3.ExchangeRateSnapshot"}}},"visibility":"internal"},{"constant":false,"id":7206,"mutability":"mutable","name":"snapshotsCount","nameLocation":"136129:14:0","nodeType":"VariableDeclaration","scope":7296,"src":"136121:22:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7205,"name":"uint256","nodeType":"ElementaryTypeName","src":"136121:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"},{"constant":false,"id":7208,"mutability":"mutable","name":"blockNumber","nameLocation":"136157:11:0","nodeType":"VariableDeclaration","scope":7296,"src":"136149:19:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7207,"name":"uint256","nodeType":"ElementaryTypeName","src":"136149:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"136051:121:0"},"returnParameters":{"id":7212,"nodeType":"ParameterList","parameters":[{"constant":false,"id":7211,"mutability":"mutable","name":"","nameLocation":"-1:-1:-1","nodeType":"VariableDeclaration","scope":7296,"src":"136196:7:0","stateVariable":false,"storageLocation":"default","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"},"typeName":{"id":7210,"name":"uint256","nodeType":"ElementaryTypeName","src":"136196:7:0","typeDescriptions":{"typeIdentifier":"t_uint256","typeString":"uint256"}},"visibility":"internal"}],"src":"136195:9:0"},"scope":7297,"src":"136017:900:0","stateMutability":"view","virtual":false,"visibility":"internal"}],"scope":7298,"src":"130302:6617:0","usedErrors":[],"usedEvents":[11,20,174,182,188,256,266,270,276,280,284,288,292,294,429,1098,1108,2487,2493,2501,5230,5236]}],"src":"275:136645:0"},"id":0}},"contracts":{"contracts/flatten/StakedPSYSV3-flatten.sol":{"Address":{"abi":[],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60566037600b82828239805160001a607314602a57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600080fdfea2646970667358221220eb3702e64d97ccbc3a5e7248a7f819f2e717207752ef25d7f14dffbe916bdabf64736f6c634300081b0033","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 0xEB CALLDATACOPY MUL 0xE6 0x4D SWAP8 0xCC 0xBC GASPRICE MCOPY PUSH19 0x48A7F819F2E717207752EF25D7F14DFFBE916B 0xDA 0xBF PUSH5 0x736F6C6343 STOP ADDMOD SHL STOP CALLER ","sourceMap":"43455:8963:0:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;43455:8963:0;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"73000000000000000000000000000000000000000030146080604052600080fdfea2646970667358221220eb3702e64d97ccbc3a5e7248a7f819f2e717207752ef25d7f14dffbe916bdabf64736f6c634300081b0033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xEB CALLDATACOPY MUL 0xE6 0x4D SWAP8 0xCC 0xBC GASPRICE MCOPY PUSH19 0x48A7F819F2E717207752EF25D7F14DFFBE916B 0xDA 0xBF PUSH5 0x736F6C6343 STOP ADDMOD SHL STOP CALLER ","sourceMap":"43455:8963:0:-:0;;;;;;;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.27+commit.40a35a09\"},\"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\":{\"contracts/flatten/StakedPSYSV3-flatten.sol\":\"Address\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"contracts/flatten/StakedPSYSV3-flatten.sol\":{\"keccak256\":\"0x1288e9f8db9b4a153854a518648153da8175d48775832dc88c82af682197fc0c\",\"license\":\"MIT AND agpl-3.0\",\"urls\":[\"bzz-raw://c0b3c1c232cadc3e9d3315b983bfae0d842041778a8a557240729676d1b143cb\",\"dweb:/ipfs/QmWLxw9LFwrVNftCUwD8koRmWKVrcaEHemcZJY7mAjoBRN\"]}},\"version\":1}"},"Context":{"abi":[],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.27+commit.40a35a09\"},\"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\":{\"contracts/flatten/StakedPSYSV3-flatten.sol\":\"Context\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"contracts/flatten/StakedPSYSV3-flatten.sol\":{\"keccak256\":\"0x1288e9f8db9b4a153854a518648153da8175d48775832dc88c82af682197fc0c\",\"license\":\"MIT AND agpl-3.0\",\"urls\":[\"bzz-raw://c0b3c1c232cadc3e9d3315b983bfae0d842041778a8a557240729676d1b143cb\",\"dweb:/ipfs/QmWLxw9LFwrVNftCUwD8koRmWKVrcaEHemcZJY7mAjoBRN\"]}},\"version\":1}"},"DistributionTypes":{"abi":[],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60566037600b82828239805160001a607314602a57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600080fdfea2646970667358221220ddeb6816b3520d43582802099f91489a0f42d1bb77ddfd852632335628cb8dc364736f6c634300081b0033","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 0xDD 0xEB PUSH9 0x16B3520D4358280209 SWAP16 SWAP2 BASEFEE SWAP11 0xF TIMESTAMP 0xD1 0xBB PUSH24 0xDDFD852632335628CB8DC364736F6C634300081B00330000 ","sourceMap":"3972:289:0:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;3972:289:0;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"73000000000000000000000000000000000000000030146080604052600080fdfea2646970667358221220ddeb6816b3520d43582802099f91489a0f42d1bb77ddfd852632335628cb8dc364736f6c634300081b0033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xDD 0xEB PUSH9 0x16B3520D4358280209 SWAP16 SWAP2 BASEFEE SWAP11 0xF TIMESTAMP 0xD1 0xBB PUSH24 0xDDFD852632335628CB8DC364736F6C634300081B00330000 ","sourceMap":"3972:289:0:-:0;;;;;;;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.27+commit.40a35a09\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/flatten/StakedPSYSV3-flatten.sol\":\"DistributionTypes\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"contracts/flatten/StakedPSYSV3-flatten.sol\":{\"keccak256\":\"0x1288e9f8db9b4a153854a518648153da8175d48775832dc88c82af682197fc0c\",\"license\":\"MIT AND agpl-3.0\",\"urls\":[\"bzz-raw://c0b3c1c232cadc3e9d3315b983bfae0d842041778a8a557240729676d1b143cb\",\"dweb:/ipfs/QmWLxw9LFwrVNftCUwD8koRmWKVrcaEHemcZJY7mAjoBRN\"]}},\"version\":1}"},"ERC20":{"abi":[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{"@_542":{"entryPoint":null,"id":542,"parameterSlots":0,"returnSlots":0}},"generatedSources":[],"linkReferences":{},"object":"6080604052348015600f57600080fd5b506108538061001f6000396000f3fe608060405234801561001057600080fd5b50600436106100a95760003560e01c80633950935111610071578063395093511461012357806370a082311461013657806395d89b411461015f578063a457c2d714610167578063a9059cbb1461017a578063dd62ed3e1461018d57600080fd5b806306fdde03146100ae578063095ea7b3146100cc57806318160ddd146100ef57806323b872dd14610101578063313ce56714610114575b600080fd5b6100b66101a0565b6040516100c3919061069c565b60405180910390f35b6100df6100da366004610706565b610232565b60405190151581526020016100c3565b6002545b6040519081526020016100c3565b6100df61010f366004610730565b61024c565b604051601281526020016100c3565b6100df610131366004610706565b610270565b6100f361014436600461076d565b6001600160a01b031660009081526020819052604090205490565b6100b6610292565b6100df610175366004610706565b6102a1565b6100df610188366004610706565b610321565b6100f361019b36600461078f565b61032f565b6060600380546101af906107c2565b80601f01602080910402602001604051908101604052809291908181526020018280546101db906107c2565b80156102285780601f106101fd57610100808354040283529160200191610228565b820191906000526020600020905b81548152906001019060200180831161020b57829003601f168201915b5050505050905090565b60003361024081858561035a565b60019150505b92915050565b60003361025a85828561047e565b6102658585856104f8565b506001949350505050565b600033610240818585610283838361032f565b61028d91906107fc565b61035a565b6060600480546101af906107c2565b600033816102af828661032f565b9050838110156103145760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b610265828686840361035a565b6000336102408185856104f8565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6001600160a01b0383166103bc5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161030b565b6001600160a01b03821661041d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161030b565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600061048a848461032f565b905060001981146104f257818110156104e55760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161030b565b6104f2848484840361035a565b50505050565b6001600160a01b03831661055c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161030b565b6001600160a01b0382166105be5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161030b565b6001600160a01b038316600090815260208190526040902054818110156106365760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161030b565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36104f2565b602081526000825180602084015260005b818110156106ca57602081860181015160408684010152016106ad565b506000604082850101526040601f19601f83011684010191505092915050565b80356001600160a01b038116811461070157600080fd5b919050565b6000806040838503121561071957600080fd5b610722836106ea565b946020939093013593505050565b60008060006060848603121561074557600080fd5b61074e846106ea565b925061075c602085016106ea565b929592945050506040919091013590565b60006020828403121561077f57600080fd5b610788826106ea565b9392505050565b600080604083850312156107a257600080fd5b6107ab836106ea565b91506107b9602084016106ea565b90509250929050565b600181811c908216806107d657607f821691505b6020821081036107f657634e487b7160e01b600052602260045260246000fd5b50919050565b8082018082111561024657634e487b7160e01b600052601160045260246000fdfea2646970667358221220b4000606e4c44074660b02f904b03e6b20397248b9527d0bf274ff9a08f6b98c64736f6c634300081b0033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH1 0xF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x853 DUP1 PUSH2 0x1F PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xA9 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x39509351 GT PUSH2 0x71 JUMPI DUP1 PUSH4 0x39509351 EQ PUSH2 0x123 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x136 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x15F JUMPI DUP1 PUSH4 0xA457C2D7 EQ PUSH2 0x167 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x17A JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x18D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0xAE JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0xCC JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0xEF JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x101 JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x114 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xB6 PUSH2 0x1A0 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xC3 SWAP2 SWAP1 PUSH2 0x69C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xDF PUSH2 0xDA CALLDATASIZE PUSH1 0x4 PUSH2 0x706 JUMP JUMPDEST PUSH2 0x232 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xC3 JUMP JUMPDEST PUSH1 0x2 SLOAD JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xC3 JUMP JUMPDEST PUSH2 0xDF PUSH2 0x10F CALLDATASIZE PUSH1 0x4 PUSH2 0x730 JUMP JUMPDEST PUSH2 0x24C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x12 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xC3 JUMP JUMPDEST PUSH2 0xDF PUSH2 0x131 CALLDATASIZE PUSH1 0x4 PUSH2 0x706 JUMP JUMPDEST PUSH2 0x270 JUMP JUMPDEST PUSH2 0xF3 PUSH2 0x144 CALLDATASIZE PUSH1 0x4 PUSH2 0x76D 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 0xB6 PUSH2 0x292 JUMP JUMPDEST PUSH2 0xDF PUSH2 0x175 CALLDATASIZE PUSH1 0x4 PUSH2 0x706 JUMP JUMPDEST PUSH2 0x2A1 JUMP JUMPDEST PUSH2 0xDF PUSH2 0x188 CALLDATASIZE PUSH1 0x4 PUSH2 0x706 JUMP JUMPDEST PUSH2 0x321 JUMP JUMPDEST PUSH2 0xF3 PUSH2 0x19B CALLDATASIZE PUSH1 0x4 PUSH2 0x78F JUMP JUMPDEST PUSH2 0x32F JUMP JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x1AF SWAP1 PUSH2 0x7C2 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 0x1DB SWAP1 PUSH2 0x7C2 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x228 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x1FD JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x228 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 0x20B JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0x240 DUP2 DUP6 DUP6 PUSH2 0x35A JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0x25A DUP6 DUP3 DUP6 PUSH2 0x47E JUMP JUMPDEST PUSH2 0x265 DUP6 DUP6 DUP6 PUSH2 0x4F8 JUMP JUMPDEST POP PUSH1 0x1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0x240 DUP2 DUP6 DUP6 PUSH2 0x283 DUP4 DUP4 PUSH2 0x32F JUMP JUMPDEST PUSH2 0x28D SWAP2 SWAP1 PUSH2 0x7FC JUMP JUMPDEST PUSH2 0x35A JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0x1AF SWAP1 PUSH2 0x7C2 JUMP JUMPDEST PUSH1 0x0 CALLER DUP2 PUSH2 0x2AF DUP3 DUP7 PUSH2 0x32F JUMP JUMPDEST SWAP1 POP DUP4 DUP2 LT ISZERO PUSH2 0x314 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 PUSH5 0x207A65726F PUSH1 0xD8 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x265 DUP3 DUP7 DUP7 DUP5 SUB PUSH2 0x35A JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0x240 DUP2 DUP6 DUP6 PUSH2 0x4F8 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 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x3BC 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 PUSH4 0x72657373 PUSH1 0xE0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x30B JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x41D 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 PUSH2 0x7373 PUSH1 0xF0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x30B 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 PUSH2 0x48A DUP5 DUP5 PUSH2 0x32F JUMP JUMPDEST SWAP1 POP PUSH1 0x0 NOT DUP2 EQ PUSH2 0x4F2 JUMPI DUP2 DUP2 LT ISZERO PUSH2 0x4E5 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 0x45524332303A20696E73756666696369656E7420616C6C6F77616E6365000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x30B JUMP JUMPDEST PUSH2 0x4F2 DUP5 DUP5 DUP5 DUP5 SUB PUSH2 0x35A JUMP JUMPDEST POP POP POP POP 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 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E736665722066726F6D20746865207A65726F206164 PUSH1 0x44 DUP3 ADD MSTORE PUSH5 0x6472657373 PUSH1 0xD8 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x30B JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x5BE 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 PUSH3 0x657373 PUSH1 0xE8 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x30B 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 0x636 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 PUSH6 0x616C616E6365 PUSH1 0xD0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x30B JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 DUP2 AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 DUP8 DUP8 SUB SWAP1 SSTORE SWAP4 DUP8 AND DUP1 DUP4 MSTORE SWAP2 DUP5 SWAP1 KECCAK256 DUP1 SLOAD DUP8 ADD SWAP1 SSTORE SWAP3 MLOAD DUP6 DUP2 MSTORE SWAP1 SWAP3 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH2 0x4F2 JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH1 0x0 DUP3 MLOAD DUP1 PUSH1 0x20 DUP5 ADD MSTORE PUSH1 0x0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x6CA JUMPI PUSH1 0x20 DUP2 DUP7 ADD DUP2 ADD MLOAD PUSH1 0x40 DUP7 DUP5 ADD ADD MSTORE ADD PUSH2 0x6AD JUMP JUMPDEST POP PUSH1 0x0 PUSH1 0x40 DUP3 DUP6 ADD ADD MSTORE PUSH1 0x40 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND DUP5 ADD ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x701 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x719 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x722 DUP4 PUSH2 0x6EA 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 0x745 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x74E DUP5 PUSH2 0x6EA JUMP JUMPDEST SWAP3 POP PUSH2 0x75C PUSH1 0x20 DUP6 ADD PUSH2 0x6EA 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 0x77F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x788 DUP3 PUSH2 0x6EA JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x7A2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x7AB DUP4 PUSH2 0x6EA JUMP JUMPDEST SWAP2 POP PUSH2 0x7B9 PUSH1 0x20 DUP5 ADD PUSH2 0x6EA JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0x7D6 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x7F6 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 DUP1 DUP3 ADD DUP1 DUP3 GT ISZERO PUSH2 0x246 JUMPI 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 0xB4 STOP MOD MOD 0xE4 0xC4 BLOCKHASH PUSH21 0x660B02F904B03E6B20397248B9527D0BF274FF9A08 0xF6 0xB9 DUP13 PUSH5 0x736F6C6343 STOP ADDMOD SHL STOP CALLER ","sourceMap":"17531:11558:0:-:0;;;18151:16;;;;;;;;;;17531:11558;;;;;;"},"deployedBytecode":{"functionDebugData":{"@_afterTokenTransfer_1083":{"entryPoint":null,"id":1083,"parameterSlots":3,"returnSlots":0},"@_approve_1018":{"entryPoint":858,"id":1018,"parameterSlots":3,"returnSlots":0},"@_beforeTokenTransfer_1072":{"entryPoint":null,"id":1072,"parameterSlots":3,"returnSlots":0},"@_msgSender_501":{"entryPoint":null,"id":501,"parameterSlots":0,"returnSlots":1},"@_spendAllowance_1061":{"entryPoint":1150,"id":1061,"parameterSlots":3,"returnSlots":0},"@_transfer_844":{"entryPoint":1272,"id":844,"parameterSlots":3,"returnSlots":0},"@allowance_639":{"entryPoint":815,"id":639,"parameterSlots":2,"returnSlots":1},"@approve_664":{"entryPoint":562,"id":664,"parameterSlots":2,"returnSlots":1},"@balanceOf_596":{"entryPoint":null,"id":596,"parameterSlots":1,"returnSlots":1},"@decimals_572":{"entryPoint":null,"id":572,"parameterSlots":0,"returnSlots":1},"@decreaseAllowance_767":{"entryPoint":673,"id":767,"parameterSlots":2,"returnSlots":1},"@increaseAllowance_726":{"entryPoint":624,"id":726,"parameterSlots":2,"returnSlots":1},"@name_552":{"entryPoint":416,"id":552,"parameterSlots":0,"returnSlots":1},"@symbol_562":{"entryPoint":658,"id":562,"parameterSlots":0,"returnSlots":1},"@totalSupply_582":{"entryPoint":null,"id":582,"parameterSlots":0,"returnSlots":1},"@transferFrom_697":{"entryPoint":588,"id":697,"parameterSlots":3,"returnSlots":1},"@transfer_621":{"entryPoint":801,"id":621,"parameterSlots":2,"returnSlots":1},"abi_decode_address":{"entryPoint":1770,"id":null,"parameterSlots":1,"returnSlots":1},"abi_decode_tuple_t_address":{"entryPoint":1901,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_addresst_address":{"entryPoint":1935,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_addresst_addresst_uint256":{"entryPoint":1840,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_addresst_uint256":{"entryPoint":1798,"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":1692,"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_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe__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_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":2044,"id":null,"parameterSlots":2,"returnSlots":1},"extract_byte_array_length":{"entryPoint":1986,"id":null,"parameterSlots":1,"returnSlots":1}},"generatedSources":[{"ast":{"nativeSrc":"0:5825:1","nodeType":"YulBlock","src":"0:5825:1","statements":[{"nativeSrc":"6:3:1","nodeType":"YulBlock","src":"6:3:1","statements":[]},{"body":{"nativeSrc":"135:406:1","nodeType":"YulBlock","src":"135:406:1","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"152:9:1","nodeType":"YulIdentifier","src":"152:9:1"},{"kind":"number","nativeSrc":"163:2:1","nodeType":"YulLiteral","src":"163:2:1","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"145:6:1","nodeType":"YulIdentifier","src":"145:6:1"},"nativeSrc":"145:21:1","nodeType":"YulFunctionCall","src":"145:21:1"},"nativeSrc":"145:21:1","nodeType":"YulExpressionStatement","src":"145:21:1"},{"nativeSrc":"175:27:1","nodeType":"YulVariableDeclaration","src":"175:27:1","value":{"arguments":[{"name":"value0","nativeSrc":"195:6:1","nodeType":"YulIdentifier","src":"195:6:1"}],"functionName":{"name":"mload","nativeSrc":"189:5:1","nodeType":"YulIdentifier","src":"189:5:1"},"nativeSrc":"189:13:1","nodeType":"YulFunctionCall","src":"189:13:1"},"variables":[{"name":"length","nativeSrc":"179:6:1","nodeType":"YulTypedName","src":"179:6:1","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"222:9:1","nodeType":"YulIdentifier","src":"222:9:1"},{"kind":"number","nativeSrc":"233:2:1","nodeType":"YulLiteral","src":"233:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"218:3:1","nodeType":"YulIdentifier","src":"218:3:1"},"nativeSrc":"218:18:1","nodeType":"YulFunctionCall","src":"218:18:1"},{"name":"length","nativeSrc":"238:6:1","nodeType":"YulIdentifier","src":"238:6:1"}],"functionName":{"name":"mstore","nativeSrc":"211:6:1","nodeType":"YulIdentifier","src":"211:6:1"},"nativeSrc":"211:34:1","nodeType":"YulFunctionCall","src":"211:34:1"},"nativeSrc":"211:34:1","nodeType":"YulExpressionStatement","src":"211:34:1"},{"nativeSrc":"254:10:1","nodeType":"YulVariableDeclaration","src":"254:10:1","value":{"kind":"number","nativeSrc":"263:1:1","nodeType":"YulLiteral","src":"263:1:1","type":"","value":"0"},"variables":[{"name":"i","nativeSrc":"258:1:1","nodeType":"YulTypedName","src":"258:1:1","type":""}]},{"body":{"nativeSrc":"323:90:1","nodeType":"YulBlock","src":"323:90:1","statements":[{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"352:9:1","nodeType":"YulIdentifier","src":"352:9:1"},{"name":"i","nativeSrc":"363:1:1","nodeType":"YulIdentifier","src":"363:1:1"}],"functionName":{"name":"add","nativeSrc":"348:3:1","nodeType":"YulIdentifier","src":"348:3:1"},"nativeSrc":"348:17:1","nodeType":"YulFunctionCall","src":"348:17:1"},{"kind":"number","nativeSrc":"367:2:1","nodeType":"YulLiteral","src":"367:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"344:3:1","nodeType":"YulIdentifier","src":"344:3:1"},"nativeSrc":"344:26:1","nodeType":"YulFunctionCall","src":"344:26:1"},{"arguments":[{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"386:6:1","nodeType":"YulIdentifier","src":"386:6:1"},{"name":"i","nativeSrc":"394:1:1","nodeType":"YulIdentifier","src":"394:1:1"}],"functionName":{"name":"add","nativeSrc":"382:3:1","nodeType":"YulIdentifier","src":"382:3:1"},"nativeSrc":"382:14:1","nodeType":"YulFunctionCall","src":"382:14:1"},{"kind":"number","nativeSrc":"398:2:1","nodeType":"YulLiteral","src":"398:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"378:3:1","nodeType":"YulIdentifier","src":"378:3:1"},"nativeSrc":"378:23:1","nodeType":"YulFunctionCall","src":"378:23:1"}],"functionName":{"name":"mload","nativeSrc":"372:5:1","nodeType":"YulIdentifier","src":"372:5:1"},"nativeSrc":"372:30:1","nodeType":"YulFunctionCall","src":"372:30:1"}],"functionName":{"name":"mstore","nativeSrc":"337:6:1","nodeType":"YulIdentifier","src":"337:6:1"},"nativeSrc":"337:66:1","nodeType":"YulFunctionCall","src":"337:66:1"},"nativeSrc":"337:66:1","nodeType":"YulExpressionStatement","src":"337:66:1"}]},"condition":{"arguments":[{"name":"i","nativeSrc":"284:1:1","nodeType":"YulIdentifier","src":"284:1:1"},{"name":"length","nativeSrc":"287:6:1","nodeType":"YulIdentifier","src":"287:6:1"}],"functionName":{"name":"lt","nativeSrc":"281:2:1","nodeType":"YulIdentifier","src":"281:2:1"},"nativeSrc":"281:13:1","nodeType":"YulFunctionCall","src":"281:13:1"},"nativeSrc":"273:140:1","nodeType":"YulForLoop","post":{"nativeSrc":"295:19:1","nodeType":"YulBlock","src":"295:19:1","statements":[{"nativeSrc":"297:15:1","nodeType":"YulAssignment","src":"297:15:1","value":{"arguments":[{"name":"i","nativeSrc":"306:1:1","nodeType":"YulIdentifier","src":"306:1:1"},{"kind":"number","nativeSrc":"309:2:1","nodeType":"YulLiteral","src":"309:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"302:3:1","nodeType":"YulIdentifier","src":"302:3:1"},"nativeSrc":"302:10:1","nodeType":"YulFunctionCall","src":"302:10:1"},"variableNames":[{"name":"i","nativeSrc":"297:1:1","nodeType":"YulIdentifier","src":"297:1:1"}]}]},"pre":{"nativeSrc":"277:3:1","nodeType":"YulBlock","src":"277:3:1","statements":[]},"src":"273:140:1"},{"expression":{"arguments":[{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"437:9:1","nodeType":"YulIdentifier","src":"437:9:1"},{"name":"length","nativeSrc":"448:6:1","nodeType":"YulIdentifier","src":"448:6:1"}],"functionName":{"name":"add","nativeSrc":"433:3:1","nodeType":"YulIdentifier","src":"433:3:1"},"nativeSrc":"433:22:1","nodeType":"YulFunctionCall","src":"433:22:1"},{"kind":"number","nativeSrc":"457:2:1","nodeType":"YulLiteral","src":"457:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"429:3:1","nodeType":"YulIdentifier","src":"429:3:1"},"nativeSrc":"429:31:1","nodeType":"YulFunctionCall","src":"429:31:1"},{"kind":"number","nativeSrc":"462:1:1","nodeType":"YulLiteral","src":"462:1:1","type":"","value":"0"}],"functionName":{"name":"mstore","nativeSrc":"422:6:1","nodeType":"YulIdentifier","src":"422:6:1"},"nativeSrc":"422:42:1","nodeType":"YulFunctionCall","src":"422:42:1"},"nativeSrc":"422:42:1","nodeType":"YulExpressionStatement","src":"422:42:1"},{"nativeSrc":"473:62:1","nodeType":"YulAssignment","src":"473:62:1","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"489:9:1","nodeType":"YulIdentifier","src":"489:9:1"},{"arguments":[{"arguments":[{"name":"length","nativeSrc":"508:6:1","nodeType":"YulIdentifier","src":"508:6:1"},{"kind":"number","nativeSrc":"516:2:1","nodeType":"YulLiteral","src":"516:2:1","type":"","value":"31"}],"functionName":{"name":"add","nativeSrc":"504:3:1","nodeType":"YulIdentifier","src":"504:3:1"},"nativeSrc":"504:15:1","nodeType":"YulFunctionCall","src":"504:15:1"},{"arguments":[{"kind":"number","nativeSrc":"525:2:1","nodeType":"YulLiteral","src":"525:2:1","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"521:3:1","nodeType":"YulIdentifier","src":"521:3:1"},"nativeSrc":"521:7:1","nodeType":"YulFunctionCall","src":"521:7:1"}],"functionName":{"name":"and","nativeSrc":"500:3:1","nodeType":"YulIdentifier","src":"500:3:1"},"nativeSrc":"500:29:1","nodeType":"YulFunctionCall","src":"500:29:1"}],"functionName":{"name":"add","nativeSrc":"485:3:1","nodeType":"YulIdentifier","src":"485:3:1"},"nativeSrc":"485:45:1","nodeType":"YulFunctionCall","src":"485:45:1"},{"kind":"number","nativeSrc":"532:2:1","nodeType":"YulLiteral","src":"532:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"481:3:1","nodeType":"YulIdentifier","src":"481:3:1"},"nativeSrc":"481:54:1","nodeType":"YulFunctionCall","src":"481:54:1"},"variableNames":[{"name":"tail","nativeSrc":"473:4:1","nodeType":"YulIdentifier","src":"473:4:1"}]}]},"name":"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"14:527:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"104:9:1","nodeType":"YulTypedName","src":"104:9:1","type":""},{"name":"value0","nativeSrc":"115:6:1","nodeType":"YulTypedName","src":"115:6:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"126:4:1","nodeType":"YulTypedName","src":"126:4:1","type":""}],"src":"14:527:1"},{"body":{"nativeSrc":"595:124:1","nodeType":"YulBlock","src":"595:124:1","statements":[{"nativeSrc":"605:29:1","nodeType":"YulAssignment","src":"605:29:1","value":{"arguments":[{"name":"offset","nativeSrc":"627:6:1","nodeType":"YulIdentifier","src":"627:6:1"}],"functionName":{"name":"calldataload","nativeSrc":"614:12:1","nodeType":"YulIdentifier","src":"614:12:1"},"nativeSrc":"614:20:1","nodeType":"YulFunctionCall","src":"614:20:1"},"variableNames":[{"name":"value","nativeSrc":"605:5:1","nodeType":"YulIdentifier","src":"605:5:1"}]},{"body":{"nativeSrc":"697:16:1","nodeType":"YulBlock","src":"697:16:1","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"706:1:1","nodeType":"YulLiteral","src":"706:1:1","type":"","value":"0"},{"kind":"number","nativeSrc":"709:1:1","nodeType":"YulLiteral","src":"709:1:1","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"699:6:1","nodeType":"YulIdentifier","src":"699:6:1"},"nativeSrc":"699:12:1","nodeType":"YulFunctionCall","src":"699:12:1"},"nativeSrc":"699:12:1","nodeType":"YulExpressionStatement","src":"699:12:1"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"656:5:1","nodeType":"YulIdentifier","src":"656:5:1"},{"arguments":[{"name":"value","nativeSrc":"667:5:1","nodeType":"YulIdentifier","src":"667:5:1"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"682:3:1","nodeType":"YulLiteral","src":"682:3:1","type":"","value":"160"},{"kind":"number","nativeSrc":"687:1:1","nodeType":"YulLiteral","src":"687:1:1","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"678:3:1","nodeType":"YulIdentifier","src":"678:3:1"},"nativeSrc":"678:11:1","nodeType":"YulFunctionCall","src":"678:11:1"},{"kind":"number","nativeSrc":"691:1:1","nodeType":"YulLiteral","src":"691:1:1","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"674:3:1","nodeType":"YulIdentifier","src":"674:3:1"},"nativeSrc":"674:19:1","nodeType":"YulFunctionCall","src":"674:19:1"}],"functionName":{"name":"and","nativeSrc":"663:3:1","nodeType":"YulIdentifier","src":"663:3:1"},"nativeSrc":"663:31:1","nodeType":"YulFunctionCall","src":"663:31:1"}],"functionName":{"name":"eq","nativeSrc":"653:2:1","nodeType":"YulIdentifier","src":"653:2:1"},"nativeSrc":"653:42:1","nodeType":"YulFunctionCall","src":"653:42:1"}],"functionName":{"name":"iszero","nativeSrc":"646:6:1","nodeType":"YulIdentifier","src":"646:6:1"},"nativeSrc":"646:50:1","nodeType":"YulFunctionCall","src":"646:50:1"},"nativeSrc":"643:70:1","nodeType":"YulIf","src":"643:70:1"}]},"name":"abi_decode_address","nativeSrc":"546:173:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"574:6:1","nodeType":"YulTypedName","src":"574:6:1","type":""}],"returnVariables":[{"name":"value","nativeSrc":"585:5:1","nodeType":"YulTypedName","src":"585:5:1","type":""}],"src":"546:173:1"},{"body":{"nativeSrc":"811:213:1","nodeType":"YulBlock","src":"811:213:1","statements":[{"body":{"nativeSrc":"857:16:1","nodeType":"YulBlock","src":"857:16:1","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"866:1:1","nodeType":"YulLiteral","src":"866:1:1","type":"","value":"0"},{"kind":"number","nativeSrc":"869:1:1","nodeType":"YulLiteral","src":"869:1:1","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"859:6:1","nodeType":"YulIdentifier","src":"859:6:1"},"nativeSrc":"859:12:1","nodeType":"YulFunctionCall","src":"859:12:1"},"nativeSrc":"859:12:1","nodeType":"YulExpressionStatement","src":"859:12:1"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"832:7:1","nodeType":"YulIdentifier","src":"832:7:1"},{"name":"headStart","nativeSrc":"841:9:1","nodeType":"YulIdentifier","src":"841:9:1"}],"functionName":{"name":"sub","nativeSrc":"828:3:1","nodeType":"YulIdentifier","src":"828:3:1"},"nativeSrc":"828:23:1","nodeType":"YulFunctionCall","src":"828:23:1"},{"kind":"number","nativeSrc":"853:2:1","nodeType":"YulLiteral","src":"853:2:1","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"824:3:1","nodeType":"YulIdentifier","src":"824:3:1"},"nativeSrc":"824:32:1","nodeType":"YulFunctionCall","src":"824:32:1"},"nativeSrc":"821:52:1","nodeType":"YulIf","src":"821:52:1"},{"nativeSrc":"882:39:1","nodeType":"YulAssignment","src":"882:39:1","value":{"arguments":[{"name":"headStart","nativeSrc":"911:9:1","nodeType":"YulIdentifier","src":"911:9:1"}],"functionName":{"name":"abi_decode_address","nativeSrc":"892:18:1","nodeType":"YulIdentifier","src":"892:18:1"},"nativeSrc":"892:29:1","nodeType":"YulFunctionCall","src":"892:29:1"},"variableNames":[{"name":"value0","nativeSrc":"882:6:1","nodeType":"YulIdentifier","src":"882:6:1"}]},{"nativeSrc":"930:14:1","nodeType":"YulVariableDeclaration","src":"930:14:1","value":{"kind":"number","nativeSrc":"943:1:1","nodeType":"YulLiteral","src":"943:1:1","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"934:5:1","nodeType":"YulTypedName","src":"934:5:1","type":""}]},{"nativeSrc":"953:41:1","nodeType":"YulAssignment","src":"953:41:1","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"979:9:1","nodeType":"YulIdentifier","src":"979:9:1"},{"kind":"number","nativeSrc":"990:2:1","nodeType":"YulLiteral","src":"990:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"975:3:1","nodeType":"YulIdentifier","src":"975:3:1"},"nativeSrc":"975:18:1","nodeType":"YulFunctionCall","src":"975:18:1"}],"functionName":{"name":"calldataload","nativeSrc":"962:12:1","nodeType":"YulIdentifier","src":"962:12:1"},"nativeSrc":"962:32:1","nodeType":"YulFunctionCall","src":"962:32:1"},"variableNames":[{"name":"value","nativeSrc":"953:5:1","nodeType":"YulIdentifier","src":"953:5:1"}]},{"nativeSrc":"1003:15:1","nodeType":"YulAssignment","src":"1003:15:1","value":{"name":"value","nativeSrc":"1013:5:1","nodeType":"YulIdentifier","src":"1013:5:1"},"variableNames":[{"name":"value1","nativeSrc":"1003:6:1","nodeType":"YulIdentifier","src":"1003:6:1"}]}]},"name":"abi_decode_tuple_t_addresst_uint256","nativeSrc":"724:300:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"769:9:1","nodeType":"YulTypedName","src":"769:9:1","type":""},{"name":"dataEnd","nativeSrc":"780:7:1","nodeType":"YulTypedName","src":"780:7:1","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"792:6:1","nodeType":"YulTypedName","src":"792:6:1","type":""},{"name":"value1","nativeSrc":"800:6:1","nodeType":"YulTypedName","src":"800:6:1","type":""}],"src":"724:300:1"},{"body":{"nativeSrc":"1124:92:1","nodeType":"YulBlock","src":"1124:92:1","statements":[{"nativeSrc":"1134:26:1","nodeType":"YulAssignment","src":"1134:26:1","value":{"arguments":[{"name":"headStart","nativeSrc":"1146:9:1","nodeType":"YulIdentifier","src":"1146:9:1"},{"kind":"number","nativeSrc":"1157:2:1","nodeType":"YulLiteral","src":"1157:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1142:3:1","nodeType":"YulIdentifier","src":"1142:3:1"},"nativeSrc":"1142:18:1","nodeType":"YulFunctionCall","src":"1142:18:1"},"variableNames":[{"name":"tail","nativeSrc":"1134:4:1","nodeType":"YulIdentifier","src":"1134:4:1"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"1176:9:1","nodeType":"YulIdentifier","src":"1176:9:1"},{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"1201:6:1","nodeType":"YulIdentifier","src":"1201:6:1"}],"functionName":{"name":"iszero","nativeSrc":"1194:6:1","nodeType":"YulIdentifier","src":"1194:6:1"},"nativeSrc":"1194:14:1","nodeType":"YulFunctionCall","src":"1194:14:1"}],"functionName":{"name":"iszero","nativeSrc":"1187:6:1","nodeType":"YulIdentifier","src":"1187:6:1"},"nativeSrc":"1187:22:1","nodeType":"YulFunctionCall","src":"1187:22:1"}],"functionName":{"name":"mstore","nativeSrc":"1169:6:1","nodeType":"YulIdentifier","src":"1169:6:1"},"nativeSrc":"1169:41:1","nodeType":"YulFunctionCall","src":"1169:41:1"},"nativeSrc":"1169:41:1","nodeType":"YulExpressionStatement","src":"1169:41:1"}]},"name":"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed","nativeSrc":"1029:187:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1093:9:1","nodeType":"YulTypedName","src":"1093:9:1","type":""},{"name":"value0","nativeSrc":"1104:6:1","nodeType":"YulTypedName","src":"1104:6:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"1115:4:1","nodeType":"YulTypedName","src":"1115:4:1","type":""}],"src":"1029:187:1"},{"body":{"nativeSrc":"1322:76:1","nodeType":"YulBlock","src":"1322:76:1","statements":[{"nativeSrc":"1332:26:1","nodeType":"YulAssignment","src":"1332:26:1","value":{"arguments":[{"name":"headStart","nativeSrc":"1344:9:1","nodeType":"YulIdentifier","src":"1344:9:1"},{"kind":"number","nativeSrc":"1355:2:1","nodeType":"YulLiteral","src":"1355:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1340:3:1","nodeType":"YulIdentifier","src":"1340:3:1"},"nativeSrc":"1340:18:1","nodeType":"YulFunctionCall","src":"1340:18:1"},"variableNames":[{"name":"tail","nativeSrc":"1332:4:1","nodeType":"YulIdentifier","src":"1332:4:1"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"1374:9:1","nodeType":"YulIdentifier","src":"1374:9:1"},{"name":"value0","nativeSrc":"1385:6:1","nodeType":"YulIdentifier","src":"1385:6:1"}],"functionName":{"name":"mstore","nativeSrc":"1367:6:1","nodeType":"YulIdentifier","src":"1367:6:1"},"nativeSrc":"1367:25:1","nodeType":"YulFunctionCall","src":"1367:25:1"},"nativeSrc":"1367:25:1","nodeType":"YulExpressionStatement","src":"1367:25:1"}]},"name":"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed","nativeSrc":"1221:177:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1291:9:1","nodeType":"YulTypedName","src":"1291:9:1","type":""},{"name":"value0","nativeSrc":"1302:6:1","nodeType":"YulTypedName","src":"1302:6:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"1313:4:1","nodeType":"YulTypedName","src":"1313:4:1","type":""}],"src":"1221:177:1"},{"body":{"nativeSrc":"1507:270:1","nodeType":"YulBlock","src":"1507:270:1","statements":[{"body":{"nativeSrc":"1553:16:1","nodeType":"YulBlock","src":"1553:16:1","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1562:1:1","nodeType":"YulLiteral","src":"1562:1:1","type":"","value":"0"},{"kind":"number","nativeSrc":"1565:1:1","nodeType":"YulLiteral","src":"1565:1:1","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1555:6:1","nodeType":"YulIdentifier","src":"1555:6:1"},"nativeSrc":"1555:12:1","nodeType":"YulFunctionCall","src":"1555:12:1"},"nativeSrc":"1555:12:1","nodeType":"YulExpressionStatement","src":"1555:12:1"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"1528:7:1","nodeType":"YulIdentifier","src":"1528:7:1"},{"name":"headStart","nativeSrc":"1537:9:1","nodeType":"YulIdentifier","src":"1537:9:1"}],"functionName":{"name":"sub","nativeSrc":"1524:3:1","nodeType":"YulIdentifier","src":"1524:3:1"},"nativeSrc":"1524:23:1","nodeType":"YulFunctionCall","src":"1524:23:1"},{"kind":"number","nativeSrc":"1549:2:1","nodeType":"YulLiteral","src":"1549:2:1","type":"","value":"96"}],"functionName":{"name":"slt","nativeSrc":"1520:3:1","nodeType":"YulIdentifier","src":"1520:3:1"},"nativeSrc":"1520:32:1","nodeType":"YulFunctionCall","src":"1520:32:1"},"nativeSrc":"1517:52:1","nodeType":"YulIf","src":"1517:52:1"},{"nativeSrc":"1578:39:1","nodeType":"YulAssignment","src":"1578:39:1","value":{"arguments":[{"name":"headStart","nativeSrc":"1607:9:1","nodeType":"YulIdentifier","src":"1607:9:1"}],"functionName":{"name":"abi_decode_address","nativeSrc":"1588:18:1","nodeType":"YulIdentifier","src":"1588:18:1"},"nativeSrc":"1588:29:1","nodeType":"YulFunctionCall","src":"1588:29:1"},"variableNames":[{"name":"value0","nativeSrc":"1578:6:1","nodeType":"YulIdentifier","src":"1578:6:1"}]},{"nativeSrc":"1626:48:1","nodeType":"YulAssignment","src":"1626:48:1","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1659:9:1","nodeType":"YulIdentifier","src":"1659:9:1"},{"kind":"number","nativeSrc":"1670:2:1","nodeType":"YulLiteral","src":"1670:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1655:3:1","nodeType":"YulIdentifier","src":"1655:3:1"},"nativeSrc":"1655:18:1","nodeType":"YulFunctionCall","src":"1655:18:1"}],"functionName":{"name":"abi_decode_address","nativeSrc":"1636:18:1","nodeType":"YulIdentifier","src":"1636:18:1"},"nativeSrc":"1636:38:1","nodeType":"YulFunctionCall","src":"1636:38:1"},"variableNames":[{"name":"value1","nativeSrc":"1626:6:1","nodeType":"YulIdentifier","src":"1626:6:1"}]},{"nativeSrc":"1683:14:1","nodeType":"YulVariableDeclaration","src":"1683:14:1","value":{"kind":"number","nativeSrc":"1696:1:1","nodeType":"YulLiteral","src":"1696:1:1","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"1687:5:1","nodeType":"YulTypedName","src":"1687:5:1","type":""}]},{"nativeSrc":"1706:41:1","nodeType":"YulAssignment","src":"1706:41:1","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1732:9:1","nodeType":"YulIdentifier","src":"1732:9:1"},{"kind":"number","nativeSrc":"1743:2:1","nodeType":"YulLiteral","src":"1743:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"1728:3:1","nodeType":"YulIdentifier","src":"1728:3:1"},"nativeSrc":"1728:18:1","nodeType":"YulFunctionCall","src":"1728:18:1"}],"functionName":{"name":"calldataload","nativeSrc":"1715:12:1","nodeType":"YulIdentifier","src":"1715:12:1"},"nativeSrc":"1715:32:1","nodeType":"YulFunctionCall","src":"1715:32:1"},"variableNames":[{"name":"value","nativeSrc":"1706:5:1","nodeType":"YulIdentifier","src":"1706:5:1"}]},{"nativeSrc":"1756:15:1","nodeType":"YulAssignment","src":"1756:15:1","value":{"name":"value","nativeSrc":"1766:5:1","nodeType":"YulIdentifier","src":"1766:5:1"},"variableNames":[{"name":"value2","nativeSrc":"1756:6:1","nodeType":"YulIdentifier","src":"1756:6:1"}]}]},"name":"abi_decode_tuple_t_addresst_addresst_uint256","nativeSrc":"1403:374:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1457:9:1","nodeType":"YulTypedName","src":"1457:9:1","type":""},{"name":"dataEnd","nativeSrc":"1468:7:1","nodeType":"YulTypedName","src":"1468:7:1","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"1480:6:1","nodeType":"YulTypedName","src":"1480:6:1","type":""},{"name":"value1","nativeSrc":"1488:6:1","nodeType":"YulTypedName","src":"1488:6:1","type":""},{"name":"value2","nativeSrc":"1496:6:1","nodeType":"YulTypedName","src":"1496:6:1","type":""}],"src":"1403:374:1"},{"body":{"nativeSrc":"1879:87:1","nodeType":"YulBlock","src":"1879:87:1","statements":[{"nativeSrc":"1889:26:1","nodeType":"YulAssignment","src":"1889:26:1","value":{"arguments":[{"name":"headStart","nativeSrc":"1901:9:1","nodeType":"YulIdentifier","src":"1901:9:1"},{"kind":"number","nativeSrc":"1912:2:1","nodeType":"YulLiteral","src":"1912:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1897:3:1","nodeType":"YulIdentifier","src":"1897:3:1"},"nativeSrc":"1897:18:1","nodeType":"YulFunctionCall","src":"1897:18:1"},"variableNames":[{"name":"tail","nativeSrc":"1889:4:1","nodeType":"YulIdentifier","src":"1889:4:1"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"1931:9:1","nodeType":"YulIdentifier","src":"1931:9:1"},{"arguments":[{"name":"value0","nativeSrc":"1946:6:1","nodeType":"YulIdentifier","src":"1946:6:1"},{"kind":"number","nativeSrc":"1954:4:1","nodeType":"YulLiteral","src":"1954:4:1","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"1942:3:1","nodeType":"YulIdentifier","src":"1942:3:1"},"nativeSrc":"1942:17:1","nodeType":"YulFunctionCall","src":"1942:17:1"}],"functionName":{"name":"mstore","nativeSrc":"1924:6:1","nodeType":"YulIdentifier","src":"1924:6:1"},"nativeSrc":"1924:36:1","nodeType":"YulFunctionCall","src":"1924:36:1"},"nativeSrc":"1924:36:1","nodeType":"YulExpressionStatement","src":"1924:36:1"}]},"name":"abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed","nativeSrc":"1782:184:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1848:9:1","nodeType":"YulTypedName","src":"1848:9:1","type":""},{"name":"value0","nativeSrc":"1859:6:1","nodeType":"YulTypedName","src":"1859:6:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"1870:4:1","nodeType":"YulTypedName","src":"1870:4:1","type":""}],"src":"1782:184:1"},{"body":{"nativeSrc":"2041:116:1","nodeType":"YulBlock","src":"2041:116:1","statements":[{"body":{"nativeSrc":"2087:16:1","nodeType":"YulBlock","src":"2087:16:1","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2096:1:1","nodeType":"YulLiteral","src":"2096:1:1","type":"","value":"0"},{"kind":"number","nativeSrc":"2099:1:1","nodeType":"YulLiteral","src":"2099:1:1","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2089:6:1","nodeType":"YulIdentifier","src":"2089:6:1"},"nativeSrc":"2089:12:1","nodeType":"YulFunctionCall","src":"2089:12:1"},"nativeSrc":"2089:12:1","nodeType":"YulExpressionStatement","src":"2089:12:1"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"2062:7:1","nodeType":"YulIdentifier","src":"2062:7:1"},{"name":"headStart","nativeSrc":"2071:9:1","nodeType":"YulIdentifier","src":"2071:9:1"}],"functionName":{"name":"sub","nativeSrc":"2058:3:1","nodeType":"YulIdentifier","src":"2058:3:1"},"nativeSrc":"2058:23:1","nodeType":"YulFunctionCall","src":"2058:23:1"},{"kind":"number","nativeSrc":"2083:2:1","nodeType":"YulLiteral","src":"2083:2:1","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"2054:3:1","nodeType":"YulIdentifier","src":"2054:3:1"},"nativeSrc":"2054:32:1","nodeType":"YulFunctionCall","src":"2054:32:1"},"nativeSrc":"2051:52:1","nodeType":"YulIf","src":"2051:52:1"},{"nativeSrc":"2112:39:1","nodeType":"YulAssignment","src":"2112:39:1","value":{"arguments":[{"name":"headStart","nativeSrc":"2141:9:1","nodeType":"YulIdentifier","src":"2141:9:1"}],"functionName":{"name":"abi_decode_address","nativeSrc":"2122:18:1","nodeType":"YulIdentifier","src":"2122:18:1"},"nativeSrc":"2122:29:1","nodeType":"YulFunctionCall","src":"2122:29:1"},"variableNames":[{"name":"value0","nativeSrc":"2112:6:1","nodeType":"YulIdentifier","src":"2112:6:1"}]}]},"name":"abi_decode_tuple_t_address","nativeSrc":"1971:186:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"2007:9:1","nodeType":"YulTypedName","src":"2007:9:1","type":""},{"name":"dataEnd","nativeSrc":"2018:7:1","nodeType":"YulTypedName","src":"2018:7:1","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"2030:6:1","nodeType":"YulTypedName","src":"2030:6:1","type":""}],"src":"1971:186:1"},{"body":{"nativeSrc":"2249:173:1","nodeType":"YulBlock","src":"2249:173:1","statements":[{"body":{"nativeSrc":"2295:16:1","nodeType":"YulBlock","src":"2295:16:1","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2304:1:1","nodeType":"YulLiteral","src":"2304:1:1","type":"","value":"0"},{"kind":"number","nativeSrc":"2307:1:1","nodeType":"YulLiteral","src":"2307:1:1","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2297:6:1","nodeType":"YulIdentifier","src":"2297:6:1"},"nativeSrc":"2297:12:1","nodeType":"YulFunctionCall","src":"2297:12:1"},"nativeSrc":"2297:12:1","nodeType":"YulExpressionStatement","src":"2297:12:1"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"2270:7:1","nodeType":"YulIdentifier","src":"2270:7:1"},{"name":"headStart","nativeSrc":"2279:9:1","nodeType":"YulIdentifier","src":"2279:9:1"}],"functionName":{"name":"sub","nativeSrc":"2266:3:1","nodeType":"YulIdentifier","src":"2266:3:1"},"nativeSrc":"2266:23:1","nodeType":"YulFunctionCall","src":"2266:23:1"},{"kind":"number","nativeSrc":"2291:2:1","nodeType":"YulLiteral","src":"2291:2:1","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"2262:3:1","nodeType":"YulIdentifier","src":"2262:3:1"},"nativeSrc":"2262:32:1","nodeType":"YulFunctionCall","src":"2262:32:1"},"nativeSrc":"2259:52:1","nodeType":"YulIf","src":"2259:52:1"},{"nativeSrc":"2320:39:1","nodeType":"YulAssignment","src":"2320:39:1","value":{"arguments":[{"name":"headStart","nativeSrc":"2349:9:1","nodeType":"YulIdentifier","src":"2349:9:1"}],"functionName":{"name":"abi_decode_address","nativeSrc":"2330:18:1","nodeType":"YulIdentifier","src":"2330:18:1"},"nativeSrc":"2330:29:1","nodeType":"YulFunctionCall","src":"2330:29:1"},"variableNames":[{"name":"value0","nativeSrc":"2320:6:1","nodeType":"YulIdentifier","src":"2320:6:1"}]},{"nativeSrc":"2368:48:1","nodeType":"YulAssignment","src":"2368:48:1","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"2401:9:1","nodeType":"YulIdentifier","src":"2401:9:1"},{"kind":"number","nativeSrc":"2412:2:1","nodeType":"YulLiteral","src":"2412:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"2397:3:1","nodeType":"YulIdentifier","src":"2397:3:1"},"nativeSrc":"2397:18:1","nodeType":"YulFunctionCall","src":"2397:18:1"}],"functionName":{"name":"abi_decode_address","nativeSrc":"2378:18:1","nodeType":"YulIdentifier","src":"2378:18:1"},"nativeSrc":"2378:38:1","nodeType":"YulFunctionCall","src":"2378:38:1"},"variableNames":[{"name":"value1","nativeSrc":"2368:6:1","nodeType":"YulIdentifier","src":"2368:6:1"}]}]},"name":"abi_decode_tuple_t_addresst_address","nativeSrc":"2162:260:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"2207:9:1","nodeType":"YulTypedName","src":"2207:9:1","type":""},{"name":"dataEnd","nativeSrc":"2218:7:1","nodeType":"YulTypedName","src":"2218:7:1","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"2230:6:1","nodeType":"YulTypedName","src":"2230:6:1","type":""},{"name":"value1","nativeSrc":"2238:6:1","nodeType":"YulTypedName","src":"2238:6:1","type":""}],"src":"2162:260:1"},{"body":{"nativeSrc":"2482:325:1","nodeType":"YulBlock","src":"2482:325:1","statements":[{"nativeSrc":"2492:22:1","nodeType":"YulAssignment","src":"2492:22:1","value":{"arguments":[{"kind":"number","nativeSrc":"2506:1:1","nodeType":"YulLiteral","src":"2506:1:1","type":"","value":"1"},{"name":"data","nativeSrc":"2509:4:1","nodeType":"YulIdentifier","src":"2509:4:1"}],"functionName":{"name":"shr","nativeSrc":"2502:3:1","nodeType":"YulIdentifier","src":"2502:3:1"},"nativeSrc":"2502:12:1","nodeType":"YulFunctionCall","src":"2502:12:1"},"variableNames":[{"name":"length","nativeSrc":"2492:6:1","nodeType":"YulIdentifier","src":"2492:6:1"}]},{"nativeSrc":"2523:38:1","nodeType":"YulVariableDeclaration","src":"2523:38:1","value":{"arguments":[{"name":"data","nativeSrc":"2553:4:1","nodeType":"YulIdentifier","src":"2553:4:1"},{"kind":"number","nativeSrc":"2559:1:1","nodeType":"YulLiteral","src":"2559:1:1","type":"","value":"1"}],"functionName":{"name":"and","nativeSrc":"2549:3:1","nodeType":"YulIdentifier","src":"2549:3:1"},"nativeSrc":"2549:12:1","nodeType":"YulFunctionCall","src":"2549:12:1"},"variables":[{"name":"outOfPlaceEncoding","nativeSrc":"2527:18:1","nodeType":"YulTypedName","src":"2527:18:1","type":""}]},{"body":{"nativeSrc":"2600:31:1","nodeType":"YulBlock","src":"2600:31:1","statements":[{"nativeSrc":"2602:27:1","nodeType":"YulAssignment","src":"2602:27:1","value":{"arguments":[{"name":"length","nativeSrc":"2616:6:1","nodeType":"YulIdentifier","src":"2616:6:1"},{"kind":"number","nativeSrc":"2624:4:1","nodeType":"YulLiteral","src":"2624:4:1","type":"","value":"0x7f"}],"functionName":{"name":"and","nativeSrc":"2612:3:1","nodeType":"YulIdentifier","src":"2612:3:1"},"nativeSrc":"2612:17:1","nodeType":"YulFunctionCall","src":"2612:17:1"},"variableNames":[{"name":"length","nativeSrc":"2602:6:1","nodeType":"YulIdentifier","src":"2602:6:1"}]}]},"condition":{"arguments":[{"name":"outOfPlaceEncoding","nativeSrc":"2580:18:1","nodeType":"YulIdentifier","src":"2580:18:1"}],"functionName":{"name":"iszero","nativeSrc":"2573:6:1","nodeType":"YulIdentifier","src":"2573:6:1"},"nativeSrc":"2573:26:1","nodeType":"YulFunctionCall","src":"2573:26:1"},"nativeSrc":"2570:61:1","nodeType":"YulIf","src":"2570:61:1"},{"body":{"nativeSrc":"2690:111:1","nodeType":"YulBlock","src":"2690:111:1","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2711:1:1","nodeType":"YulLiteral","src":"2711:1:1","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"2718:3:1","nodeType":"YulLiteral","src":"2718:3:1","type":"","value":"224"},{"kind":"number","nativeSrc":"2723:10:1","nodeType":"YulLiteral","src":"2723:10:1","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"2714:3:1","nodeType":"YulIdentifier","src":"2714:3:1"},"nativeSrc":"2714:20:1","nodeType":"YulFunctionCall","src":"2714:20:1"}],"functionName":{"name":"mstore","nativeSrc":"2704:6:1","nodeType":"YulIdentifier","src":"2704:6:1"},"nativeSrc":"2704:31:1","nodeType":"YulFunctionCall","src":"2704:31:1"},"nativeSrc":"2704:31:1","nodeType":"YulExpressionStatement","src":"2704:31:1"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"2755:1:1","nodeType":"YulLiteral","src":"2755:1:1","type":"","value":"4"},{"kind":"number","nativeSrc":"2758:4:1","nodeType":"YulLiteral","src":"2758:4:1","type":"","value":"0x22"}],"functionName":{"name":"mstore","nativeSrc":"2748:6:1","nodeType":"YulIdentifier","src":"2748:6:1"},"nativeSrc":"2748:15:1","nodeType":"YulFunctionCall","src":"2748:15:1"},"nativeSrc":"2748:15:1","nodeType":"YulExpressionStatement","src":"2748:15:1"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"2783:1:1","nodeType":"YulLiteral","src":"2783:1:1","type":"","value":"0"},{"kind":"number","nativeSrc":"2786:4:1","nodeType":"YulLiteral","src":"2786:4:1","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"2776:6:1","nodeType":"YulIdentifier","src":"2776:6:1"},"nativeSrc":"2776:15:1","nodeType":"YulFunctionCall","src":"2776:15:1"},"nativeSrc":"2776:15:1","nodeType":"YulExpressionStatement","src":"2776:15:1"}]},"condition":{"arguments":[{"name":"outOfPlaceEncoding","nativeSrc":"2646:18:1","nodeType":"YulIdentifier","src":"2646:18:1"},{"arguments":[{"name":"length","nativeSrc":"2669:6:1","nodeType":"YulIdentifier","src":"2669:6:1"},{"kind":"number","nativeSrc":"2677:2:1","nodeType":"YulLiteral","src":"2677:2:1","type":"","value":"32"}],"functionName":{"name":"lt","nativeSrc":"2666:2:1","nodeType":"YulIdentifier","src":"2666:2:1"},"nativeSrc":"2666:14:1","nodeType":"YulFunctionCall","src":"2666:14:1"}],"functionName":{"name":"eq","nativeSrc":"2643:2:1","nodeType":"YulIdentifier","src":"2643:2:1"},"nativeSrc":"2643:38:1","nodeType":"YulFunctionCall","src":"2643:38:1"},"nativeSrc":"2640:161:1","nodeType":"YulIf","src":"2640:161:1"}]},"name":"extract_byte_array_length","nativeSrc":"2427:380:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"data","nativeSrc":"2462:4:1","nodeType":"YulTypedName","src":"2462:4:1","type":""}],"returnVariables":[{"name":"length","nativeSrc":"2471:6:1","nodeType":"YulTypedName","src":"2471:6:1","type":""}],"src":"2427:380:1"},{"body":{"nativeSrc":"2860:174:1","nodeType":"YulBlock","src":"2860:174:1","statements":[{"nativeSrc":"2870:16:1","nodeType":"YulAssignment","src":"2870:16:1","value":{"arguments":[{"name":"x","nativeSrc":"2881:1:1","nodeType":"YulIdentifier","src":"2881:1:1"},{"name":"y","nativeSrc":"2884:1:1","nodeType":"YulIdentifier","src":"2884:1:1"}],"functionName":{"name":"add","nativeSrc":"2877:3:1","nodeType":"YulIdentifier","src":"2877:3:1"},"nativeSrc":"2877:9:1","nodeType":"YulFunctionCall","src":"2877:9:1"},"variableNames":[{"name":"sum","nativeSrc":"2870:3:1","nodeType":"YulIdentifier","src":"2870:3:1"}]},{"body":{"nativeSrc":"2917:111:1","nodeType":"YulBlock","src":"2917:111:1","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2938:1:1","nodeType":"YulLiteral","src":"2938:1:1","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"2945:3:1","nodeType":"YulLiteral","src":"2945:3:1","type":"","value":"224"},{"kind":"number","nativeSrc":"2950:10:1","nodeType":"YulLiteral","src":"2950:10:1","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"2941:3:1","nodeType":"YulIdentifier","src":"2941:3:1"},"nativeSrc":"2941:20:1","nodeType":"YulFunctionCall","src":"2941:20:1"}],"functionName":{"name":"mstore","nativeSrc":"2931:6:1","nodeType":"YulIdentifier","src":"2931:6:1"},"nativeSrc":"2931:31:1","nodeType":"YulFunctionCall","src":"2931:31:1"},"nativeSrc":"2931:31:1","nodeType":"YulExpressionStatement","src":"2931:31:1"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"2982:1:1","nodeType":"YulLiteral","src":"2982:1:1","type":"","value":"4"},{"kind":"number","nativeSrc":"2985:4:1","nodeType":"YulLiteral","src":"2985:4:1","type":"","value":"0x11"}],"functionName":{"name":"mstore","nativeSrc":"2975:6:1","nodeType":"YulIdentifier","src":"2975:6:1"},"nativeSrc":"2975:15:1","nodeType":"YulFunctionCall","src":"2975:15:1"},"nativeSrc":"2975:15:1","nodeType":"YulExpressionStatement","src":"2975:15:1"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"3010:1:1","nodeType":"YulLiteral","src":"3010:1:1","type":"","value":"0"},{"kind":"number","nativeSrc":"3013:4:1","nodeType":"YulLiteral","src":"3013:4:1","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"3003:6:1","nodeType":"YulIdentifier","src":"3003:6:1"},"nativeSrc":"3003:15:1","nodeType":"YulFunctionCall","src":"3003:15:1"},"nativeSrc":"3003:15:1","nodeType":"YulExpressionStatement","src":"3003:15:1"}]},"condition":{"arguments":[{"name":"x","nativeSrc":"2901:1:1","nodeType":"YulIdentifier","src":"2901:1:1"},{"name":"sum","nativeSrc":"2904:3:1","nodeType":"YulIdentifier","src":"2904:3:1"}],"functionName":{"name":"gt","nativeSrc":"2898:2:1","nodeType":"YulIdentifier","src":"2898:2:1"},"nativeSrc":"2898:10:1","nodeType":"YulFunctionCall","src":"2898:10:1"},"nativeSrc":"2895:133:1","nodeType":"YulIf","src":"2895:133:1"}]},"name":"checked_add_t_uint256","nativeSrc":"2812:222:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"2843:1:1","nodeType":"YulTypedName","src":"2843:1:1","type":""},{"name":"y","nativeSrc":"2846:1:1","nodeType":"YulTypedName","src":"2846:1:1","type":""}],"returnVariables":[{"name":"sum","nativeSrc":"2852:3:1","nodeType":"YulTypedName","src":"2852:3:1","type":""}],"src":"2812:222:1"},{"body":{"nativeSrc":"3213:227:1","nodeType":"YulBlock","src":"3213:227:1","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"3230:9:1","nodeType":"YulIdentifier","src":"3230:9:1"},{"kind":"number","nativeSrc":"3241:2:1","nodeType":"YulLiteral","src":"3241:2:1","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"3223:6:1","nodeType":"YulIdentifier","src":"3223:6:1"},"nativeSrc":"3223:21:1","nodeType":"YulFunctionCall","src":"3223:21:1"},"nativeSrc":"3223:21:1","nodeType":"YulExpressionStatement","src":"3223:21:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3264:9:1","nodeType":"YulIdentifier","src":"3264:9:1"},{"kind":"number","nativeSrc":"3275:2:1","nodeType":"YulLiteral","src":"3275:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"3260:3:1","nodeType":"YulIdentifier","src":"3260:3:1"},"nativeSrc":"3260:18:1","nodeType":"YulFunctionCall","src":"3260:18:1"},{"kind":"number","nativeSrc":"3280:2:1","nodeType":"YulLiteral","src":"3280:2:1","type":"","value":"37"}],"functionName":{"name":"mstore","nativeSrc":"3253:6:1","nodeType":"YulIdentifier","src":"3253:6:1"},"nativeSrc":"3253:30:1","nodeType":"YulFunctionCall","src":"3253:30:1"},"nativeSrc":"3253:30:1","nodeType":"YulExpressionStatement","src":"3253:30:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3303:9:1","nodeType":"YulIdentifier","src":"3303:9:1"},{"kind":"number","nativeSrc":"3314:2:1","nodeType":"YulLiteral","src":"3314:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"3299:3:1","nodeType":"YulIdentifier","src":"3299:3:1"},"nativeSrc":"3299:18:1","nodeType":"YulFunctionCall","src":"3299:18:1"},{"hexValue":"45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77","kind":"string","nativeSrc":"3319:34:1","nodeType":"YulLiteral","src":"3319:34:1","type":"","value":"ERC20: decreased allowance below"}],"functionName":{"name":"mstore","nativeSrc":"3292:6:1","nodeType":"YulIdentifier","src":"3292:6:1"},"nativeSrc":"3292:62:1","nodeType":"YulFunctionCall","src":"3292:62:1"},"nativeSrc":"3292:62:1","nodeType":"YulExpressionStatement","src":"3292:62:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3374:9:1","nodeType":"YulIdentifier","src":"3374:9:1"},{"kind":"number","nativeSrc":"3385:2:1","nodeType":"YulLiteral","src":"3385:2:1","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"3370:3:1","nodeType":"YulIdentifier","src":"3370:3:1"},"nativeSrc":"3370:18:1","nodeType":"YulFunctionCall","src":"3370:18:1"},{"hexValue":"207a65726f","kind":"string","nativeSrc":"3390:7:1","nodeType":"YulLiteral","src":"3390:7:1","type":"","value":" zero"}],"functionName":{"name":"mstore","nativeSrc":"3363:6:1","nodeType":"YulIdentifier","src":"3363:6:1"},"nativeSrc":"3363:35:1","nodeType":"YulFunctionCall","src":"3363:35:1"},"nativeSrc":"3363:35:1","nodeType":"YulExpressionStatement","src":"3363:35:1"},{"nativeSrc":"3407:27:1","nodeType":"YulAssignment","src":"3407:27:1","value":{"arguments":[{"name":"headStart","nativeSrc":"3419:9:1","nodeType":"YulIdentifier","src":"3419:9:1"},{"kind":"number","nativeSrc":"3430:3:1","nodeType":"YulLiteral","src":"3430:3:1","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"3415:3:1","nodeType":"YulIdentifier","src":"3415:3:1"},"nativeSrc":"3415:19:1","nodeType":"YulFunctionCall","src":"3415:19:1"},"variableNames":[{"name":"tail","nativeSrc":"3407:4:1","nodeType":"YulIdentifier","src":"3407:4:1"}]}]},"name":"abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"3039:401:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"3190:9:1","nodeType":"YulTypedName","src":"3190:9:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"3204:4:1","nodeType":"YulTypedName","src":"3204:4:1","type":""}],"src":"3039:401:1"},{"body":{"nativeSrc":"3619:226:1","nodeType":"YulBlock","src":"3619:226:1","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"3636:9:1","nodeType":"YulIdentifier","src":"3636:9:1"},{"kind":"number","nativeSrc":"3647:2:1","nodeType":"YulLiteral","src":"3647:2:1","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"3629:6:1","nodeType":"YulIdentifier","src":"3629:6:1"},"nativeSrc":"3629:21:1","nodeType":"YulFunctionCall","src":"3629:21:1"},"nativeSrc":"3629:21:1","nodeType":"YulExpressionStatement","src":"3629:21:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3670:9:1","nodeType":"YulIdentifier","src":"3670:9:1"},{"kind":"number","nativeSrc":"3681:2:1","nodeType":"YulLiteral","src":"3681:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"3666:3:1","nodeType":"YulIdentifier","src":"3666:3:1"},"nativeSrc":"3666:18:1","nodeType":"YulFunctionCall","src":"3666:18:1"},{"kind":"number","nativeSrc":"3686:2:1","nodeType":"YulLiteral","src":"3686:2:1","type":"","value":"36"}],"functionName":{"name":"mstore","nativeSrc":"3659:6:1","nodeType":"YulIdentifier","src":"3659:6:1"},"nativeSrc":"3659:30:1","nodeType":"YulFunctionCall","src":"3659:30:1"},"nativeSrc":"3659:30:1","nodeType":"YulExpressionStatement","src":"3659:30:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3709:9:1","nodeType":"YulIdentifier","src":"3709:9:1"},{"kind":"number","nativeSrc":"3720:2:1","nodeType":"YulLiteral","src":"3720:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"3705:3:1","nodeType":"YulIdentifier","src":"3705:3:1"},"nativeSrc":"3705:18:1","nodeType":"YulFunctionCall","src":"3705:18:1"},{"hexValue":"45524332303a20617070726f76652066726f6d20746865207a65726f20616464","kind":"string","nativeSrc":"3725:34:1","nodeType":"YulLiteral","src":"3725:34:1","type":"","value":"ERC20: approve from the zero add"}],"functionName":{"name":"mstore","nativeSrc":"3698:6:1","nodeType":"YulIdentifier","src":"3698:6:1"},"nativeSrc":"3698:62:1","nodeType":"YulFunctionCall","src":"3698:62:1"},"nativeSrc":"3698:62:1","nodeType":"YulExpressionStatement","src":"3698:62:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3780:9:1","nodeType":"YulIdentifier","src":"3780:9:1"},{"kind":"number","nativeSrc":"3791:2:1","nodeType":"YulLiteral","src":"3791:2:1","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"3776:3:1","nodeType":"YulIdentifier","src":"3776:3:1"},"nativeSrc":"3776:18:1","nodeType":"YulFunctionCall","src":"3776:18:1"},{"hexValue":"72657373","kind":"string","nativeSrc":"3796:6:1","nodeType":"YulLiteral","src":"3796:6:1","type":"","value":"ress"}],"functionName":{"name":"mstore","nativeSrc":"3769:6:1","nodeType":"YulIdentifier","src":"3769:6:1"},"nativeSrc":"3769:34:1","nodeType":"YulFunctionCall","src":"3769:34:1"},"nativeSrc":"3769:34:1","nodeType":"YulExpressionStatement","src":"3769:34:1"},{"nativeSrc":"3812:27:1","nodeType":"YulAssignment","src":"3812:27:1","value":{"arguments":[{"name":"headStart","nativeSrc":"3824:9:1","nodeType":"YulIdentifier","src":"3824:9:1"},{"kind":"number","nativeSrc":"3835:3:1","nodeType":"YulLiteral","src":"3835:3:1","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"3820:3:1","nodeType":"YulIdentifier","src":"3820:3:1"},"nativeSrc":"3820:19:1","nodeType":"YulFunctionCall","src":"3820:19:1"},"variableNames":[{"name":"tail","nativeSrc":"3812:4:1","nodeType":"YulIdentifier","src":"3812:4:1"}]}]},"name":"abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"3445:400:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"3596:9:1","nodeType":"YulTypedName","src":"3596:9:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"3610:4:1","nodeType":"YulTypedName","src":"3610:4:1","type":""}],"src":"3445:400:1"},{"body":{"nativeSrc":"4024:224:1","nodeType":"YulBlock","src":"4024:224:1","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"4041:9:1","nodeType":"YulIdentifier","src":"4041:9:1"},{"kind":"number","nativeSrc":"4052:2:1","nodeType":"YulLiteral","src":"4052:2:1","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"4034:6:1","nodeType":"YulIdentifier","src":"4034:6:1"},"nativeSrc":"4034:21:1","nodeType":"YulFunctionCall","src":"4034:21:1"},"nativeSrc":"4034:21:1","nodeType":"YulExpressionStatement","src":"4034:21:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4075:9:1","nodeType":"YulIdentifier","src":"4075:9:1"},{"kind":"number","nativeSrc":"4086:2:1","nodeType":"YulLiteral","src":"4086:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"4071:3:1","nodeType":"YulIdentifier","src":"4071:3:1"},"nativeSrc":"4071:18:1","nodeType":"YulFunctionCall","src":"4071:18:1"},{"kind":"number","nativeSrc":"4091:2:1","nodeType":"YulLiteral","src":"4091:2:1","type":"","value":"34"}],"functionName":{"name":"mstore","nativeSrc":"4064:6:1","nodeType":"YulIdentifier","src":"4064:6:1"},"nativeSrc":"4064:30:1","nodeType":"YulFunctionCall","src":"4064:30:1"},"nativeSrc":"4064:30:1","nodeType":"YulExpressionStatement","src":"4064:30:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4114:9:1","nodeType":"YulIdentifier","src":"4114:9:1"},{"kind":"number","nativeSrc":"4125:2:1","nodeType":"YulLiteral","src":"4125:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"4110:3:1","nodeType":"YulIdentifier","src":"4110:3:1"},"nativeSrc":"4110:18:1","nodeType":"YulFunctionCall","src":"4110:18:1"},{"hexValue":"45524332303a20617070726f766520746f20746865207a65726f206164647265","kind":"string","nativeSrc":"4130:34:1","nodeType":"YulLiteral","src":"4130:34:1","type":"","value":"ERC20: approve to the zero addre"}],"functionName":{"name":"mstore","nativeSrc":"4103:6:1","nodeType":"YulIdentifier","src":"4103:6:1"},"nativeSrc":"4103:62:1","nodeType":"YulFunctionCall","src":"4103:62:1"},"nativeSrc":"4103:62:1","nodeType":"YulExpressionStatement","src":"4103:62:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4185:9:1","nodeType":"YulIdentifier","src":"4185:9:1"},{"kind":"number","nativeSrc":"4196:2:1","nodeType":"YulLiteral","src":"4196:2:1","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"4181:3:1","nodeType":"YulIdentifier","src":"4181:3:1"},"nativeSrc":"4181:18:1","nodeType":"YulFunctionCall","src":"4181:18:1"},{"hexValue":"7373","kind":"string","nativeSrc":"4201:4:1","nodeType":"YulLiteral","src":"4201:4:1","type":"","value":"ss"}],"functionName":{"name":"mstore","nativeSrc":"4174:6:1","nodeType":"YulIdentifier","src":"4174:6:1"},"nativeSrc":"4174:32:1","nodeType":"YulFunctionCall","src":"4174:32:1"},"nativeSrc":"4174:32:1","nodeType":"YulExpressionStatement","src":"4174:32:1"},{"nativeSrc":"4215:27:1","nodeType":"YulAssignment","src":"4215:27:1","value":{"arguments":[{"name":"headStart","nativeSrc":"4227:9:1","nodeType":"YulIdentifier","src":"4227:9:1"},{"kind":"number","nativeSrc":"4238:3:1","nodeType":"YulLiteral","src":"4238:3:1","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"4223:3:1","nodeType":"YulIdentifier","src":"4223:3:1"},"nativeSrc":"4223:19:1","nodeType":"YulFunctionCall","src":"4223:19:1"},"variableNames":[{"name":"tail","nativeSrc":"4215:4:1","nodeType":"YulIdentifier","src":"4215:4:1"}]}]},"name":"abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"3850:398:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"4001:9:1","nodeType":"YulTypedName","src":"4001:9:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"4015:4:1","nodeType":"YulTypedName","src":"4015:4:1","type":""}],"src":"3850:398:1"},{"body":{"nativeSrc":"4427:179:1","nodeType":"YulBlock","src":"4427:179:1","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"4444:9:1","nodeType":"YulIdentifier","src":"4444:9:1"},{"kind":"number","nativeSrc":"4455:2:1","nodeType":"YulLiteral","src":"4455:2:1","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"4437:6:1","nodeType":"YulIdentifier","src":"4437:6:1"},"nativeSrc":"4437:21:1","nodeType":"YulFunctionCall","src":"4437:21:1"},"nativeSrc":"4437:21:1","nodeType":"YulExpressionStatement","src":"4437:21:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4478:9:1","nodeType":"YulIdentifier","src":"4478:9:1"},{"kind":"number","nativeSrc":"4489:2:1","nodeType":"YulLiteral","src":"4489:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"4474:3:1","nodeType":"YulIdentifier","src":"4474:3:1"},"nativeSrc":"4474:18:1","nodeType":"YulFunctionCall","src":"4474:18:1"},{"kind":"number","nativeSrc":"4494:2:1","nodeType":"YulLiteral","src":"4494:2:1","type":"","value":"29"}],"functionName":{"name":"mstore","nativeSrc":"4467:6:1","nodeType":"YulIdentifier","src":"4467:6:1"},"nativeSrc":"4467:30:1","nodeType":"YulFunctionCall","src":"4467:30:1"},"nativeSrc":"4467:30:1","nodeType":"YulExpressionStatement","src":"4467:30:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4517:9:1","nodeType":"YulIdentifier","src":"4517:9:1"},{"kind":"number","nativeSrc":"4528:2:1","nodeType":"YulLiteral","src":"4528:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"4513:3:1","nodeType":"YulIdentifier","src":"4513:3:1"},"nativeSrc":"4513:18:1","nodeType":"YulFunctionCall","src":"4513:18:1"},{"hexValue":"45524332303a20696e73756666696369656e7420616c6c6f77616e6365","kind":"string","nativeSrc":"4533:31:1","nodeType":"YulLiteral","src":"4533:31:1","type":"","value":"ERC20: insufficient allowance"}],"functionName":{"name":"mstore","nativeSrc":"4506:6:1","nodeType":"YulIdentifier","src":"4506:6:1"},"nativeSrc":"4506:59:1","nodeType":"YulFunctionCall","src":"4506:59:1"},"nativeSrc":"4506:59:1","nodeType":"YulExpressionStatement","src":"4506:59:1"},{"nativeSrc":"4574:26:1","nodeType":"YulAssignment","src":"4574:26:1","value":{"arguments":[{"name":"headStart","nativeSrc":"4586:9:1","nodeType":"YulIdentifier","src":"4586:9:1"},{"kind":"number","nativeSrc":"4597:2:1","nodeType":"YulLiteral","src":"4597:2:1","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"4582:3:1","nodeType":"YulIdentifier","src":"4582:3:1"},"nativeSrc":"4582:18:1","nodeType":"YulFunctionCall","src":"4582:18:1"},"variableNames":[{"name":"tail","nativeSrc":"4574:4:1","nodeType":"YulIdentifier","src":"4574:4:1"}]}]},"name":"abi_encode_tuple_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"4253:353:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"4404:9:1","nodeType":"YulTypedName","src":"4404:9:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"4418:4:1","nodeType":"YulTypedName","src":"4418:4:1","type":""}],"src":"4253:353:1"},{"body":{"nativeSrc":"4785:227:1","nodeType":"YulBlock","src":"4785:227:1","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"4802:9:1","nodeType":"YulIdentifier","src":"4802:9:1"},{"kind":"number","nativeSrc":"4813:2:1","nodeType":"YulLiteral","src":"4813:2:1","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"4795:6:1","nodeType":"YulIdentifier","src":"4795:6:1"},"nativeSrc":"4795:21:1","nodeType":"YulFunctionCall","src":"4795:21:1"},"nativeSrc":"4795:21:1","nodeType":"YulExpressionStatement","src":"4795:21:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4836:9:1","nodeType":"YulIdentifier","src":"4836:9:1"},{"kind":"number","nativeSrc":"4847:2:1","nodeType":"YulLiteral","src":"4847:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"4832:3:1","nodeType":"YulIdentifier","src":"4832:3:1"},"nativeSrc":"4832:18:1","nodeType":"YulFunctionCall","src":"4832:18:1"},{"kind":"number","nativeSrc":"4852:2:1","nodeType":"YulLiteral","src":"4852:2:1","type":"","value":"37"}],"functionName":{"name":"mstore","nativeSrc":"4825:6:1","nodeType":"YulIdentifier","src":"4825:6:1"},"nativeSrc":"4825:30:1","nodeType":"YulFunctionCall","src":"4825:30:1"},"nativeSrc":"4825:30:1","nodeType":"YulExpressionStatement","src":"4825:30:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4875:9:1","nodeType":"YulIdentifier","src":"4875:9:1"},{"kind":"number","nativeSrc":"4886:2:1","nodeType":"YulLiteral","src":"4886:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"4871:3:1","nodeType":"YulIdentifier","src":"4871:3:1"},"nativeSrc":"4871:18:1","nodeType":"YulFunctionCall","src":"4871:18:1"},{"hexValue":"45524332303a207472616e736665722066726f6d20746865207a65726f206164","kind":"string","nativeSrc":"4891:34:1","nodeType":"YulLiteral","src":"4891:34:1","type":"","value":"ERC20: transfer from the zero ad"}],"functionName":{"name":"mstore","nativeSrc":"4864:6:1","nodeType":"YulIdentifier","src":"4864:6:1"},"nativeSrc":"4864:62:1","nodeType":"YulFunctionCall","src":"4864:62:1"},"nativeSrc":"4864:62:1","nodeType":"YulExpressionStatement","src":"4864:62:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4946:9:1","nodeType":"YulIdentifier","src":"4946:9:1"},{"kind":"number","nativeSrc":"4957:2:1","nodeType":"YulLiteral","src":"4957:2:1","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"4942:3:1","nodeType":"YulIdentifier","src":"4942:3:1"},"nativeSrc":"4942:18:1","nodeType":"YulFunctionCall","src":"4942:18:1"},{"hexValue":"6472657373","kind":"string","nativeSrc":"4962:7:1","nodeType":"YulLiteral","src":"4962:7:1","type":"","value":"dress"}],"functionName":{"name":"mstore","nativeSrc":"4935:6:1","nodeType":"YulIdentifier","src":"4935:6:1"},"nativeSrc":"4935:35:1","nodeType":"YulFunctionCall","src":"4935:35:1"},"nativeSrc":"4935:35:1","nodeType":"YulExpressionStatement","src":"4935:35:1"},{"nativeSrc":"4979:27:1","nodeType":"YulAssignment","src":"4979:27:1","value":{"arguments":[{"name":"headStart","nativeSrc":"4991:9:1","nodeType":"YulIdentifier","src":"4991:9:1"},{"kind":"number","nativeSrc":"5002:3:1","nodeType":"YulLiteral","src":"5002:3:1","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"4987:3:1","nodeType":"YulIdentifier","src":"4987:3:1"},"nativeSrc":"4987:19:1","nodeType":"YulFunctionCall","src":"4987:19:1"},"variableNames":[{"name":"tail","nativeSrc":"4979:4:1","nodeType":"YulIdentifier","src":"4979:4:1"}]}]},"name":"abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"4611:401:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"4762:9:1","nodeType":"YulTypedName","src":"4762:9:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"4776:4:1","nodeType":"YulTypedName","src":"4776:4:1","type":""}],"src":"4611:401:1"},{"body":{"nativeSrc":"5191:225:1","nodeType":"YulBlock","src":"5191:225:1","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"5208:9:1","nodeType":"YulIdentifier","src":"5208:9:1"},{"kind":"number","nativeSrc":"5219:2:1","nodeType":"YulLiteral","src":"5219:2:1","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"5201:6:1","nodeType":"YulIdentifier","src":"5201:6:1"},"nativeSrc":"5201:21:1","nodeType":"YulFunctionCall","src":"5201:21:1"},"nativeSrc":"5201:21:1","nodeType":"YulExpressionStatement","src":"5201:21:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5242:9:1","nodeType":"YulIdentifier","src":"5242:9:1"},{"kind":"number","nativeSrc":"5253:2:1","nodeType":"YulLiteral","src":"5253:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"5238:3:1","nodeType":"YulIdentifier","src":"5238:3:1"},"nativeSrc":"5238:18:1","nodeType":"YulFunctionCall","src":"5238:18:1"},{"kind":"number","nativeSrc":"5258:2:1","nodeType":"YulLiteral","src":"5258:2:1","type":"","value":"35"}],"functionName":{"name":"mstore","nativeSrc":"5231:6:1","nodeType":"YulIdentifier","src":"5231:6:1"},"nativeSrc":"5231:30:1","nodeType":"YulFunctionCall","src":"5231:30:1"},"nativeSrc":"5231:30:1","nodeType":"YulExpressionStatement","src":"5231:30:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5281:9:1","nodeType":"YulIdentifier","src":"5281:9:1"},{"kind":"number","nativeSrc":"5292:2:1","nodeType":"YulLiteral","src":"5292:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"5277:3:1","nodeType":"YulIdentifier","src":"5277:3:1"},"nativeSrc":"5277:18:1","nodeType":"YulFunctionCall","src":"5277:18:1"},{"hexValue":"45524332303a207472616e7366657220746f20746865207a65726f2061646472","kind":"string","nativeSrc":"5297:34:1","nodeType":"YulLiteral","src":"5297:34:1","type":"","value":"ERC20: transfer to the zero addr"}],"functionName":{"name":"mstore","nativeSrc":"5270:6:1","nodeType":"YulIdentifier","src":"5270:6:1"},"nativeSrc":"5270:62:1","nodeType":"YulFunctionCall","src":"5270:62:1"},"nativeSrc":"5270:62:1","nodeType":"YulExpressionStatement","src":"5270:62:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5352:9:1","nodeType":"YulIdentifier","src":"5352:9:1"},{"kind":"number","nativeSrc":"5363:2:1","nodeType":"YulLiteral","src":"5363:2:1","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"5348:3:1","nodeType":"YulIdentifier","src":"5348:3:1"},"nativeSrc":"5348:18:1","nodeType":"YulFunctionCall","src":"5348:18:1"},{"hexValue":"657373","kind":"string","nativeSrc":"5368:5:1","nodeType":"YulLiteral","src":"5368:5:1","type":"","value":"ess"}],"functionName":{"name":"mstore","nativeSrc":"5341:6:1","nodeType":"YulIdentifier","src":"5341:6:1"},"nativeSrc":"5341:33:1","nodeType":"YulFunctionCall","src":"5341:33:1"},"nativeSrc":"5341:33:1","nodeType":"YulExpressionStatement","src":"5341:33:1"},{"nativeSrc":"5383:27:1","nodeType":"YulAssignment","src":"5383:27:1","value":{"arguments":[{"name":"headStart","nativeSrc":"5395:9:1","nodeType":"YulIdentifier","src":"5395:9:1"},{"kind":"number","nativeSrc":"5406:3:1","nodeType":"YulLiteral","src":"5406:3:1","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"5391:3:1","nodeType":"YulIdentifier","src":"5391:3:1"},"nativeSrc":"5391:19:1","nodeType":"YulFunctionCall","src":"5391:19:1"},"variableNames":[{"name":"tail","nativeSrc":"5383:4:1","nodeType":"YulIdentifier","src":"5383:4:1"}]}]},"name":"abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"5017:399:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"5168:9:1","nodeType":"YulTypedName","src":"5168:9:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"5182:4:1","nodeType":"YulTypedName","src":"5182:4:1","type":""}],"src":"5017:399:1"},{"body":{"nativeSrc":"5595:228:1","nodeType":"YulBlock","src":"5595:228:1","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"5612:9:1","nodeType":"YulIdentifier","src":"5612:9:1"},{"kind":"number","nativeSrc":"5623:2:1","nodeType":"YulLiteral","src":"5623:2:1","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"5605:6:1","nodeType":"YulIdentifier","src":"5605:6:1"},"nativeSrc":"5605:21:1","nodeType":"YulFunctionCall","src":"5605:21:1"},"nativeSrc":"5605:21:1","nodeType":"YulExpressionStatement","src":"5605:21:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5646:9:1","nodeType":"YulIdentifier","src":"5646:9:1"},{"kind":"number","nativeSrc":"5657:2:1","nodeType":"YulLiteral","src":"5657:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"5642:3:1","nodeType":"YulIdentifier","src":"5642:3:1"},"nativeSrc":"5642:18:1","nodeType":"YulFunctionCall","src":"5642:18:1"},{"kind":"number","nativeSrc":"5662:2:1","nodeType":"YulLiteral","src":"5662:2:1","type":"","value":"38"}],"functionName":{"name":"mstore","nativeSrc":"5635:6:1","nodeType":"YulIdentifier","src":"5635:6:1"},"nativeSrc":"5635:30:1","nodeType":"YulFunctionCall","src":"5635:30:1"},"nativeSrc":"5635:30:1","nodeType":"YulExpressionStatement","src":"5635:30:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5685:9:1","nodeType":"YulIdentifier","src":"5685:9:1"},{"kind":"number","nativeSrc":"5696:2:1","nodeType":"YulLiteral","src":"5696:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"5681:3:1","nodeType":"YulIdentifier","src":"5681:3:1"},"nativeSrc":"5681:18:1","nodeType":"YulFunctionCall","src":"5681:18:1"},{"hexValue":"45524332303a207472616e7366657220616d6f756e7420657863656564732062","kind":"string","nativeSrc":"5701:34:1","nodeType":"YulLiteral","src":"5701:34:1","type":"","value":"ERC20: transfer amount exceeds b"}],"functionName":{"name":"mstore","nativeSrc":"5674:6:1","nodeType":"YulIdentifier","src":"5674:6:1"},"nativeSrc":"5674:62:1","nodeType":"YulFunctionCall","src":"5674:62:1"},"nativeSrc":"5674:62:1","nodeType":"YulExpressionStatement","src":"5674:62:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5756:9:1","nodeType":"YulIdentifier","src":"5756:9:1"},{"kind":"number","nativeSrc":"5767:2:1","nodeType":"YulLiteral","src":"5767:2:1","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"5752:3:1","nodeType":"YulIdentifier","src":"5752:3:1"},"nativeSrc":"5752:18:1","nodeType":"YulFunctionCall","src":"5752:18:1"},{"hexValue":"616c616e6365","kind":"string","nativeSrc":"5772:8:1","nodeType":"YulLiteral","src":"5772:8:1","type":"","value":"alance"}],"functionName":{"name":"mstore","nativeSrc":"5745:6:1","nodeType":"YulIdentifier","src":"5745:6:1"},"nativeSrc":"5745:36:1","nodeType":"YulFunctionCall","src":"5745:36:1"},"nativeSrc":"5745:36:1","nodeType":"YulExpressionStatement","src":"5745:36:1"},{"nativeSrc":"5790:27:1","nodeType":"YulAssignment","src":"5790:27:1","value":{"arguments":[{"name":"headStart","nativeSrc":"5802:9:1","nodeType":"YulIdentifier","src":"5802:9:1"},{"kind":"number","nativeSrc":"5813:3:1","nodeType":"YulLiteral","src":"5813:3:1","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"5798:3:1","nodeType":"YulIdentifier","src":"5798:3:1"},"nativeSrc":"5798:19:1","nodeType":"YulFunctionCall","src":"5798:19:1"},"variableNames":[{"name":"tail","nativeSrc":"5790:4:1","nodeType":"YulIdentifier","src":"5790:4:1"}]}]},"name":"abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"5421:402:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"5572:9:1","nodeType":"YulTypedName","src":"5572:9:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"5586:4:1","nodeType":"YulTypedName","src":"5586:4:1","type":""}],"src":"5421:402:1"}]},"contents":"{\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        let i := 0\n        for { } lt(i, length) { i := add(i, 32) }\n        {\n            mstore(add(add(headStart, i), 64), mload(add(add(value0, i), 32)))\n        }\n        mstore(add(add(headStart, length), 64), 0)\n        tail := add(add(headStart, and(add(length, 31), not(31))), 64)\n    }\n    function abi_decode_address(offset) -> value\n    {\n        value := calldataload(offset)\n        if iszero(eq(value, and(value, sub(shl(160, 1), 1)))) { revert(0, 0) }\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        let value := 0\n        value := calldataload(add(headStart, 32))\n        value1 := value\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_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        let value := 0\n        value := calldataload(add(headStart, 64))\n        value2 := value\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 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 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 checked_add_t_uint256(x, y) -> sum\n    {\n        sum := add(x, y)\n        if gt(x, sum)\n        {\n            mstore(0, shl(224, 0x4e487b71))\n            mstore(4, 0x11)\n            revert(0, 0x24)\n        }\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_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_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_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe__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), \"ERC20: insufficient allowance\")\n        tail := add(headStart, 96)\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_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_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}","id":1,"language":"Yul","name":"#utility.yul"}],"immutableReferences":{},"linkReferences":{},"object":"608060405234801561001057600080fd5b50600436106100a95760003560e01c80633950935111610071578063395093511461012357806370a082311461013657806395d89b411461015f578063a457c2d714610167578063a9059cbb1461017a578063dd62ed3e1461018d57600080fd5b806306fdde03146100ae578063095ea7b3146100cc57806318160ddd146100ef57806323b872dd14610101578063313ce56714610114575b600080fd5b6100b66101a0565b6040516100c3919061069c565b60405180910390f35b6100df6100da366004610706565b610232565b60405190151581526020016100c3565b6002545b6040519081526020016100c3565b6100df61010f366004610730565b61024c565b604051601281526020016100c3565b6100df610131366004610706565b610270565b6100f361014436600461076d565b6001600160a01b031660009081526020819052604090205490565b6100b6610292565b6100df610175366004610706565b6102a1565b6100df610188366004610706565b610321565b6100f361019b36600461078f565b61032f565b6060600380546101af906107c2565b80601f01602080910402602001604051908101604052809291908181526020018280546101db906107c2565b80156102285780601f106101fd57610100808354040283529160200191610228565b820191906000526020600020905b81548152906001019060200180831161020b57829003601f168201915b5050505050905090565b60003361024081858561035a565b60019150505b92915050565b60003361025a85828561047e565b6102658585856104f8565b506001949350505050565b600033610240818585610283838361032f565b61028d91906107fc565b61035a565b6060600480546101af906107c2565b600033816102af828661032f565b9050838110156103145760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b610265828686840361035a565b6000336102408185856104f8565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6001600160a01b0383166103bc5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161030b565b6001600160a01b03821661041d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161030b565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600061048a848461032f565b905060001981146104f257818110156104e55760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161030b565b6104f2848484840361035a565b50505050565b6001600160a01b03831661055c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161030b565b6001600160a01b0382166105be5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161030b565b6001600160a01b038316600090815260208190526040902054818110156106365760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161030b565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36104f2565b602081526000825180602084015260005b818110156106ca57602081860181015160408684010152016106ad565b506000604082850101526040601f19601f83011684010191505092915050565b80356001600160a01b038116811461070157600080fd5b919050565b6000806040838503121561071957600080fd5b610722836106ea565b946020939093013593505050565b60008060006060848603121561074557600080fd5b61074e846106ea565b925061075c602085016106ea565b929592945050506040919091013590565b60006020828403121561077f57600080fd5b610788826106ea565b9392505050565b600080604083850312156107a257600080fd5b6107ab836106ea565b91506107b9602084016106ea565b90509250929050565b600181811c908216806107d657607f821691505b6020821081036107f657634e487b7160e01b600052602260045260246000fd5b50919050565b8082018082111561024657634e487b7160e01b600052601160045260246000fdfea2646970667358221220b4000606e4c44074660b02f904b03e6b20397248b9527d0bf274ff9a08f6b98c64736f6c634300081b0033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xA9 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x39509351 GT PUSH2 0x71 JUMPI DUP1 PUSH4 0x39509351 EQ PUSH2 0x123 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x136 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x15F JUMPI DUP1 PUSH4 0xA457C2D7 EQ PUSH2 0x167 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x17A JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x18D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0xAE JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0xCC JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0xEF JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x101 JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x114 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xB6 PUSH2 0x1A0 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xC3 SWAP2 SWAP1 PUSH2 0x69C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xDF PUSH2 0xDA CALLDATASIZE PUSH1 0x4 PUSH2 0x706 JUMP JUMPDEST PUSH2 0x232 JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xC3 JUMP JUMPDEST PUSH1 0x2 SLOAD JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xC3 JUMP JUMPDEST PUSH2 0xDF PUSH2 0x10F CALLDATASIZE PUSH1 0x4 PUSH2 0x730 JUMP JUMPDEST PUSH2 0x24C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x12 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xC3 JUMP JUMPDEST PUSH2 0xDF PUSH2 0x131 CALLDATASIZE PUSH1 0x4 PUSH2 0x706 JUMP JUMPDEST PUSH2 0x270 JUMP JUMPDEST PUSH2 0xF3 PUSH2 0x144 CALLDATASIZE PUSH1 0x4 PUSH2 0x76D 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 0xB6 PUSH2 0x292 JUMP JUMPDEST PUSH2 0xDF PUSH2 0x175 CALLDATASIZE PUSH1 0x4 PUSH2 0x706 JUMP JUMPDEST PUSH2 0x2A1 JUMP JUMPDEST PUSH2 0xDF PUSH2 0x188 CALLDATASIZE PUSH1 0x4 PUSH2 0x706 JUMP JUMPDEST PUSH2 0x321 JUMP JUMPDEST PUSH2 0xF3 PUSH2 0x19B CALLDATASIZE PUSH1 0x4 PUSH2 0x78F JUMP JUMPDEST PUSH2 0x32F JUMP JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x1AF SWAP1 PUSH2 0x7C2 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 0x1DB SWAP1 PUSH2 0x7C2 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x228 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x1FD JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x228 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 0x20B JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0x240 DUP2 DUP6 DUP6 PUSH2 0x35A JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0x25A DUP6 DUP3 DUP6 PUSH2 0x47E JUMP JUMPDEST PUSH2 0x265 DUP6 DUP6 DUP6 PUSH2 0x4F8 JUMP JUMPDEST POP PUSH1 0x1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0x240 DUP2 DUP6 DUP6 PUSH2 0x283 DUP4 DUP4 PUSH2 0x32F JUMP JUMPDEST PUSH2 0x28D SWAP2 SWAP1 PUSH2 0x7FC JUMP JUMPDEST PUSH2 0x35A JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0x1AF SWAP1 PUSH2 0x7C2 JUMP JUMPDEST PUSH1 0x0 CALLER DUP2 PUSH2 0x2AF DUP3 DUP7 PUSH2 0x32F JUMP JUMPDEST SWAP1 POP DUP4 DUP2 LT ISZERO PUSH2 0x314 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 PUSH5 0x207A65726F PUSH1 0xD8 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x265 DUP3 DUP7 DUP7 DUP5 SUB PUSH2 0x35A JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0x240 DUP2 DUP6 DUP6 PUSH2 0x4F8 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 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x3BC 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 PUSH4 0x72657373 PUSH1 0xE0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x30B JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x41D 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 PUSH2 0x7373 PUSH1 0xF0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x30B 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 PUSH2 0x48A DUP5 DUP5 PUSH2 0x32F JUMP JUMPDEST SWAP1 POP PUSH1 0x0 NOT DUP2 EQ PUSH2 0x4F2 JUMPI DUP2 DUP2 LT ISZERO PUSH2 0x4E5 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 0x45524332303A20696E73756666696369656E7420616C6C6F77616E6365000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x30B JUMP JUMPDEST PUSH2 0x4F2 DUP5 DUP5 DUP5 DUP5 SUB PUSH2 0x35A JUMP JUMPDEST POP POP POP POP 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 0x25 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x45524332303A207472616E736665722066726F6D20746865207A65726F206164 PUSH1 0x44 DUP3 ADD MSTORE PUSH5 0x6472657373 PUSH1 0xD8 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x30B JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x5BE 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 PUSH3 0x657373 PUSH1 0xE8 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x30B 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 0x636 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 PUSH6 0x616C616E6365 PUSH1 0xD0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x30B JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 DUP2 AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 DUP8 DUP8 SUB SWAP1 SSTORE SWAP4 DUP8 AND DUP1 DUP4 MSTORE SWAP2 DUP5 SWAP1 KECCAK256 DUP1 SLOAD DUP8 ADD SWAP1 SSTORE SWAP3 MLOAD DUP6 DUP2 MSTORE SWAP1 SWAP3 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH2 0x4F2 JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH1 0x0 DUP3 MLOAD DUP1 PUSH1 0x20 DUP5 ADD MSTORE PUSH1 0x0 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x6CA JUMPI PUSH1 0x20 DUP2 DUP7 ADD DUP2 ADD MLOAD PUSH1 0x40 DUP7 DUP5 ADD ADD MSTORE ADD PUSH2 0x6AD JUMP JUMPDEST POP PUSH1 0x0 PUSH1 0x40 DUP3 DUP6 ADD ADD MSTORE PUSH1 0x40 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND DUP5 ADD ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x701 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x719 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x722 DUP4 PUSH2 0x6EA 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 0x745 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x74E DUP5 PUSH2 0x6EA JUMP JUMPDEST SWAP3 POP PUSH2 0x75C PUSH1 0x20 DUP6 ADD PUSH2 0x6EA 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 0x77F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x788 DUP3 PUSH2 0x6EA JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x7A2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x7AB DUP4 PUSH2 0x6EA JUMP JUMPDEST SWAP2 POP PUSH2 0x7B9 PUSH1 0x20 DUP5 ADD PUSH2 0x6EA JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0x7D6 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x7F6 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 DUP1 DUP3 ADD DUP1 DUP3 GT ISZERO PUSH2 0x246 JUMPI 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 0xB4 STOP MOD MOD 0xE4 0xC4 BLOCKHASH PUSH21 0x660B02F904B03E6B20397248B9527D0BF274FF9A08 0xF6 0xB9 DUP13 PUSH5 0x736F6C6343 STOP ADDMOD SHL STOP CALLER ","sourceMap":"17531:11558:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18232:98;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20509:197;;;;;;:::i;:::-;;:::i;:::-;;;1194:14:1;;1187:22;1169:41;;1157:2;1142:18;20509:197:0;1029:187:1;19320:106:0;19407:12;;19320:106;;;1367:25:1;;;1355:2;1340:18;19320:106:0;1221:177:1;21268:286:0;;;;;;:::i;:::-;;:::i;19169:91::-;;;19251:2;1924:36:1;;1912:2;1897:18;19169:91:0;1782:184:1;21949:234:0;;;;;;:::i;:::-;;:::i;19484:125::-;;;;;;:::i;:::-;-1:-1:-1;;;;;19584:18:0;19558:7;19584:18;;;;;;;;;;;;19484:125;18443:102;;;:::i;22670:427::-;;;;;;:::i;:::-;;:::i;19805:189::-;;;;;;:::i;:::-;;:::i;20052:149::-;;;;;;:::i;:::-;;:::i;18232:98::-;18286:13;18318:5;18311:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18232:98;:::o;20509:197::-;20592:4;16050:10;20646:32;16050:10;20662:7;20671:6;20646:8;:32::i;:::-;20695:4;20688:11;;;20509:197;;;;;:::o;21268:286::-;21395:4;16050:10;21451:38;21467:4;16050:10;21482:6;21451:15;:38::i;:::-;21499:27;21509:4;21515:2;21519:6;21499:9;:27::i;:::-;-1:-1:-1;21543:4:0;;21268:286;-1:-1:-1;;;;21268:286:0:o;21949:234::-;22037:4;16050:10;22091:64;16050:10;22107:7;22144:10;22116:25;16050:10;22107:7;22116:9;:25::i;:::-;:38;;;;:::i;:::-;22091:8;:64::i;18443:102::-;18499:13;18531:7;18524:14;;;;;:::i;22670:427::-;22763:4;16050:10;22763:4;22844:25;16050:10;22861:7;22844:9;:25::i;:::-;22817:52;;22907:15;22887:16;:35;;22879:85;;;;-1:-1:-1;;;22879:85:0;;3241:2:1;22879:85:0;;;3223:21:1;3280:2;3260:18;;;3253:30;3319:34;3299:18;;;3292:62;-1:-1:-1;;;3370:18:1;;;3363:35;3415:19;;22879:85:0;;;;;;;;;22998:60;23007:5;23014:7;23042:15;23023:16;:34;22998:8;:60::i;19805:189::-;19884:4;16050:10;19938:28;16050:10;19955:2;19959:6;19938:9;:28::i;20052:149::-;-1:-1:-1;;;;;20167:18:0;;;20141:7;20167:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;20052:149::o;26582:370::-;-1:-1:-1;;;;;26713:19:0;;26705:68;;;;-1:-1:-1;;;26705:68:0;;3647:2:1;26705:68:0;;;3629:21:1;3686:2;3666:18;;;3659:30;3725:34;3705:18;;;3698:62;-1:-1:-1;;;3776:18:1;;;3769:34;3820:19;;26705:68:0;3445:400:1;26705:68:0;-1:-1:-1;;;;;26791:21:0;;26783:68;;;;-1:-1:-1;;;26783:68:0;;4052:2:1;26783:68:0;;;4034:21:1;4091:2;4071:18;;;4064:30;4130:34;4110:18;;;4103:62;-1:-1:-1;;;4181:18:1;;;4174:32;4223:19;;26783:68:0;3850:398:1;26783:68:0;-1:-1:-1;;;;;26862:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;26913:32;;1367:25:1;;;26913:32:0;;1340:18:1;26913:32:0;;;;;;;26582:370;;;:::o;27233:441::-;27363:24;27390:25;27400:5;27407:7;27390:9;:25::i;:::-;27363:52;;-1:-1:-1;;27429:16:0;:37;27425:243;;27510:6;27490:16;:26;;27482:68;;;;-1:-1:-1;;;27482:68:0;;4455:2:1;27482:68:0;;;4437:21:1;4494:2;4474:18;;;4467:30;4533:31;4513:18;;;4506:59;4582:18;;27482:68:0;4253:353:1;27482:68:0;27592:51;27601:5;27608:7;27636:6;27617:16;:25;27592:8;:51::i;:::-;27353:321;27233:441;;;:::o;23551:818::-;-1:-1:-1;;;;;23677:18:0;;23669:68;;;;-1:-1:-1;;;23669:68:0;;4813:2:1;23669:68:0;;;4795:21:1;4852:2;4832:18;;;4825:30;4891:34;4871:18;;;4864:62;-1:-1:-1;;;4942:18:1;;;4935:35;4987:19;;23669:68:0;4611:401:1;23669:68:0;-1:-1:-1;;;;;23755:16:0;;23747:64;;;;-1:-1:-1;;;23747:64:0;;5219:2:1;23747:64:0;;;5201:21:1;5258:2;5238:18;;;5231:30;5297:34;5277:18;;;5270:62;-1:-1:-1;;;5348:18:1;;;5341:33;5391:19;;23747:64:0;5017:399:1;23747:64:0;-1:-1:-1;;;;;23893:15:0;;23871:19;23893:15;;;;;;;;;;;23926:21;;;;23918:72;;;;-1:-1:-1;;;23918:72:0;;5623:2:1;23918:72:0;;;5605:21:1;5662:2;5642:18;;;5635:30;5701:34;5681:18;;;5674:62;-1:-1:-1;;;5752:18:1;;;5745:36;5798:19;;23918:72:0;5421:402:1;23918:72:0;-1:-1:-1;;;;;24024:15:0;;;:9;:15;;;;;;;;;;;24042:20;;;24024:38;;24239:13;;;;;;;;;;:23;;;;;;24288:26;;1367:25:1;;;24239:13:0;;24288:26;;1340:18:1;24288:26:0;;;;;;;24325:37;28258:121;14:527:1;163:2;152:9;145:21;126:4;195:6;189:13;238:6;233:2;222:9;218:18;211:34;263:1;273:140;287:6;284:1;281:13;273:140;;;398:2;382:14;;;378:23;;372:30;367:2;348:17;;;344:26;337:66;302:10;273:140;;;277:3;462:1;457:2;448:6;437:9;433:22;429:31;422:42;532:2;525;521:7;516:2;508:6;504:15;500:29;489:9;485:45;481:54;473:62;;;14:527;;;;:::o;546:173::-;614:20;;-1:-1:-1;;;;;663:31:1;;653:42;;643:70;;709:1;706;699:12;643:70;546:173;;;:::o;724:300::-;792:6;800;853:2;841:9;832:7;828:23;824:32;821:52;;;869:1;866;859:12;821:52;892:29;911:9;892:29;:::i;:::-;882:39;990:2;975:18;;;;962:32;;-1:-1:-1;;;724:300:1:o;1403:374::-;1480:6;1488;1496;1549:2;1537:9;1528:7;1524:23;1520:32;1517:52;;;1565:1;1562;1555:12;1517:52;1588:29;1607:9;1588:29;:::i;:::-;1578:39;;1636:38;1670:2;1659:9;1655:18;1636:38;:::i;:::-;1403:374;;1626:48;;-1:-1:-1;;;1743:2:1;1728:18;;;;1715:32;;1403:374::o;1971:186::-;2030:6;2083:2;2071:9;2062:7;2058:23;2054:32;2051:52;;;2099:1;2096;2089:12;2051:52;2122:29;2141:9;2122:29;:::i;:::-;2112:39;1971:186;-1:-1:-1;;;1971:186:1:o;2162:260::-;2230:6;2238;2291:2;2279:9;2270:7;2266:23;2262:32;2259:52;;;2307:1;2304;2297:12;2259:52;2330:29;2349:9;2330:29;:::i;:::-;2320:39;;2378:38;2412:2;2401:9;2397:18;2378:38;:::i;:::-;2368:48;;2162:260;;;;;:::o;2427:380::-;2506:1;2502:12;;;;2549;;;2570:61;;2624:4;2616:6;2612:17;2602:27;;2570:61;2677:2;2669:6;2666:14;2646:18;2643:38;2640:161;;2723:10;2718:3;2714:20;2711:1;2704:31;2758:4;2755:1;2748:15;2786:4;2783:1;2776:15;2640:161;;2427:380;;;:::o;2812:222::-;2877:9;;;2898:10;;;2895:133;;;2950:10;2945:3;2941:20;2938:1;2931:31;2985:4;2982:1;2975:15;3013:4;3010:1;3003:15"},"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.27+commit.40a35a09\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"spender\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Approval\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"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\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"transfer\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"transferFrom\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"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.openzeppelin.com/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}.\",\"events\":{\"Approval(address,address,uint256)\":{\"details\":\"Emitted when the allowance of a `spender` for an `owner` is set by a call to {approve}. `value` is the new allowance.\"},\"Transfer(address,address,uint256)\":{\"details\":\"Emitted when `value` tokens are moved from one account (`from`) to another (`to`). Note that `value` may be zero.\"}},\"kind\":\"dev\",\"methods\":{\"allowance(address,address)\":{\"details\":\"See {IERC20-allowance}.\"},\"approve(address,uint256)\":{\"details\":\"See {IERC20-approve}. NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on `transferFrom`. This is semantically equivalent to an infinite approval. Requirements: - `spender` cannot be the zero address.\"},\"balanceOf(address)\":{\"details\":\"See {IERC20-balanceOf}.\"},\"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: - `to` cannot be the zero address. - the caller must have a balance of at least `amount`.\"},\"transferFrom(address,address,uint256)\":{\"details\":\"See {IERC20-transferFrom}. Emits an {Approval} event indicating the updated allowance. This is not required by the EIP. See the note at the beginning of {ERC20}. NOTE: Does not update the allowance if the current allowance is the maximum `uint256`. Requirements: - `from` and `to` cannot be the zero address. - `from` must have a balance of at least `amount`. - the caller must have allowance for ``from``'s tokens of at least `amount`.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/flatten/StakedPSYSV3-flatten.sol\":\"ERC20\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"contracts/flatten/StakedPSYSV3-flatten.sol\":{\"keccak256\":\"0x1288e9f8db9b4a153854a518648153da8175d48775832dc88c82af682197fc0c\",\"license\":\"MIT AND agpl-3.0\",\"urls\":[\"bzz-raw://c0b3c1c232cadc3e9d3315b983bfae0d842041778a8a557240729676d1b143cb\",\"dweb:/ipfs/QmWLxw9LFwrVNftCUwD8koRmWKVrcaEHemcZJY7mAjoBRN\"]}},\"version\":1}"},"GovernancePowerDelegationERC20":{"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":"delegatee","type":"address"},{"indexed":false,"internalType":"enum IGovernancePowerDelegationToken.DelegationType","name":"delegationType","type":"uint8"}],"name":"DelegateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"enum IGovernancePowerDelegationToken.DelegationType","name":"delegationType","type":"uint8"}],"name":"DelegatedPowerChanged","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":"DELEGATE_BY_TYPE_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DELEGATE_TYPEHASH","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":"delegatee","type":"address"}],"name":"delegate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"},{"internalType":"enum IGovernancePowerDelegationToken.DelegationType","name":"delegationType","type":"uint8"}],"name":"delegateByType","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"delegator","type":"address"},{"internalType":"enum IGovernancePowerDelegationToken.DelegationType","name":"delegationType","type":"uint8"}],"name":"getDelegateeByType","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"uint256","name":"blockNumber","type":"uint256"},{"internalType":"enum IGovernancePowerDelegationToken.DelegationType","name":"delegationType","type":"uint8"}],"name":"getPowerAtBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"enum IGovernancePowerDelegationToken.DelegationType","name":"delegationType","type":"uint8"}],"name":"getPowerCurrent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"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":"uint256","name":"","type":"uint256"}],"name":"totalSupplyAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"DELEGATE_BY_TYPE_TYPEHASH()":"aa9fbe02","DELEGATE_TYPEHASH()":"41cbf54a","allowance(address,address)":"dd62ed3e","approve(address,uint256)":"095ea7b3","balanceOf(address)":"70a08231","decimals()":"313ce567","decreaseAllowance(address,uint256)":"a457c2d7","delegate(address)":"5c19a95c","delegateByType(address,uint8)":"dc937e1c","getDelegateeByType(address,uint8)":"6f50458d","getPowerAtBlock(address,uint256,uint8)":"c2ffbb91","getPowerCurrent(address,uint8)":"b2f4201d","increaseAllowance(address,uint256)":"39509351","name()":"06fdde03","symbol()":"95d89b41","totalSupply()":"18160ddd","totalSupplyAt(uint256)":"981b24d0","transfer(address,uint256)":"a9059cbb","transferFrom(address,address,uint256)":"23b872dd"}},"metadata":"{\"compiler\":{\"version\":\"0.8.27+commit.40a35a09\"},\"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\":\"delegatee\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"enum IGovernancePowerDelegationToken.DelegationType\",\"name\":\"delegationType\",\"type\":\"uint8\"}],\"name\":\"DelegateChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"enum IGovernancePowerDelegationToken.DelegationType\",\"name\":\"delegationType\",\"type\":\"uint8\"}],\"name\":\"DelegatedPowerChanged\",\"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\":\"DELEGATE_BY_TYPE_TYPEHASH\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"DELEGATE_TYPEHASH\",\"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\":\"delegatee\",\"type\":\"address\"}],\"name\":\"delegate\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"delegatee\",\"type\":\"address\"},{\"internalType\":\"enum IGovernancePowerDelegationToken.DelegationType\",\"name\":\"delegationType\",\"type\":\"uint8\"}],\"name\":\"delegateByType\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"delegator\",\"type\":\"address\"},{\"internalType\":\"enum IGovernancePowerDelegationToken.DelegationType\",\"name\":\"delegationType\",\"type\":\"uint8\"}],\"name\":\"getDelegateeByType\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"blockNumber\",\"type\":\"uint256\"},{\"internalType\":\"enum IGovernancePowerDelegationToken.DelegationType\",\"name\":\"delegationType\",\"type\":\"uint8\"}],\"name\":\"getPowerAtBlock\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"internalType\":\"enum IGovernancePowerDelegationToken.DelegationType\",\"name\":\"delegationType\",\"type\":\"uint8\"}],\"name\":\"getPowerCurrent\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"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\":\"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\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"name\":\"totalSupplyAt\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"transfer\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"transferFrom\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"author\":\"Aave\",\"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.\"},\"DelegateChanged(address,address,uint8)\":{\"details\":\"emitted when a user delegates to another\",\"params\":{\"delegatee\":\"the delegatee\",\"delegationType\":\"the type of delegation (VOTING_POWER, PROPOSITION_POWER)*\",\"delegator\":\"the delegator\"}},\"DelegatedPowerChanged(address,uint256,uint8)\":{\"details\":\"emitted when an action changes the delegated power of a user\",\"params\":{\"amount\":\"the amount of delegated power for the user\",\"delegationType\":\"the type of delegation (VOTING_POWER, PROPOSITION_POWER)*\",\"user\":\"the user which delegated power has changed\"}},\"Transfer(address,address,uint256)\":{\"details\":\"Emitted when `value` tokens are moved from one account (`from`) to another (`to`). Note that `value` may be zero.\"}},\"kind\":\"dev\",\"methods\":{\"allowance(address,address)\":{\"details\":\"See {IERC20-allowance}.\"},\"approve(address,uint256)\":{\"details\":\"See {IERC20-approve}. NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on `transferFrom`. This is semantically equivalent to an infinite approval. Requirements: - `spender` cannot be the zero address.\"},\"balanceOf(address)\":{\"details\":\"See {IERC20-balanceOf}.\"},\"decimals()\":{\"details\":\"Returns the number of decimals used to get its user representation. For example, if `decimals` equals `2`, a balance of `505` tokens should be displayed to a user as `5.05` (`505 / 10 ** 2`). Tokens usually opt for a value of 18, imitating the relationship between Ether and Wei. This is the 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`.\"},\"delegate(address)\":{\"details\":\"delegates all the powers to a specific user\",\"params\":{\"delegatee\":\"the user to which the power will be delegated*\"}},\"delegateByType(address,uint8)\":{\"details\":\"delegates one specific power to a delegatee\",\"params\":{\"delegatee\":\"the user which delegated power has changed\",\"delegationType\":\"the type of delegation (VOTING_POWER, PROPOSITION_POWER)*\"}},\"getDelegateeByType(address,uint8)\":{\"details\":\"returns the delegatee of an user\",\"params\":{\"delegator\":\"the address of the delegator*\"}},\"getPowerAtBlock(address,uint256,uint8)\":{\"details\":\"returns the delegated power of a user at a certain block\",\"params\":{\"user\":\"the user*\"}},\"getPowerCurrent(address,uint8)\":{\"details\":\"returns the current delegated power of a user. The current power is the power delegated at the time of the last snapshot\",\"params\":{\"user\":\"the user*\"}},\"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}.\"},\"totalSupplyAt(uint256)\":{\"details\":\"returns the total supply at a certain block number used by the voting strategy contracts to calculate the total votes needed for threshold/quorum In this initial implementation with no AAVE minting, simply returns the current supply A snapshots mapping will need to be added in case a mint function is added to the AAVE token in the future*\"},\"transfer(address,uint256)\":{\"details\":\"See {IERC20-transfer}. Requirements: - `to` cannot be the zero address. - the caller must have a balance of at least `amount`.\"},\"transferFrom(address,address,uint256)\":{\"details\":\"See {IERC20-transferFrom}. Emits an {Approval} event indicating the updated allowance. This is not required by the EIP. See the note at the beginning of {ERC20}. NOTE: Does not update the allowance if the current allowance is the maximum `uint256`. Requirements: - `from` and `to` cannot be the zero address. - `from` must have a balance of at least `amount`. - the caller must have allowance for ``from``'s tokens of at least `amount`.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{\"DELEGATE_BY_TYPE_TYPEHASH()\":{\"notice\":\"The EIP-712 typehash for the delegation struct used by the contract\"}},\"notice\":\"implementation of the AAVE token contract\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/flatten/StakedPSYSV3-flatten.sol\":\"GovernancePowerDelegationERC20\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"contracts/flatten/StakedPSYSV3-flatten.sol\":{\"keccak256\":\"0x1288e9f8db9b4a153854a518648153da8175d48775832dc88c82af682197fc0c\",\"license\":\"MIT AND agpl-3.0\",\"urls\":[\"bzz-raw://c0b3c1c232cadc3e9d3315b983bfae0d842041778a8a557240729676d1b143cb\",\"dweb:/ipfs/QmWLxw9LFwrVNftCUwD8koRmWKVrcaEHemcZJY7mAjoBRN\"]}},\"version\":1}"},"GovernancePowerWithSnapshot":{"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":"delegatee","type":"address"},{"indexed":false,"internalType":"enum IGovernancePowerDelegationToken.DelegationType","name":"delegationType","type":"uint8"}],"name":"DelegateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"enum IGovernancePowerDelegationToken.DelegationType","name":"delegationType","type":"uint8"}],"name":"DelegatedPowerChanged","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":"DELEGATE_BY_TYPE_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DELEGATE_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_aaveGovernance","outputs":[{"internalType":"contract ITransferHook","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"_votingSnapshots","outputs":[{"internalType":"uint128","name":"blockNumber","type":"uint128"},{"internalType":"uint128","name":"value","type":"uint128"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_votingSnapshotsCounts","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"delegatee","type":"address"}],"name":"delegate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"},{"internalType":"enum IGovernancePowerDelegationToken.DelegationType","name":"delegationType","type":"uint8"}],"name":"delegateByType","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"delegator","type":"address"},{"internalType":"enum IGovernancePowerDelegationToken.DelegationType","name":"delegationType","type":"uint8"}],"name":"getDelegateeByType","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"uint256","name":"blockNumber","type":"uint256"},{"internalType":"enum IGovernancePowerDelegationToken.DelegationType","name":"delegationType","type":"uint8"}],"name":"getPowerAtBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"enum IGovernancePowerDelegationToken.DelegationType","name":"delegationType","type":"uint8"}],"name":"getPowerCurrent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"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":"uint256","name":"","type":"uint256"}],"name":"totalSupplyAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"DELEGATE_BY_TYPE_TYPEHASH()":"aa9fbe02","DELEGATE_TYPEHASH()":"41cbf54a","_aaveGovernance()":"c3863ada","_votingSnapshots(address,uint256)":"5b3cc0cf","_votingSnapshotsCounts(address)":"7bb73c97","allowance(address,address)":"dd62ed3e","approve(address,uint256)":"095ea7b3","balanceOf(address)":"70a08231","decimals()":"313ce567","decreaseAllowance(address,uint256)":"a457c2d7","delegate(address)":"5c19a95c","delegateByType(address,uint8)":"dc937e1c","getDelegateeByType(address,uint8)":"6f50458d","getPowerAtBlock(address,uint256,uint8)":"c2ffbb91","getPowerCurrent(address,uint8)":"b2f4201d","increaseAllowance(address,uint256)":"39509351","name()":"06fdde03","symbol()":"95d89b41","totalSupply()":"18160ddd","totalSupplyAt(uint256)":"981b24d0","transfer(address,uint256)":"a9059cbb","transferFrom(address,address,uint256)":"23b872dd"}},"metadata":"{\"compiler\":{\"version\":\"0.8.27+commit.40a35a09\"},\"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\":\"delegatee\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"enum IGovernancePowerDelegationToken.DelegationType\",\"name\":\"delegationType\",\"type\":\"uint8\"}],\"name\":\"DelegateChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"enum IGovernancePowerDelegationToken.DelegationType\",\"name\":\"delegationType\",\"type\":\"uint8\"}],\"name\":\"DelegatedPowerChanged\",\"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\":\"DELEGATE_BY_TYPE_TYPEHASH\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"DELEGATE_TYPEHASH\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"_aaveGovernance\",\"outputs\":[{\"internalType\":\"contract ITransferHook\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"name\":\"_votingSnapshots\",\"outputs\":[{\"internalType\":\"uint128\",\"name\":\"blockNumber\",\"type\":\"uint128\"},{\"internalType\":\"uint128\",\"name\":\"value\",\"type\":\"uint128\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"name\":\"_votingSnapshotsCounts\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"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\":\"delegatee\",\"type\":\"address\"}],\"name\":\"delegate\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"delegatee\",\"type\":\"address\"},{\"internalType\":\"enum IGovernancePowerDelegationToken.DelegationType\",\"name\":\"delegationType\",\"type\":\"uint8\"}],\"name\":\"delegateByType\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"delegator\",\"type\":\"address\"},{\"internalType\":\"enum IGovernancePowerDelegationToken.DelegationType\",\"name\":\"delegationType\",\"type\":\"uint8\"}],\"name\":\"getDelegateeByType\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"blockNumber\",\"type\":\"uint256\"},{\"internalType\":\"enum IGovernancePowerDelegationToken.DelegationType\",\"name\":\"delegationType\",\"type\":\"uint8\"}],\"name\":\"getPowerAtBlock\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"internalType\":\"enum IGovernancePowerDelegationToken.DelegationType\",\"name\":\"delegationType\",\"type\":\"uint8\"}],\"name\":\"getPowerCurrent\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"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\":\"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\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"name\":\"totalSupplyAt\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"transfer\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"transferFrom\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"author\":\"Aave*\",\"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.\"},\"DelegateChanged(address,address,uint8)\":{\"details\":\"emitted when a user delegates to another\",\"params\":{\"delegatee\":\"the delegatee\",\"delegationType\":\"the type of delegation (VOTING_POWER, PROPOSITION_POWER)*\",\"delegator\":\"the delegator\"}},\"DelegatedPowerChanged(address,uint256,uint8)\":{\"details\":\"emitted when an action changes the delegated power of a user\",\"params\":{\"amount\":\"the amount of delegated power for the user\",\"delegationType\":\"the type of delegation (VOTING_POWER, PROPOSITION_POWER)*\",\"user\":\"the user which delegated power has changed\"}},\"Transfer(address,address,uint256)\":{\"details\":\"Emitted when `value` tokens are moved from one account (`from`) to another (`to`). Note that `value` may be zero.\"}},\"kind\":\"dev\",\"methods\":{\"allowance(address,address)\":{\"details\":\"See {IERC20-allowance}.\"},\"approve(address,uint256)\":{\"details\":\"See {IERC20-approve}. NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on `transferFrom`. This is semantically equivalent to an infinite approval. Requirements: - `spender` cannot be the zero address.\"},\"balanceOf(address)\":{\"details\":\"See {IERC20-balanceOf}.\"},\"decimals()\":{\"details\":\"Returns the number of decimals used to get its user representation. For example, if `decimals` equals `2`, a balance of `505` tokens should be displayed to a user as `5.05` (`505 / 10 ** 2`). Tokens usually opt for a value of 18, imitating the relationship between Ether and Wei. This is the 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`.\"},\"delegate(address)\":{\"details\":\"delegates all the powers to a specific user\",\"params\":{\"delegatee\":\"the user to which the power will be delegated*\"}},\"delegateByType(address,uint8)\":{\"details\":\"delegates one specific power to a delegatee\",\"params\":{\"delegatee\":\"the user which delegated power has changed\",\"delegationType\":\"the type of delegation (VOTING_POWER, PROPOSITION_POWER)*\"}},\"getDelegateeByType(address,uint8)\":{\"details\":\"returns the delegatee of an user\",\"params\":{\"delegator\":\"the address of the delegator*\"}},\"getPowerAtBlock(address,uint256,uint8)\":{\"details\":\"returns the delegated power of a user at a certain block\",\"params\":{\"user\":\"the user*\"}},\"getPowerCurrent(address,uint8)\":{\"details\":\"returns the current delegated power of a user. The current power is the power delegated at the time of the last snapshot\",\"params\":{\"user\":\"the user*\"}},\"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}.\"},\"totalSupplyAt(uint256)\":{\"details\":\"returns the total supply at a certain block number used by the voting strategy contracts to calculate the total votes needed for threshold/quorum In this initial implementation with no AAVE minting, simply returns the current supply A snapshots mapping will need to be added in case a mint function is added to the AAVE token in the future*\"},\"transfer(address,uint256)\":{\"details\":\"See {IERC20-transfer}. Requirements: - `to` cannot be the zero address. - the caller must have a balance of at least `amount`.\"},\"transferFrom(address,address,uint256)\":{\"details\":\"See {IERC20-transferFrom}. Emits an {Approval} event indicating the updated allowance. This is not required by the EIP. See the note at the beginning of {ERC20}. NOTE: Does not update the allowance if the current allowance is the maximum `uint256`. Requirements: - `from` and `to` cannot be the zero address. - `from` must have a balance of at least `amount`. - the caller must have allowance for ``from``'s tokens of at least `amount`.\"}},\"stateVariables\":{\"_aaveGovernance\":{\"details\":\"reference to the Aave governance contract to call (if initialized) on _beforeTokenTransfer !!! IMPORTANT The Aave governance is considered a trustable contract, being its responsibility to control all potential reentrancies by calling back the this contractDEPRECATED\"},\"_votingSnapshots\":{\"details\":\"The following storage layout points to the prior StakedToken.sol implementation: _snapshots => _votingSnapshots _snapshotsCounts =>  _votingSnapshotsCounts _aaveGovernance => _aaveGovernance\"}},\"title\":\"ERC20WithSnapshot\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{\"DELEGATE_BY_TYPE_TYPEHASH()\":{\"notice\":\"The EIP-712 typehash for the delegation struct used by the contract\"}},\"notice\":\"ERC20 including snapshots of balances on transfer-related actions\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/flatten/StakedPSYSV3-flatten.sol\":\"GovernancePowerWithSnapshot\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"contracts/flatten/StakedPSYSV3-flatten.sol\":{\"keccak256\":\"0x1288e9f8db9b4a153854a518648153da8175d48775832dc88c82af682197fc0c\",\"license\":\"MIT AND agpl-3.0\",\"urls\":[\"bzz-raw://c0b3c1c232cadc3e9d3315b983bfae0d842041778a8a557240729676d1b143cb\",\"dweb:/ipfs/QmWLxw9LFwrVNftCUwD8koRmWKVrcaEHemcZJY7mAjoBRN\"]}},\"version\":1}"},"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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"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.27+commit.40a35a09\"},\"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\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"transfer\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"transferFrom\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"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 `to`. Returns a boolean value indicating whether the operation succeeded. Emits a {Transfer} event.\"},\"transferFrom(address,address,uint256)\":{\"details\":\"Moves `amount` tokens from `from` to `to` 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/flatten/StakedPSYSV3-flatten.sol\":\"IERC20\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"contracts/flatten/StakedPSYSV3-flatten.sol\":{\"keccak256\":\"0x1288e9f8db9b4a153854a518648153da8175d48775832dc88c82af682197fc0c\",\"license\":\"MIT AND agpl-3.0\",\"urls\":[\"bzz-raw://c0b3c1c232cadc3e9d3315b983bfae0d842041778a8a557240729676d1b143cb\",\"dweb:/ipfs/QmWLxw9LFwrVNftCUwD8koRmWKVrcaEHemcZJY7mAjoBRN\"]}},\"version\":1}"},"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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"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.27+commit.40a35a09\"},\"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\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"transfer\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"transferFrom\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Interface for the optional metadata functions from the ERC20 standard. _Available since v4.1._\",\"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`.\"},\"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 `to`. Returns a boolean value indicating whether the operation succeeded. Emits a {Transfer} event.\"},\"transferFrom(address,address,uint256)\":{\"details\":\"Moves `amount` tokens from `from` to `to` 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/flatten/StakedPSYSV3-flatten.sol\":\"IERC20Metadata\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"contracts/flatten/StakedPSYSV3-flatten.sol\":{\"keccak256\":\"0x1288e9f8db9b4a153854a518648153da8175d48775832dc88c82af682197fc0c\",\"license\":\"MIT AND agpl-3.0\",\"urls\":[\"bzz-raw://c0b3c1c232cadc3e9d3315b983bfae0d842041778a8a557240729676d1b143cb\",\"dweb:/ipfs/QmWLxw9LFwrVNftCUwD8koRmWKVrcaEHemcZJY7mAjoBRN\"]}},\"version\":1}"},"IERC20WithPermit":{"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":"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":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"allowance(address,address)":"dd62ed3e","approve(address,uint256)":"095ea7b3","balanceOf(address)":"70a08231","permit(address,address,uint256,uint256,uint8,bytes32,bytes32)":"d505accf","totalSupply()":"18160ddd","transfer(address,uint256)":"a9059cbb","transferFrom(address,address,uint256)":"23b872dd"}},"metadata":"{\"compiler\":{\"version\":\"0.8.27+commit.40a35a09\"},\"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\":\"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\":\"totalSupply\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"transfer\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"transferFrom\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"events\":{\"Approval(address,address,uint256)\":{\"details\":\"Emitted when the allowance of a `spender` for an `owner` is set by a call to {approve}. `value` is the new allowance.\"},\"Transfer(address,address,uint256)\":{\"details\":\"Emitted when `value` tokens are moved from one account (`from`) to another (`to`). Note that `value` may be zero.\"}},\"kind\":\"dev\",\"methods\":{\"allowance(address,address)\":{\"details\":\"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 `to`. Returns a boolean value indicating whether the operation succeeded. Emits a {Transfer} event.\"},\"transferFrom(address,address,uint256)\":{\"details\":\"Moves `amount` tokens from `from` to `to` 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/flatten/StakedPSYSV3-flatten.sol\":\"IERC20WithPermit\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"contracts/flatten/StakedPSYSV3-flatten.sol\":{\"keccak256\":\"0x1288e9f8db9b4a153854a518648153da8175d48775832dc88c82af682197fc0c\",\"license\":\"MIT AND agpl-3.0\",\"urls\":[\"bzz-raw://c0b3c1c232cadc3e9d3315b983bfae0d842041778a8a557240729676d1b143cb\",\"dweb:/ipfs/QmWLxw9LFwrVNftCUwD8koRmWKVrcaEHemcZJY7mAjoBRN\"]}},\"version\":1}"},"IGhoVariableDebtTokenTransferHook":{"abi":[{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"senderDiscountTokenBalance","type":"uint256"},{"internalType":"uint256","name":"recipientDiscountTokenBalance","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"updateDiscountDistribution","outputs":[],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"updateDiscountDistribution(address,address,uint256,uint256,uint256)":"5b9c4cf1"}},"metadata":"{\"compiler\":{\"version\":\"0.8.27+commit.40a35a09\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"recipient\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"senderDiscountTokenBalance\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"recipientDiscountTokenBalance\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"updateDiscountDistribution\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{\"updateDiscountDistribution(address,address,uint256,uint256,uint256)\":{\"details\":\"updates the discount when discount token is transferredOnly callable by discount token\",\"params\":{\"amount\":\"amount of discount token being transferred*\",\"recipient\":\"address of recipient\",\"recipientDiscountTokenBalance\":\"recipient discount token balance\",\"sender\":\"address of sender\",\"senderDiscountTokenBalance\":\"sender discount token balance\"}}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/flatten/StakedPSYSV3-flatten.sol\":\"IGhoVariableDebtTokenTransferHook\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"contracts/flatten/StakedPSYSV3-flatten.sol\":{\"keccak256\":\"0x1288e9f8db9b4a153854a518648153da8175d48775832dc88c82af682197fc0c\",\"license\":\"MIT AND agpl-3.0\",\"urls\":[\"bzz-raw://c0b3c1c232cadc3e9d3315b983bfae0d842041778a8a557240729676d1b143cb\",\"dweb:/ipfs/QmWLxw9LFwrVNftCUwD8koRmWKVrcaEHemcZJY7mAjoBRN\"]}},\"version\":1}"},"IGovernancePowerDelegationToken":{"abi":[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegator","type":"address"},{"indexed":true,"internalType":"address","name":"delegatee","type":"address"},{"indexed":false,"internalType":"enum IGovernancePowerDelegationToken.DelegationType","name":"delegationType","type":"uint8"}],"name":"DelegateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"enum IGovernancePowerDelegationToken.DelegationType","name":"delegationType","type":"uint8"}],"name":"DelegatedPowerChanged","type":"event"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"}],"name":"delegate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"},{"internalType":"enum IGovernancePowerDelegationToken.DelegationType","name":"delegationType","type":"uint8"}],"name":"delegateByType","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"delegator","type":"address"},{"internalType":"enum IGovernancePowerDelegationToken.DelegationType","name":"delegationType","type":"uint8"}],"name":"getDelegateeByType","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"uint256","name":"blockNumber","type":"uint256"},{"internalType":"enum IGovernancePowerDelegationToken.DelegationType","name":"delegationType","type":"uint8"}],"name":"getPowerAtBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"enum IGovernancePowerDelegationToken.DelegationType","name":"delegationType","type":"uint8"}],"name":"getPowerCurrent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"blockNumber","type":"uint256"}],"name":"totalSupplyAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"delegate(address)":"5c19a95c","delegateByType(address,uint8)":"dc937e1c","getDelegateeByType(address,uint8)":"6f50458d","getPowerAtBlock(address,uint256,uint8)":"c2ffbb91","getPowerCurrent(address,uint8)":"b2f4201d","totalSupplyAt(uint256)":"981b24d0"}},"metadata":"{\"compiler\":{\"version\":\"0.8.27+commit.40a35a09\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"delegator\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"delegatee\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"enum IGovernancePowerDelegationToken.DelegationType\",\"name\":\"delegationType\",\"type\":\"uint8\"}],\"name\":\"DelegateChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"enum IGovernancePowerDelegationToken.DelegationType\",\"name\":\"delegationType\",\"type\":\"uint8\"}],\"name\":\"DelegatedPowerChanged\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"delegatee\",\"type\":\"address\"}],\"name\":\"delegate\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"delegatee\",\"type\":\"address\"},{\"internalType\":\"enum IGovernancePowerDelegationToken.DelegationType\",\"name\":\"delegationType\",\"type\":\"uint8\"}],\"name\":\"delegateByType\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"delegator\",\"type\":\"address\"},{\"internalType\":\"enum IGovernancePowerDelegationToken.DelegationType\",\"name\":\"delegationType\",\"type\":\"uint8\"}],\"name\":\"getDelegateeByType\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"blockNumber\",\"type\":\"uint256\"},{\"internalType\":\"enum IGovernancePowerDelegationToken.DelegationType\",\"name\":\"delegationType\",\"type\":\"uint8\"}],\"name\":\"getPowerAtBlock\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"internalType\":\"enum IGovernancePowerDelegationToken.DelegationType\",\"name\":\"delegationType\",\"type\":\"uint8\"}],\"name\":\"getPowerCurrent\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"blockNumber\",\"type\":\"uint256\"}],\"name\":\"totalSupplyAt\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"events\":{\"DelegateChanged(address,address,uint8)\":{\"details\":\"emitted when a user delegates to another\",\"params\":{\"delegatee\":\"the delegatee\",\"delegationType\":\"the type of delegation (VOTING_POWER, PROPOSITION_POWER)*\",\"delegator\":\"the delegator\"}},\"DelegatedPowerChanged(address,uint256,uint8)\":{\"details\":\"emitted when an action changes the delegated power of a user\",\"params\":{\"amount\":\"the amount of delegated power for the user\",\"delegationType\":\"the type of delegation (VOTING_POWER, PROPOSITION_POWER)*\",\"user\":\"the user which delegated power has changed\"}}},\"kind\":\"dev\",\"methods\":{\"delegate(address)\":{\"details\":\"delegates all the powers to a specific user\",\"params\":{\"delegatee\":\"the user to which the power will be delegated*\"}},\"delegateByType(address,uint8)\":{\"details\":\"delegates the specific power to a delegatee\",\"params\":{\"delegatee\":\"the user which delegated power has changed\",\"delegationType\":\"the type of delegation (VOTING_POWER, PROPOSITION_POWER)*\"}},\"getDelegateeByType(address,uint8)\":{\"details\":\"returns the delegatee of an user\",\"params\":{\"delegator\":\"the address of the delegator*\"}},\"getPowerAtBlock(address,uint256,uint8)\":{\"details\":\"returns the delegated power of a user at a certain block\",\"params\":{\"user\":\"the user*\"}},\"getPowerCurrent(address,uint8)\":{\"details\":\"returns the current delegated power of a user. The current power is the power delegated at the time of the last snapshot\",\"params\":{\"user\":\"the user*\"}},\"totalSupplyAt(uint256)\":{\"details\":\"returns the total supply at a certain block number*\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/flatten/StakedPSYSV3-flatten.sol\":\"IGovernancePowerDelegationToken\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"contracts/flatten/StakedPSYSV3-flatten.sol\":{\"keccak256\":\"0x1288e9f8db9b4a153854a518648153da8175d48775832dc88c82af682197fc0c\",\"license\":\"MIT AND agpl-3.0\",\"urls\":[\"bzz-raw://c0b3c1c232cadc3e9d3315b983bfae0d842041778a8a557240729676d1b143cb\",\"dweb:/ipfs/QmWLxw9LFwrVNftCUwD8koRmWKVrcaEHemcZJY7mAjoBRN\"]}},\"version\":1}"},"IPegasysDistributionManager":{"abi":[{"inputs":[{"components":[{"internalType":"uint128","name":"emissionPerSecond","type":"uint128"},{"internalType":"uint256","name":"totalStaked","type":"uint256"},{"internalType":"address","name":"underlyingAsset","type":"address"}],"internalType":"struct DistributionTypes.AssetConfigInput[]","name":"assetsConfigInput","type":"tuple[]"}],"name":"configureAssets","outputs":[],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"configureAssets((uint128,uint256,address)[])":"b2a5dbfa"}},"metadata":"{\"compiler\":{\"version\":\"0.8.27+commit.40a35a09\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"components\":[{\"internalType\":\"uint128\",\"name\":\"emissionPerSecond\",\"type\":\"uint128\"},{\"internalType\":\"uint256\",\"name\":\"totalStaked\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"underlyingAsset\",\"type\":\"address\"}],\"internalType\":\"struct DistributionTypes.AssetConfigInput[]\",\"name\":\"assetsConfigInput\",\"type\":\"tuple[]\"}],\"name\":\"configureAssets\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/flatten/StakedPSYSV3-flatten.sol\":\"IPegasysDistributionManager\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"contracts/flatten/StakedPSYSV3-flatten.sol\":{\"keccak256\":\"0x1288e9f8db9b4a153854a518648153da8175d48775832dc88c82af682197fc0c\",\"license\":\"MIT AND agpl-3.0\",\"urls\":[\"bzz-raw://c0b3c1c232cadc3e9d3315b983bfae0d842041778a8a557240729676d1b143cb\",\"dweb:/ipfs/QmWLxw9LFwrVNftCUwD8koRmWKVrcaEHemcZJY7mAjoBRN\"]}},\"version\":1}"},"IStakedPSYSV3":{"abi":[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Cooldown","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"cooldownSeconds","type":"uint256"}],"name":"CooldownSecondsChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint216","name":"exchangeRate","type":"uint216"}],"name":"ExchangeRateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"FundsReturned","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newDebtToken","type":"address"}],"name":"GHODebtTokenChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newPercentage","type":"uint256"}],"name":"MaxSlashablePercentageChanged","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":"assets","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"Redeem","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"RewardsAccrued","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":"amount","type":"uint256"}],"name":"RewardsClaimed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"destination","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Slashed","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"windowSeconds","type":"uint256"}],"name":"SlashingExitWindowDurationChanged","type":"event"},{"anonymous":false,"inputs":[],"name":"SlashingSettled","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":"assets","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"Staked","type":"event"},{"inputs":[],"name":"COOLDOWN_SECONDS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"claimRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"claimAmount","type":"uint256"},{"internalType":"uint256","name":"redeemAmount","type":"uint256"}],"name":"claimRewardsAndRedeem","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"claimAmount","type":"uint256"},{"internalType":"uint256","name":"redeemAmount","type":"uint256"}],"name":"claimRewardsAndRedeemOnBehalf","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"claimRewardsAndStake","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"claimRewardsAndStakeOnBehalf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"claimRewardsOnBehalf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cooldown","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"}],"name":"cooldownOnBehalfOf","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getCooldownSeconds","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getExchangeRate","outputs":[{"internalType":"uint216","name":"","type":"uint216"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint32","name":"index","type":"uint32"}],"name":"getExchangeRateSnapshot","outputs":[{"components":[{"internalType":"uint40","name":"blockNumber","type":"uint40"},{"internalType":"uint216","name":"value","type":"uint216"}],"internalType":"struct IStakedPSYSV3.ExchangeRateSnapshot","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getExchangeRateSnapshotsCount","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMaxSlashablePercentage","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"staker","type":"address"}],"name":"getTotalRewardsBalance","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":[{"internalType":"uint256","name":"shares","type":"uint256"}],"name":"previewRedeem","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"assets","type":"uint256"}],"name":"previewStake","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"redeem","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"redeemOnBehalf","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"returnFunds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"cooldownSeconds","type":"uint256"}],"name":"setCooldownSeconds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IGhoVariableDebtTokenTransferHook","name":"newGHODebtToken","type":"address"}],"name":"setGHODebtToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"percentage","type":"uint256"}],"name":"setMaxSlashablePercentage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"settleSlashing","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"destination","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"slash","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"stake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256","name":"amount","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":"stakeWithPermit","outputs":[],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"COOLDOWN_SECONDS()":"72b49d63","claimRewards(address,uint256)":"9a99b4f0","claimRewardsAndRedeem(address,uint256,uint256)":"eab52318","claimRewardsAndRedeemOnBehalf(address,address,uint256,uint256)":"9c9b5154","claimRewardsAndStake(address,uint256)":"955e18af","claimRewardsAndStakeOnBehalf(address,address,uint256)":"c18f539a","claimRewardsOnBehalf(address,address,uint256)":"20fb80b5","cooldown()":"787a08a6","cooldownOnBehalfOf(address)":"250201db","getCooldownSeconds()":"616e0bf9","getExchangeRate()":"e6aa216c","getExchangeRateSnapshot(uint32)":"8ef98e0e","getExchangeRateSnapshotsCount()":"60ba192b","getMaxSlashablePercentage()":"f34d96da","getTotalRewardsBalance(address)":"8dbefee2","permit(address,address,uint256,uint256,uint8,bytes32,bytes32)":"d505accf","previewRedeem(uint256)":"4cdad506","previewStake(uint256)":"727a5d57","redeem(address,uint256)":"1e9a6950","redeemOnBehalf(address,address,uint256)":"112d037c","returnFunds(uint256)":"45755dd6","setCooldownSeconds(uint256)":"7b5b1157","setGHODebtToken(address)":"4998fffd","setMaxSlashablePercentage(uint256)":"74011f56","settleSlashing()":"aff05aa9","slash(address,uint256)":"02fb4d85","stake(address,uint256)":"adc9772e","stakeWithPermit(address,uint256,uint256,uint8,bytes32,bytes32)":"73d6a889"}},"metadata":"{\"compiler\":{\"version\":\"0.8.27+commit.40a35a09\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"Cooldown\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"cooldownSeconds\",\"type\":\"uint256\"}],\"name\":\"CooldownSecondsChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint216\",\"name\":\"exchangeRate\",\"type\":\"uint216\"}],\"name\":\"ExchangeRateChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"FundsReturned\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newDebtToken\",\"type\":\"address\"}],\"name\":\"GHODebtTokenChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"newPercentage\",\"type\":\"uint256\"}],\"name\":\"MaxSlashablePercentageChanged\",\"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\":\"assets\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"}],\"name\":\"Redeem\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"RewardsAccrued\",\"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\":\"amount\",\"type\":\"uint256\"}],\"name\":\"RewardsClaimed\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"destination\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"Slashed\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"windowSeconds\",\"type\":\"uint256\"}],\"name\":\"SlashingExitWindowDurationChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[],\"name\":\"SlashingSettled\",\"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\":\"assets\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"}],\"name\":\"Staked\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"COOLDOWN_SECONDS\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"claimRewards\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"claimAmount\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"redeemAmount\",\"type\":\"uint256\"}],\"name\":\"claimRewardsAndRedeem\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"claimAmount\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"redeemAmount\",\"type\":\"uint256\"}],\"name\":\"claimRewardsAndRedeemOnBehalf\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"claimRewardsAndStake\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"claimRewardsAndStakeOnBehalf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"claimRewardsOnBehalf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"cooldown\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"}],\"name\":\"cooldownOnBehalfOf\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getCooldownSeconds\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getExchangeRate\",\"outputs\":[{\"internalType\":\"uint216\",\"name\":\"\",\"type\":\"uint216\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint32\",\"name\":\"index\",\"type\":\"uint32\"}],\"name\":\"getExchangeRateSnapshot\",\"outputs\":[{\"components\":[{\"internalType\":\"uint40\",\"name\":\"blockNumber\",\"type\":\"uint40\"},{\"internalType\":\"uint216\",\"name\":\"value\",\"type\":\"uint216\"}],\"internalType\":\"struct IStakedPSYSV3.ExchangeRateSnapshot\",\"name\":\"\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getExchangeRateSnapshotsCount\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"\",\"type\":\"uint32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getMaxSlashablePercentage\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"staker\",\"type\":\"address\"}],\"name\":\"getTotalRewardsBalance\",\"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\":[{\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"}],\"name\":\"previewRedeem\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"}],\"name\":\"previewStake\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"redeem\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"redeemOnBehalf\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"returnFunds\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"cooldownSeconds\",\"type\":\"uint256\"}],\"name\":\"setCooldownSeconds\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract IGhoVariableDebtTokenTransferHook\",\"name\":\"newGHODebtToken\",\"type\":\"address\"}],\"name\":\"setGHODebtToken\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"percentage\",\"type\":\"uint256\"}],\"name\":\"setMaxSlashablePercentage\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"settleSlashing\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"destination\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"slash\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"stake\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"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\":\"stakeWithPermit\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{\"COOLDOWN_SECONDS()\":{\"details\":\"Getter of the cooldown seconds\",\"returns\":{\"_0\":\"cooldownSeconds the amount of seconds between starting the cooldown and being able to redeem\"}},\"claimRewards(address,uint256)\":{\"details\":\"Claims an `amount` of `REWARD_TOKEN` to the address `to`\",\"params\":{\"amount\":\"Amount to stake\",\"to\":\"Address to send the claimed rewards\"}},\"claimRewardsAndRedeem(address,uint256,uint256)\":{\"details\":\"Claims an `amount` of `REWARD_TOKEN` and redeems to the provided address\",\"params\":{\"claimAmount\":\"Amount to claim\",\"redeemAmount\":\"Amount to redeem\",\"to\":\"Address to claim and redeem to\"}},\"claimRewardsAndRedeemOnBehalf(address,address,uint256,uint256)\":{\"details\":\"Claims an `amount` of `REWARD_TOKEN` and redeems the `redeemAmount` to an address. Only the claim helper contract is allowed to call this function\",\"params\":{\"claimAmount\":\"Amount to claim\",\"from\":\"The address of the from\",\"redeemAmount\":\"Amount to redeem\",\"to\":\"Address to claim and redeem to\"}},\"claimRewardsAndStake(address,uint256)\":{\"details\":\"Claims an `amount` of `REWARD_TOKEN` and stakes.\",\"params\":{\"amount\":\"Amount to claim\",\"to\":\"Address to stake to\"}},\"claimRewardsAndStakeOnBehalf(address,address,uint256)\":{\"details\":\"Claims an `amount` of `REWARD_TOKEN` and stakes. Only the claim helper contract is allowed to call this function\",\"params\":{\"amount\":\"Amount to claim\",\"from\":\"The address of the from from which to claim\",\"to\":\"Address to stake to\"}},\"claimRewardsOnBehalf(address,address,uint256)\":{\"details\":\"Claims an `amount` of `REWARD_TOKEN` to the address `to` on behalf of the user. Only the claim helper contract is allowed to call this function\",\"params\":{\"amount\":\"Amount to claim\",\"from\":\"The address of the user from to claim\",\"to\":\"Address to send the claimed rewards\"}},\"cooldown()\":{\"details\":\"Activates the cooldown period to unstake - It can't be called if the user is not staking\"},\"cooldownOnBehalfOf(address)\":{\"details\":\"Activates the cooldown period to unstake - It can't be called if the user is not staking\"},\"getCooldownSeconds()\":{\"details\":\"Getter of the cooldown seconds\",\"returns\":{\"_0\":\"cooldownSeconds the amount of seconds between starting the cooldown and being able to redeem\"}},\"getExchangeRate()\":{\"details\":\"Returns the current exchange rate\",\"returns\":{\"_0\":\"exchangeRate as 18 decimal precision uint216\"}},\"getExchangeRateSnapshot(uint32)\":{\"details\":\"Returns the exchangeRate for a specified index\",\"params\":{\"index\":\"Index of the exchangeRate\"}},\"getExchangeRateSnapshotsCount()\":{\"details\":\"Returnes the number of excahngeRate snapshots\"},\"getMaxSlashablePercentage()\":{\"details\":\"Getter of the max slashable percentage of the total staked amount.\",\"returns\":{\"_0\":\"percentage the maximum slashable percentage\"}},\"getTotalRewardsBalance(address)\":{\"details\":\"Return the total rewards pending to claim by an staker\",\"params\":{\"staker\":\"The staker address\"},\"returns\":{\"_0\":\"The rewards\"}},\"permit(address,address,uint256,uint256,uint8,bytes32,bytes32)\":{\"details\":\"implements the permit function as for https://github.com/ethereum/EIPs/blob/8a34d644aacf0f9f8f00815307fd7dd5da07655f/EIPS/eip-2612.md\",\"params\":{\"deadline\":\"the deadline timestamp, type(uint256).max for no deadline\",\"owner\":\"the owner of the funds\",\"r\":\"signature param\",\"s\":\"signature param\",\"spender\":\"the spender\",\"v\":\"signature param\",\"value\":\"the amount\"}},\"previewRedeem(uint256)\":{\"details\":\"returns the exact amount of assets that would be redeemed for the provided number of shares\",\"params\":{\"shares\":\"the number of shares to redeem\"},\"returns\":{\"_0\":\"uint256 assets the number of assets that would be redeemed\"}},\"previewStake(uint256)\":{\"details\":\"returns the exact amount of shares that would be received for the provided number of assets\",\"params\":{\"assets\":\"the number of assets to stake\"},\"returns\":{\"_0\":\"uint256 shares the number of shares that would be received\"}},\"redeem(address,uint256)\":{\"details\":\"Redeems shares, and stop earning rewards\",\"params\":{\"amount\":\"Amount of shares to redeem\",\"to\":\"Address to redeem to\"}},\"redeemOnBehalf(address,address,uint256)\":{\"details\":\"Redeems shares for a user. Only the claim helper contract is allowed to call this function\",\"params\":{\"amount\":\"Amount of shares to redeem\",\"from\":\"Address to redeem from\",\"to\":\"Address to redeem to\"}},\"returnFunds(uint256)\":{\"details\":\"Pulls STAKE_TOKEN and distributes them amongst current stakers by altering the exchange rate. This method is permissionless and intended to be used after a slashing event to return potential excess funds.\",\"params\":{\"amount\":\"amount of STAKE_TOKEN to pull.\"}},\"setCooldownSeconds(uint256)\":{\"details\":\"Setter of cooldown seconds Can only be called by the cooldown admin\",\"params\":{\"cooldownSeconds\":\"the new amount of seconds you have to wait between starting the cooldown and being able to redeem\"}},\"setGHODebtToken(address)\":{\"details\":\"Sets the GHO debt token (only callable by SHORT_EXECUTOR)\",\"params\":{\"newGHODebtToken\":\"Address to GHO debt token\"}},\"setMaxSlashablePercentage(uint256)\":{\"details\":\"Setter of max slashable percentage of the total staked amount. Can only be called by the slashing admin\",\"params\":{\"percentage\":\"the new maximum slashable percentage\"}},\"settleSlashing()\":{\"details\":\"Settles an ongoing slashing event\"},\"slash(address,uint256)\":{\"details\":\"Executes a slashing of the underlying of a certain amount, transferring the seized funds to destination. Decreasing the amount of underlying will automatically adjust the exchange rate. A call to `slash` will start a slashing event which has to be settled via `settleSlashing`. As long as the slashing event is ongoing, stake and slash are deactivated. - MUST NOT be called when a previous slashing is still ongoing\",\"params\":{\"amount\":\"the amount to be slashed - if the amount bigger than maximum allowed, the maximum will be slashed instead.\",\"destination\":\"the address where seized funds will be transferred\"},\"returns\":{\"_0\":\"amount the amount slashed\"}},\"stake(address,uint256)\":{\"details\":\"Allows staking a specified amount of STAKED_TOKEN\",\"params\":{\"amount\":\"The amount of assets to be staked\",\"to\":\"The address to receiving the shares\"}},\"stakeWithPermit(address,uint256,uint256,uint8,bytes32,bytes32)\":{\"details\":\"Allows staking a certain amount of STAKED_TOKEN with gasless approvals (permit)\",\"params\":{\"amount\":\"The amount to be staked\",\"deadline\":\"The permit execution deadline\",\"from\":\"The address staking the token\",\"r\":\"The r component of the signed message\",\"s\":\"The s component of the signed message\",\"v\":\"The v component of the signed message\"}}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/flatten/StakedPSYSV3-flatten.sol\":\"IStakedPSYSV3\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"contracts/flatten/StakedPSYSV3-flatten.sol\":{\"keccak256\":\"0x1288e9f8db9b4a153854a518648153da8175d48775832dc88c82af682197fc0c\",\"license\":\"MIT AND agpl-3.0\",\"urls\":[\"bzz-raw://c0b3c1c232cadc3e9d3315b983bfae0d842041778a8a557240729676d1b143cb\",\"dweb:/ipfs/QmWLxw9LFwrVNftCUwD8koRmWKVrcaEHemcZJY7mAjoBRN\"]}},\"version\":1}"},"IStakedTokenV2":{"abi":[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Cooldown","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"RewardsAccrued","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":"amount","type":"uint256"}],"name":"RewardsClaimed","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"claimRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cooldown","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"staker","type":"address"}],"name":"getTotalRewardsBalance","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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"redeem","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"stake","outputs":[],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"claimRewards(address,uint256)":"9a99b4f0","cooldown()":"787a08a6","getTotalRewardsBalance(address)":"8dbefee2","permit(address,address,uint256,uint256,uint8,bytes32,bytes32)":"d505accf","redeem(address,uint256)":"1e9a6950","stake(address,uint256)":"adc9772e"}},"metadata":"{\"compiler\":{\"version\":\"0.8.27+commit.40a35a09\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"Cooldown\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"RewardsAccrued\",\"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\":\"amount\",\"type\":\"uint256\"}],\"name\":\"RewardsClaimed\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"claimRewards\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"cooldown\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"staker\",\"type\":\"address\"}],\"name\":\"getTotalRewardsBalance\",\"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\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"redeem\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"stake\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{\"claimRewards(address,uint256)\":{\"details\":\"Claims an `amount` of `REWARD_TOKEN` to the address `to`\",\"params\":{\"amount\":\"Amount to stake\",\"to\":\"Address to send the claimed rewards\"}},\"cooldown()\":{\"details\":\"Activates the cooldown period to unstake - It can't be called if the user is not staking\"},\"getTotalRewardsBalance(address)\":{\"details\":\"Return the total rewards pending to claim by an staker\",\"params\":{\"staker\":\"The staker address\"},\"returns\":{\"_0\":\"The rewards\"}},\"permit(address,address,uint256,uint256,uint8,bytes32,bytes32)\":{\"details\":\"implements the permit function as for https://github.com/ethereum/EIPs/blob/8a34d644aacf0f9f8f00815307fd7dd5da07655f/EIPS/eip-2612.md\",\"params\":{\"deadline\":\"the deadline timestamp, type(uint256).max for no deadline\",\"owner\":\"the owner of the funds\",\"r\":\"signature param\",\"s\":\"signature param\",\"spender\":\"the spender\",\"v\":\"signature param\",\"value\":\"the amount\"}},\"redeem(address,uint256)\":{\"details\":\"Redeems shares, and stop earning rewards\",\"params\":{\"amount\":\"Amount of shares to redeem\",\"to\":\"Address to redeem to\"}},\"stake(address,uint256)\":{\"details\":\"Allows staking a specified amount of STAKED_TOKEN\",\"params\":{\"amount\":\"The amount of assets to be staked\",\"to\":\"The address to receiving the shares\"}}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/flatten/StakedPSYSV3-flatten.sol\":\"IStakedTokenV2\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"contracts/flatten/StakedPSYSV3-flatten.sol\":{\"keccak256\":\"0x1288e9f8db9b4a153854a518648153da8175d48775832dc88c82af682197fc0c\",\"license\":\"MIT AND agpl-3.0\",\"urls\":[\"bzz-raw://c0b3c1c232cadc3e9d3315b983bfae0d842041778a8a557240729676d1b143cb\",\"dweb:/ipfs/QmWLxw9LFwrVNftCUwD8koRmWKVrcaEHemcZJY7mAjoBRN\"]}},\"version\":1}"},"IStakedTokenV3":{"abi":[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Cooldown","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"cooldownSeconds","type":"uint256"}],"name":"CooldownSecondsChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint216","name":"exchangeRate","type":"uint216"}],"name":"ExchangeRateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"FundsReturned","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newPercentage","type":"uint256"}],"name":"MaxSlashablePercentageChanged","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":"assets","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"Redeem","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"RewardsAccrued","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":"amount","type":"uint256"}],"name":"RewardsClaimed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"destination","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Slashed","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"windowSeconds","type":"uint256"}],"name":"SlashingExitWindowDurationChanged","type":"event"},{"anonymous":false,"inputs":[],"name":"SlashingSettled","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":"assets","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"Staked","type":"event"},{"inputs":[],"name":"COOLDOWN_SECONDS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"claimRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"claimAmount","type":"uint256"},{"internalType":"uint256","name":"redeemAmount","type":"uint256"}],"name":"claimRewardsAndRedeem","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"claimAmount","type":"uint256"},{"internalType":"uint256","name":"redeemAmount","type":"uint256"}],"name":"claimRewardsAndRedeemOnBehalf","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"claimRewardsOnBehalf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cooldown","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"}],"name":"cooldownOnBehalfOf","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getCooldownSeconds","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getExchangeRate","outputs":[{"internalType":"uint216","name":"","type":"uint216"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMaxSlashablePercentage","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"staker","type":"address"}],"name":"getTotalRewardsBalance","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":[{"internalType":"uint256","name":"shares","type":"uint256"}],"name":"previewRedeem","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"assets","type":"uint256"}],"name":"previewStake","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"redeem","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"redeemOnBehalf","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"returnFunds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"cooldownSeconds","type":"uint256"}],"name":"setCooldownSeconds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"percentage","type":"uint256"}],"name":"setMaxSlashablePercentage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"settleSlashing","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"destination","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"slash","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"stake","outputs":[],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"COOLDOWN_SECONDS()":"72b49d63","claimRewards(address,uint256)":"9a99b4f0","claimRewardsAndRedeem(address,uint256,uint256)":"eab52318","claimRewardsAndRedeemOnBehalf(address,address,uint256,uint256)":"9c9b5154","claimRewardsOnBehalf(address,address,uint256)":"20fb80b5","cooldown()":"787a08a6","cooldownOnBehalfOf(address)":"250201db","getCooldownSeconds()":"616e0bf9","getExchangeRate()":"e6aa216c","getMaxSlashablePercentage()":"f34d96da","getTotalRewardsBalance(address)":"8dbefee2","permit(address,address,uint256,uint256,uint8,bytes32,bytes32)":"d505accf","previewRedeem(uint256)":"4cdad506","previewStake(uint256)":"727a5d57","redeem(address,uint256)":"1e9a6950","redeemOnBehalf(address,address,uint256)":"112d037c","returnFunds(uint256)":"45755dd6","setCooldownSeconds(uint256)":"7b5b1157","setMaxSlashablePercentage(uint256)":"74011f56","settleSlashing()":"aff05aa9","slash(address,uint256)":"02fb4d85","stake(address,uint256)":"adc9772e"}},"metadata":"{\"compiler\":{\"version\":\"0.8.27+commit.40a35a09\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"Cooldown\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"cooldownSeconds\",\"type\":\"uint256\"}],\"name\":\"CooldownSecondsChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint216\",\"name\":\"exchangeRate\",\"type\":\"uint216\"}],\"name\":\"ExchangeRateChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"FundsReturned\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"newPercentage\",\"type\":\"uint256\"}],\"name\":\"MaxSlashablePercentageChanged\",\"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\":\"assets\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"}],\"name\":\"Redeem\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"RewardsAccrued\",\"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\":\"amount\",\"type\":\"uint256\"}],\"name\":\"RewardsClaimed\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"destination\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"Slashed\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"windowSeconds\",\"type\":\"uint256\"}],\"name\":\"SlashingExitWindowDurationChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[],\"name\":\"SlashingSettled\",\"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\":\"assets\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"}],\"name\":\"Staked\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"COOLDOWN_SECONDS\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"claimRewards\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"claimAmount\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"redeemAmount\",\"type\":\"uint256\"}],\"name\":\"claimRewardsAndRedeem\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"claimAmount\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"redeemAmount\",\"type\":\"uint256\"}],\"name\":\"claimRewardsAndRedeemOnBehalf\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"claimRewardsOnBehalf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"cooldown\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"}],\"name\":\"cooldownOnBehalfOf\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getCooldownSeconds\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getExchangeRate\",\"outputs\":[{\"internalType\":\"uint216\",\"name\":\"\",\"type\":\"uint216\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getMaxSlashablePercentage\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"staker\",\"type\":\"address\"}],\"name\":\"getTotalRewardsBalance\",\"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\":[{\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"}],\"name\":\"previewRedeem\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"}],\"name\":\"previewStake\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"redeem\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"redeemOnBehalf\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"returnFunds\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"cooldownSeconds\",\"type\":\"uint256\"}],\"name\":\"setCooldownSeconds\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"percentage\",\"type\":\"uint256\"}],\"name\":\"setMaxSlashablePercentage\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"settleSlashing\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"destination\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"slash\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"stake\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{\"COOLDOWN_SECONDS()\":{\"details\":\"Getter of the cooldown seconds\",\"returns\":{\"_0\":\"cooldownSeconds the amount of seconds between starting the cooldown and being able to redeem\"}},\"claimRewards(address,uint256)\":{\"details\":\"Claims an `amount` of `REWARD_TOKEN` to the address `to`\",\"params\":{\"amount\":\"Amount to stake\",\"to\":\"Address to send the claimed rewards\"}},\"claimRewardsAndRedeem(address,uint256,uint256)\":{\"details\":\"Claims an `amount` of `REWARD_TOKEN` and redeems to the provided address\",\"params\":{\"claimAmount\":\"Amount to claim\",\"redeemAmount\":\"Amount to redeem\",\"to\":\"Address to claim and redeem to\"}},\"claimRewardsAndRedeemOnBehalf(address,address,uint256,uint256)\":{\"details\":\"Claims an `amount` of `REWARD_TOKEN` and redeems the `redeemAmount` to an address. Only the claim helper contract is allowed to call this function\",\"params\":{\"claimAmount\":\"Amount to claim\",\"from\":\"The address of the from\",\"redeemAmount\":\"Amount to redeem\",\"to\":\"Address to claim and redeem to\"}},\"claimRewardsOnBehalf(address,address,uint256)\":{\"details\":\"Claims an `amount` of `REWARD_TOKEN` to the address `to` on behalf of the user. Only the claim helper contract is allowed to call this function\",\"params\":{\"amount\":\"Amount to claim\",\"from\":\"The address of the user from to claim\",\"to\":\"Address to send the claimed rewards\"}},\"cooldown()\":{\"details\":\"Activates the cooldown period to unstake - It can't be called if the user is not staking\"},\"cooldownOnBehalfOf(address)\":{\"details\":\"Activates the cooldown period to unstake - It can't be called if the user is not staking\"},\"getCooldownSeconds()\":{\"details\":\"Getter of the cooldown seconds\",\"returns\":{\"_0\":\"cooldownSeconds the amount of seconds between starting the cooldown and being able to redeem\"}},\"getExchangeRate()\":{\"details\":\"Returns the current exchange rate\",\"returns\":{\"_0\":\"exchangeRate as 18 decimal precision uint216\"}},\"getMaxSlashablePercentage()\":{\"details\":\"Getter of the max slashable percentage of the total staked amount.\",\"returns\":{\"_0\":\"percentage the maximum slashable percentage\"}},\"getTotalRewardsBalance(address)\":{\"details\":\"Return the total rewards pending to claim by an staker\",\"params\":{\"staker\":\"The staker address\"},\"returns\":{\"_0\":\"The rewards\"}},\"permit(address,address,uint256,uint256,uint8,bytes32,bytes32)\":{\"details\":\"implements the permit function as for https://github.com/ethereum/EIPs/blob/8a34d644aacf0f9f8f00815307fd7dd5da07655f/EIPS/eip-2612.md\",\"params\":{\"deadline\":\"the deadline timestamp, type(uint256).max for no deadline\",\"owner\":\"the owner of the funds\",\"r\":\"signature param\",\"s\":\"signature param\",\"spender\":\"the spender\",\"v\":\"signature param\",\"value\":\"the amount\"}},\"previewRedeem(uint256)\":{\"details\":\"returns the exact amount of assets that would be redeemed for the provided number of shares\",\"params\":{\"shares\":\"the number of shares to redeem\"},\"returns\":{\"_0\":\"uint256 assets the number of assets that would be redeemed\"}},\"previewStake(uint256)\":{\"details\":\"returns the exact amount of shares that would be received for the provided number of assets\",\"params\":{\"assets\":\"the number of assets to stake\"},\"returns\":{\"_0\":\"uint256 shares the number of shares that would be received\"}},\"redeem(address,uint256)\":{\"details\":\"Redeems shares, and stop earning rewards\",\"params\":{\"amount\":\"Amount of shares to redeem\",\"to\":\"Address to redeem to\"}},\"redeemOnBehalf(address,address,uint256)\":{\"details\":\"Redeems shares for a user. Only the claim helper contract is allowed to call this function\",\"params\":{\"amount\":\"Amount of shares to redeem\",\"from\":\"Address to redeem from\",\"to\":\"Address to redeem to\"}},\"returnFunds(uint256)\":{\"details\":\"Pulls STAKE_TOKEN and distributes them amongst current stakers by altering the exchange rate. This method is permissionless and intended to be used after a slashing event to return potential excess funds.\",\"params\":{\"amount\":\"amount of STAKE_TOKEN to pull.\"}},\"setCooldownSeconds(uint256)\":{\"details\":\"Setter of cooldown seconds Can only be called by the cooldown admin\",\"params\":{\"cooldownSeconds\":\"the new amount of seconds you have to wait between starting the cooldown and being able to redeem\"}},\"setMaxSlashablePercentage(uint256)\":{\"details\":\"Setter of max slashable percentage of the total staked amount. Can only be called by the slashing admin\",\"params\":{\"percentage\":\"the new maximum slashable percentage\"}},\"settleSlashing()\":{\"details\":\"Settles an ongoing slashing event\"},\"slash(address,uint256)\":{\"details\":\"Executes a slashing of the underlying of a certain amount, transferring the seized funds to destination. Decreasing the amount of underlying will automatically adjust the exchange rate. A call to `slash` will start a slashing event which has to be settled via `settleSlashing`. As long as the slashing event is ongoing, stake and slash are deactivated. - MUST NOT be called when a previous slashing is still ongoing\",\"params\":{\"amount\":\"the amount to be slashed - if the amount bigger than maximum allowed, the maximum will be slashed instead.\",\"destination\":\"the address where seized funds will be transferred\"},\"returns\":{\"_0\":\"amount the amount slashed\"}},\"stake(address,uint256)\":{\"details\":\"Allows staking a specified amount of STAKED_TOKEN\",\"params\":{\"amount\":\"The amount of assets to be staked\",\"to\":\"The address to receiving the shares\"}}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/flatten/StakedPSYSV3-flatten.sol\":\"IStakedTokenV3\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"contracts/flatten/StakedPSYSV3-flatten.sol\":{\"keccak256\":\"0x1288e9f8db9b4a153854a518648153da8175d48775832dc88c82af682197fc0c\",\"license\":\"MIT AND agpl-3.0\",\"urls\":[\"bzz-raw://c0b3c1c232cadc3e9d3315b983bfae0d842041778a8a557240729676d1b143cb\",\"dweb:/ipfs/QmWLxw9LFwrVNftCUwD8koRmWKVrcaEHemcZJY7mAjoBRN\"]}},\"version\":1}"},"ITransferHook":{"abi":[{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"onTransfer","outputs":[],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"onTransfer(address,address,uint256)":"4a393149"}},"metadata":"{\"compiler\":{\"version\":\"0.8.27+commit.40a35a09\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"onTransfer\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/flatten/StakedPSYSV3-flatten.sol\":\"ITransferHook\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"contracts/flatten/StakedPSYSV3-flatten.sol\":{\"keccak256\":\"0x1288e9f8db9b4a153854a518648153da8175d48775832dc88c82af682197fc0c\",\"license\":\"MIT AND agpl-3.0\",\"urls\":[\"bzz-raw://c0b3c1c232cadc3e9d3315b983bfae0d842041778a8a557240729676d1b143cb\",\"dweb:/ipfs/QmWLxw9LFwrVNftCUwD8koRmWKVrcaEHemcZJY7mAjoBRN\"]}},\"version\":1}"},"PegasysDistributionManager":{"abi":[{"inputs":[{"internalType":"address","name":"emissionManager","type":"address"},{"internalType":"uint256","name":"distributionDuration","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"asset","type":"address"},{"indexed":false,"internalType":"uint256","name":"emission","type":"uint256"}],"name":"AssetConfigUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"asset","type":"address"},{"indexed":false,"internalType":"uint256","name":"index","type":"uint256"}],"name":"AssetIndexUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"address","name":"asset","type":"address"},{"indexed":false,"internalType":"uint256","name":"index","type":"uint256"}],"name":"UserIndexUpdated","type":"event"},{"inputs":[],"name":"DISTRIBUTION_END","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"EMISSION_MANAGER","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRECISION","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"assets","outputs":[{"internalType":"uint128","name":"emissionPerSecond","type":"uint128"},{"internalType":"uint128","name":"lastUpdateTimestamp","type":"uint128"},{"internalType":"uint256","name":"index","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"address","name":"asset","type":"address"}],"name":"getUserAssetData","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}],"evm":{"bytecode":{"functionDebugData":{"@_2520":{"entryPoint":null,"id":2520,"parameterSlots":2,"returnSlots":0},"abi_decode_tuple_t_addresst_uint256_fromMemory":{"entryPoint":78,"id":null,"parameterSlots":2,"returnSlots":2},"checked_add_t_uint256":{"entryPoint":136,"id":null,"parameterSlots":2,"returnSlots":1}},"generatedSources":[{"ast":{"nativeSrc":"0:594:1","nodeType":"YulBlock","src":"0:594:1","statements":[{"nativeSrc":"6:3:1","nodeType":"YulBlock","src":"6:3:1","statements":[]},{"body":{"nativeSrc":"112:253:1","nodeType":"YulBlock","src":"112:253:1","statements":[{"body":{"nativeSrc":"158:16:1","nodeType":"YulBlock","src":"158:16:1","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"167:1:1","nodeType":"YulLiteral","src":"167:1:1","type":"","value":"0"},{"kind":"number","nativeSrc":"170:1:1","nodeType":"YulLiteral","src":"170:1:1","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"160:6:1","nodeType":"YulIdentifier","src":"160:6:1"},"nativeSrc":"160:12:1","nodeType":"YulFunctionCall","src":"160:12:1"},"nativeSrc":"160:12:1","nodeType":"YulExpressionStatement","src":"160:12:1"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"133:7:1","nodeType":"YulIdentifier","src":"133:7:1"},{"name":"headStart","nativeSrc":"142:9:1","nodeType":"YulIdentifier","src":"142:9:1"}],"functionName":{"name":"sub","nativeSrc":"129:3:1","nodeType":"YulIdentifier","src":"129:3:1"},"nativeSrc":"129:23:1","nodeType":"YulFunctionCall","src":"129:23:1"},{"kind":"number","nativeSrc":"154:2:1","nodeType":"YulLiteral","src":"154:2:1","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"125:3:1","nodeType":"YulIdentifier","src":"125:3:1"},"nativeSrc":"125:32:1","nodeType":"YulFunctionCall","src":"125:32:1"},"nativeSrc":"122:52:1","nodeType":"YulIf","src":"122:52:1"},{"nativeSrc":"183:29:1","nodeType":"YulVariableDeclaration","src":"183:29:1","value":{"arguments":[{"name":"headStart","nativeSrc":"202:9:1","nodeType":"YulIdentifier","src":"202:9:1"}],"functionName":{"name":"mload","nativeSrc":"196:5:1","nodeType":"YulIdentifier","src":"196:5:1"},"nativeSrc":"196:16:1","nodeType":"YulFunctionCall","src":"196:16:1"},"variables":[{"name":"value","nativeSrc":"187:5:1","nodeType":"YulTypedName","src":"187:5:1","type":""}]},{"body":{"nativeSrc":"275:16:1","nodeType":"YulBlock","src":"275:16:1","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"284:1:1","nodeType":"YulLiteral","src":"284:1:1","type":"","value":"0"},{"kind":"number","nativeSrc":"287:1:1","nodeType":"YulLiteral","src":"287:1:1","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"277:6:1","nodeType":"YulIdentifier","src":"277:6:1"},"nativeSrc":"277:12:1","nodeType":"YulFunctionCall","src":"277:12:1"},"nativeSrc":"277:12:1","nodeType":"YulExpressionStatement","src":"277:12:1"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"234:5:1","nodeType":"YulIdentifier","src":"234:5:1"},{"arguments":[{"name":"value","nativeSrc":"245:5:1","nodeType":"YulIdentifier","src":"245:5:1"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"260:3:1","nodeType":"YulLiteral","src":"260:3:1","type":"","value":"160"},{"kind":"number","nativeSrc":"265:1:1","nodeType":"YulLiteral","src":"265:1:1","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"256:3:1","nodeType":"YulIdentifier","src":"256:3:1"},"nativeSrc":"256:11:1","nodeType":"YulFunctionCall","src":"256:11:1"},{"kind":"number","nativeSrc":"269:1:1","nodeType":"YulLiteral","src":"269:1:1","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"252:3:1","nodeType":"YulIdentifier","src":"252:3:1"},"nativeSrc":"252:19:1","nodeType":"YulFunctionCall","src":"252:19:1"}],"functionName":{"name":"and","nativeSrc":"241:3:1","nodeType":"YulIdentifier","src":"241:3:1"},"nativeSrc":"241:31:1","nodeType":"YulFunctionCall","src":"241:31:1"}],"functionName":{"name":"eq","nativeSrc":"231:2:1","nodeType":"YulIdentifier","src":"231:2:1"},"nativeSrc":"231:42:1","nodeType":"YulFunctionCall","src":"231:42:1"}],"functionName":{"name":"iszero","nativeSrc":"224:6:1","nodeType":"YulIdentifier","src":"224:6:1"},"nativeSrc":"224:50:1","nodeType":"YulFunctionCall","src":"224:50:1"},"nativeSrc":"221:70:1","nodeType":"YulIf","src":"221:70:1"},{"nativeSrc":"300:15:1","nodeType":"YulAssignment","src":"300:15:1","value":{"name":"value","nativeSrc":"310:5:1","nodeType":"YulIdentifier","src":"310:5:1"},"variableNames":[{"name":"value0","nativeSrc":"300:6:1","nodeType":"YulIdentifier","src":"300:6:1"}]},{"nativeSrc":"324:35:1","nodeType":"YulAssignment","src":"324:35:1","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"344:9:1","nodeType":"YulIdentifier","src":"344:9:1"},{"kind":"number","nativeSrc":"355:2:1","nodeType":"YulLiteral","src":"355:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"340:3:1","nodeType":"YulIdentifier","src":"340:3:1"},"nativeSrc":"340:18:1","nodeType":"YulFunctionCall","src":"340:18:1"}],"functionName":{"name":"mload","nativeSrc":"334:5:1","nodeType":"YulIdentifier","src":"334:5:1"},"nativeSrc":"334:25:1","nodeType":"YulFunctionCall","src":"334:25:1"},"variableNames":[{"name":"value1","nativeSrc":"324:6:1","nodeType":"YulIdentifier","src":"324:6:1"}]}]},"name":"abi_decode_tuple_t_addresst_uint256_fromMemory","nativeSrc":"14:351:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"70:9:1","nodeType":"YulTypedName","src":"70:9:1","type":""},{"name":"dataEnd","nativeSrc":"81:7:1","nodeType":"YulTypedName","src":"81:7:1","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"93:6:1","nodeType":"YulTypedName","src":"93:6:1","type":""},{"name":"value1","nativeSrc":"101:6:1","nodeType":"YulTypedName","src":"101:6:1","type":""}],"src":"14:351:1"},{"body":{"nativeSrc":"418:174:1","nodeType":"YulBlock","src":"418:174:1","statements":[{"nativeSrc":"428:16:1","nodeType":"YulAssignment","src":"428:16:1","value":{"arguments":[{"name":"x","nativeSrc":"439:1:1","nodeType":"YulIdentifier","src":"439:1:1"},{"name":"y","nativeSrc":"442:1:1","nodeType":"YulIdentifier","src":"442:1:1"}],"functionName":{"name":"add","nativeSrc":"435:3:1","nodeType":"YulIdentifier","src":"435:3:1"},"nativeSrc":"435:9:1","nodeType":"YulFunctionCall","src":"435:9:1"},"variableNames":[{"name":"sum","nativeSrc":"428:3:1","nodeType":"YulIdentifier","src":"428:3:1"}]},{"body":{"nativeSrc":"475:111:1","nodeType":"YulBlock","src":"475:111:1","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"496:1:1","nodeType":"YulLiteral","src":"496:1:1","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"503:3:1","nodeType":"YulLiteral","src":"503:3:1","type":"","value":"224"},{"kind":"number","nativeSrc":"508:10:1","nodeType":"YulLiteral","src":"508:10:1","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"499:3:1","nodeType":"YulIdentifier","src":"499:3:1"},"nativeSrc":"499:20:1","nodeType":"YulFunctionCall","src":"499:20:1"}],"functionName":{"name":"mstore","nativeSrc":"489:6:1","nodeType":"YulIdentifier","src":"489:6:1"},"nativeSrc":"489:31:1","nodeType":"YulFunctionCall","src":"489:31:1"},"nativeSrc":"489:31:1","nodeType":"YulExpressionStatement","src":"489:31:1"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"540:1:1","nodeType":"YulLiteral","src":"540:1:1","type":"","value":"4"},{"kind":"number","nativeSrc":"543:4:1","nodeType":"YulLiteral","src":"543:4:1","type":"","value":"0x11"}],"functionName":{"name":"mstore","nativeSrc":"533:6:1","nodeType":"YulIdentifier","src":"533:6:1"},"nativeSrc":"533:15:1","nodeType":"YulFunctionCall","src":"533:15:1"},"nativeSrc":"533:15:1","nodeType":"YulExpressionStatement","src":"533:15:1"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"568:1:1","nodeType":"YulLiteral","src":"568:1:1","type":"","value":"0"},{"kind":"number","nativeSrc":"571:4:1","nodeType":"YulLiteral","src":"571:4:1","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"561:6:1","nodeType":"YulIdentifier","src":"561:6:1"},"nativeSrc":"561:15:1","nodeType":"YulFunctionCall","src":"561:15:1"},"nativeSrc":"561:15:1","nodeType":"YulExpressionStatement","src":"561:15:1"}]},"condition":{"arguments":[{"name":"x","nativeSrc":"459:1:1","nodeType":"YulIdentifier","src":"459:1:1"},{"name":"sum","nativeSrc":"462:3:1","nodeType":"YulIdentifier","src":"462:3:1"}],"functionName":{"name":"gt","nativeSrc":"456:2:1","nodeType":"YulIdentifier","src":"456:2:1"},"nativeSrc":"456:10:1","nodeType":"YulFunctionCall","src":"456:10:1"},"nativeSrc":"453:133:1","nodeType":"YulIf","src":"453:133:1"}]},"name":"checked_add_t_uint256","nativeSrc":"370:222:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"401:1:1","nodeType":"YulTypedName","src":"401:1:1","type":""},{"name":"y","nativeSrc":"404:1:1","nodeType":"YulTypedName","src":"404:1:1","type":""}],"returnVariables":[{"name":"sum","nativeSrc":"410:3:1","nodeType":"YulTypedName","src":"410:3:1","type":""}],"src":"370:222:1"}]},"contents":"{\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        if iszero(eq(value, and(value, sub(shl(160, 1), 1)))) { revert(0, 0) }\n        value0 := value\n        value1 := mload(add(headStart, 32))\n    }\n    function checked_add_t_uint256(x, y) -> sum\n    {\n        sum := add(x, y)\n        if gt(x, sum)\n        {\n            mstore(0, shl(224, 0x4e487b71))\n            mstore(4, 0x11)\n            revert(0, 0x24)\n        }\n    }\n}","id":1,"language":"Yul","name":"#utility.yul"}],"linkReferences":{},"object":"60c060405234801561001057600080fd5b5060405161030638038061030683398101604081905261002f9161004e565b6100398142610088565b608052506001600160a01b031660a0526100af565b6000806040838503121561006157600080fd5b82516001600160a01b038116811461007857600080fd5b6020939093015192949293505050565b808201808211156100a957634e487b7160e01b600052601160045260246000fd5b92915050565b60805160a0516102346100d2600039600060f10152600060b001526102346000f3fe608060405234801561001057600080fd5b50600436106100575760003560e01c80633373ee4c1461005c578063919cd40f146100ab578063aaf5eb68146100d2578063cbcbb507146100ec578063f11b81881461012b575b600080fd5b61009861006a3660046101a9565b6001600160a01b03808216600090815260208181526040808320938616835260029093019052205492915050565b6040519081526020015b60405180910390f35b6100987f000000000000000000000000000000000000000000000000000000000000000081565b6100da601281565b60405160ff90911681526020016100a2565b6101137f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016100a2565b6101676101393660046101dc565b600060208190529081526040902080546001909101546001600160801b0380831692600160801b9004169083565b604080516001600160801b039485168152939092166020840152908201526060016100a2565b80356001600160a01b03811681146101a457600080fd5b919050565b600080604083850312156101bc57600080fd5b6101c58361018d565b91506101d36020840161018d565b90509250929050565b6000602082840312156101ee57600080fd5b6101f78261018d565b939250505056fea26469706673582212207d8e5a6e71e0b68bc86f38fc875b625cdf870c3c3a8d2a88ea3a50381759f14964736f6c634300081b0033","opcodes":"PUSH1 0xC0 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH2 0x306 CODESIZE SUB DUP1 PUSH2 0x306 DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH2 0x2F SWAP2 PUSH2 0x4E JUMP JUMPDEST PUSH2 0x39 DUP2 TIMESTAMP PUSH2 0x88 JUMP JUMPDEST PUSH1 0x80 MSTORE POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0xA0 MSTORE PUSH2 0xAF JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x61 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x78 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD MLOAD SWAP3 SWAP5 SWAP3 SWAP4 POP POP POP JUMP JUMPDEST DUP1 DUP3 ADD DUP1 DUP3 GT ISZERO PUSH2 0xA9 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x80 MLOAD PUSH1 0xA0 MLOAD PUSH2 0x234 PUSH2 0xD2 PUSH1 0x0 CODECOPY PUSH1 0x0 PUSH1 0xF1 ADD MSTORE PUSH1 0x0 PUSH1 0xB0 ADD MSTORE PUSH2 0x234 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 0x57 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x3373EE4C EQ PUSH2 0x5C JUMPI DUP1 PUSH4 0x919CD40F EQ PUSH2 0xAB JUMPI DUP1 PUSH4 0xAAF5EB68 EQ PUSH2 0xD2 JUMPI DUP1 PUSH4 0xCBCBB507 EQ PUSH2 0xEC JUMPI DUP1 PUSH4 0xF11B8188 EQ PUSH2 0x12B JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x98 PUSH2 0x6A CALLDATASIZE PUSH1 0x4 PUSH2 0x1A9 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 DUP7 AND DUP4 MSTORE PUSH1 0x2 SWAP1 SWAP4 ADD SWAP1 MSTORE KECCAK256 SLOAD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x98 PUSH32 0x0 DUP2 JUMP JUMPDEST PUSH2 0xDA PUSH1 0x12 DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0xFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xA2 JUMP JUMPDEST PUSH2 0x113 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 0xA2 JUMP JUMPDEST PUSH2 0x167 PUSH2 0x139 CALLDATASIZE PUSH1 0x4 PUSH2 0x1DC JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP2 SWAP1 MSTORE SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x1 SWAP1 SWAP2 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB DUP1 DUP4 AND SWAP3 PUSH1 0x1 PUSH1 0x80 SHL SWAP1 DIV AND SWAP1 DUP4 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB SWAP5 DUP6 AND DUP2 MSTORE SWAP4 SWAP1 SWAP3 AND PUSH1 0x20 DUP5 ADD MSTORE SWAP1 DUP3 ADD MSTORE PUSH1 0x60 ADD PUSH2 0xA2 JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x1A4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1BC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1C5 DUP4 PUSH2 0x18D JUMP JUMPDEST SWAP2 POP PUSH2 0x1D3 PUSH1 0x20 DUP5 ADD PUSH2 0x18D JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1EE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1F7 DUP3 PUSH2 0x18D JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH30 0x8E5A6E71E0B68BC86F38FC875B625CDF870C3C3A8D2A88EA3A50381759F1 BLOBHASH PUSH5 0x736F6C6343 STOP ADDMOD SHL STOP CALLER ","sourceMap":"57028:7552:0:-:0;;;57634:175;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;57726:38;57744:20;57726:15;:38;:::i;:::-;57707:57;;-1:-1:-1;;;;;;57770:34:0;;;57028:7552;;14:351:1;93:6;101;154:2;142:9;133:7;129:23;125:32;122:52;;;170:1;167;160:12;122:52;196:16;;-1:-1:-1;;;;;241:31:1;;231:42;;221:70;;287:1;284;277:12;221:70;355:2;340:18;;;;334:25;310:5;;334:25;;-1:-1:-1;;;14:351:1:o;370:222::-;435:9;;;456:10;;;453:133;;;508:10;503:3;499:20;496:1;489:31;543:4;540:1;533:15;571:4;568:1;561:15;453:133;370:222;;;;:::o;:::-;57028:7552:0;;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{"@DISTRIBUTION_END_2471":{"entryPoint":null,"id":2471,"parameterSlots":0,"returnSlots":0},"@EMISSION_MANAGER_2473":{"entryPoint":null,"id":2473,"parameterSlots":0,"returnSlots":0},"@PRECISION_2476":{"entryPoint":null,"id":2476,"parameterSlots":0,"returnSlots":0},"@assets_2481":{"entryPoint":null,"id":2481,"parameterSlots":0,"returnSlots":0},"@getUserAssetData_2971":{"entryPoint":null,"id":2971,"parameterSlots":2,"returnSlots":1},"abi_decode_address":{"entryPoint":397,"id":null,"parameterSlots":1,"returnSlots":1},"abi_decode_tuple_t_address":{"entryPoint":476,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_addresst_address":{"entryPoint":425,"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_uint128_t_uint128_t_uint256__to_t_uint128_t_uint128_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":4,"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}},"generatedSources":[{"ast":{"nativeSrc":"0:1630:1","nodeType":"YulBlock","src":"0:1630:1","statements":[{"nativeSrc":"6:3:1","nodeType":"YulBlock","src":"6:3:1","statements":[]},{"body":{"nativeSrc":"63:124:1","nodeType":"YulBlock","src":"63:124:1","statements":[{"nativeSrc":"73:29:1","nodeType":"YulAssignment","src":"73:29:1","value":{"arguments":[{"name":"offset","nativeSrc":"95:6:1","nodeType":"YulIdentifier","src":"95:6:1"}],"functionName":{"name":"calldataload","nativeSrc":"82:12:1","nodeType":"YulIdentifier","src":"82:12:1"},"nativeSrc":"82:20:1","nodeType":"YulFunctionCall","src":"82:20:1"},"variableNames":[{"name":"value","nativeSrc":"73:5:1","nodeType":"YulIdentifier","src":"73:5:1"}]},{"body":{"nativeSrc":"165:16:1","nodeType":"YulBlock","src":"165:16:1","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"174:1:1","nodeType":"YulLiteral","src":"174:1:1","type":"","value":"0"},{"kind":"number","nativeSrc":"177:1:1","nodeType":"YulLiteral","src":"177:1:1","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"167:6:1","nodeType":"YulIdentifier","src":"167:6:1"},"nativeSrc":"167:12:1","nodeType":"YulFunctionCall","src":"167:12:1"},"nativeSrc":"167:12:1","nodeType":"YulExpressionStatement","src":"167:12:1"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"124:5:1","nodeType":"YulIdentifier","src":"124:5:1"},{"arguments":[{"name":"value","nativeSrc":"135:5:1","nodeType":"YulIdentifier","src":"135:5:1"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"150:3:1","nodeType":"YulLiteral","src":"150:3:1","type":"","value":"160"},{"kind":"number","nativeSrc":"155:1:1","nodeType":"YulLiteral","src":"155:1:1","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"146:3:1","nodeType":"YulIdentifier","src":"146:3:1"},"nativeSrc":"146:11:1","nodeType":"YulFunctionCall","src":"146:11:1"},{"kind":"number","nativeSrc":"159:1:1","nodeType":"YulLiteral","src":"159:1:1","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"142:3:1","nodeType":"YulIdentifier","src":"142:3:1"},"nativeSrc":"142:19:1","nodeType":"YulFunctionCall","src":"142:19:1"}],"functionName":{"name":"and","nativeSrc":"131:3:1","nodeType":"YulIdentifier","src":"131:3:1"},"nativeSrc":"131:31:1","nodeType":"YulFunctionCall","src":"131:31:1"}],"functionName":{"name":"eq","nativeSrc":"121:2:1","nodeType":"YulIdentifier","src":"121:2:1"},"nativeSrc":"121:42:1","nodeType":"YulFunctionCall","src":"121:42:1"}],"functionName":{"name":"iszero","nativeSrc":"114:6:1","nodeType":"YulIdentifier","src":"114:6:1"},"nativeSrc":"114:50:1","nodeType":"YulFunctionCall","src":"114:50:1"},"nativeSrc":"111:70:1","nodeType":"YulIf","src":"111:70:1"}]},"name":"abi_decode_address","nativeSrc":"14:173:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"42:6:1","nodeType":"YulTypedName","src":"42:6:1","type":""}],"returnVariables":[{"name":"value","nativeSrc":"53:5:1","nodeType":"YulTypedName","src":"53:5:1","type":""}],"src":"14:173:1"},{"body":{"nativeSrc":"279:173:1","nodeType":"YulBlock","src":"279:173:1","statements":[{"body":{"nativeSrc":"325:16:1","nodeType":"YulBlock","src":"325:16:1","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"334:1:1","nodeType":"YulLiteral","src":"334:1:1","type":"","value":"0"},{"kind":"number","nativeSrc":"337:1:1","nodeType":"YulLiteral","src":"337:1:1","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"327:6:1","nodeType":"YulIdentifier","src":"327:6:1"},"nativeSrc":"327:12:1","nodeType":"YulFunctionCall","src":"327:12:1"},"nativeSrc":"327:12:1","nodeType":"YulExpressionStatement","src":"327:12:1"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"300:7:1","nodeType":"YulIdentifier","src":"300:7:1"},{"name":"headStart","nativeSrc":"309:9:1","nodeType":"YulIdentifier","src":"309:9:1"}],"functionName":{"name":"sub","nativeSrc":"296:3:1","nodeType":"YulIdentifier","src":"296:3:1"},"nativeSrc":"296:23:1","nodeType":"YulFunctionCall","src":"296:23:1"},{"kind":"number","nativeSrc":"321:2:1","nodeType":"YulLiteral","src":"321:2:1","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"292:3:1","nodeType":"YulIdentifier","src":"292:3:1"},"nativeSrc":"292:32:1","nodeType":"YulFunctionCall","src":"292:32:1"},"nativeSrc":"289:52:1","nodeType":"YulIf","src":"289:52:1"},{"nativeSrc":"350:39:1","nodeType":"YulAssignment","src":"350:39:1","value":{"arguments":[{"name":"headStart","nativeSrc":"379:9:1","nodeType":"YulIdentifier","src":"379:9:1"}],"functionName":{"name":"abi_decode_address","nativeSrc":"360:18:1","nodeType":"YulIdentifier","src":"360:18:1"},"nativeSrc":"360:29:1","nodeType":"YulFunctionCall","src":"360:29:1"},"variableNames":[{"name":"value0","nativeSrc":"350:6:1","nodeType":"YulIdentifier","src":"350:6:1"}]},{"nativeSrc":"398:48:1","nodeType":"YulAssignment","src":"398:48:1","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"431:9:1","nodeType":"YulIdentifier","src":"431:9:1"},{"kind":"number","nativeSrc":"442:2:1","nodeType":"YulLiteral","src":"442:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"427:3:1","nodeType":"YulIdentifier","src":"427:3:1"},"nativeSrc":"427:18:1","nodeType":"YulFunctionCall","src":"427:18:1"}],"functionName":{"name":"abi_decode_address","nativeSrc":"408:18:1","nodeType":"YulIdentifier","src":"408:18:1"},"nativeSrc":"408:38:1","nodeType":"YulFunctionCall","src":"408:38:1"},"variableNames":[{"name":"value1","nativeSrc":"398:6:1","nodeType":"YulIdentifier","src":"398:6:1"}]}]},"name":"abi_decode_tuple_t_addresst_address","nativeSrc":"192:260:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"237:9:1","nodeType":"YulTypedName","src":"237:9:1","type":""},{"name":"dataEnd","nativeSrc":"248:7:1","nodeType":"YulTypedName","src":"248:7:1","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"260:6:1","nodeType":"YulTypedName","src":"260:6:1","type":""},{"name":"value1","nativeSrc":"268:6:1","nodeType":"YulTypedName","src":"268:6:1","type":""}],"src":"192:260:1"},{"body":{"nativeSrc":"558:76:1","nodeType":"YulBlock","src":"558:76:1","statements":[{"nativeSrc":"568:26:1","nodeType":"YulAssignment","src":"568:26:1","value":{"arguments":[{"name":"headStart","nativeSrc":"580:9:1","nodeType":"YulIdentifier","src":"580:9:1"},{"kind":"number","nativeSrc":"591:2:1","nodeType":"YulLiteral","src":"591:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"576:3:1","nodeType":"YulIdentifier","src":"576:3:1"},"nativeSrc":"576:18:1","nodeType":"YulFunctionCall","src":"576:18:1"},"variableNames":[{"name":"tail","nativeSrc":"568:4:1","nodeType":"YulIdentifier","src":"568:4:1"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"610:9:1","nodeType":"YulIdentifier","src":"610:9:1"},{"name":"value0","nativeSrc":"621:6:1","nodeType":"YulIdentifier","src":"621:6:1"}],"functionName":{"name":"mstore","nativeSrc":"603:6:1","nodeType":"YulIdentifier","src":"603:6:1"},"nativeSrc":"603:25:1","nodeType":"YulFunctionCall","src":"603:25:1"},"nativeSrc":"603:25:1","nodeType":"YulExpressionStatement","src":"603:25:1"}]},"name":"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed","nativeSrc":"457:177:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"527:9:1","nodeType":"YulTypedName","src":"527:9:1","type":""},{"name":"value0","nativeSrc":"538:6:1","nodeType":"YulTypedName","src":"538:6:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"549:4:1","nodeType":"YulTypedName","src":"549:4:1","type":""}],"src":"457:177:1"},{"body":{"nativeSrc":"736:87:1","nodeType":"YulBlock","src":"736:87:1","statements":[{"nativeSrc":"746:26:1","nodeType":"YulAssignment","src":"746:26:1","value":{"arguments":[{"name":"headStart","nativeSrc":"758:9:1","nodeType":"YulIdentifier","src":"758:9:1"},{"kind":"number","nativeSrc":"769:2:1","nodeType":"YulLiteral","src":"769:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"754:3:1","nodeType":"YulIdentifier","src":"754:3:1"},"nativeSrc":"754:18:1","nodeType":"YulFunctionCall","src":"754:18:1"},"variableNames":[{"name":"tail","nativeSrc":"746:4:1","nodeType":"YulIdentifier","src":"746:4:1"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"788:9:1","nodeType":"YulIdentifier","src":"788:9:1"},{"arguments":[{"name":"value0","nativeSrc":"803:6:1","nodeType":"YulIdentifier","src":"803:6:1"},{"kind":"number","nativeSrc":"811:4:1","nodeType":"YulLiteral","src":"811:4:1","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"799:3:1","nodeType":"YulIdentifier","src":"799:3:1"},"nativeSrc":"799:17:1","nodeType":"YulFunctionCall","src":"799:17:1"}],"functionName":{"name":"mstore","nativeSrc":"781:6:1","nodeType":"YulIdentifier","src":"781:6:1"},"nativeSrc":"781:36:1","nodeType":"YulFunctionCall","src":"781:36:1"},"nativeSrc":"781:36:1","nodeType":"YulExpressionStatement","src":"781:36:1"}]},"name":"abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed","nativeSrc":"639:184:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"705:9:1","nodeType":"YulTypedName","src":"705:9:1","type":""},{"name":"value0","nativeSrc":"716:6:1","nodeType":"YulTypedName","src":"716:6:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"727:4:1","nodeType":"YulTypedName","src":"727:4:1","type":""}],"src":"639:184:1"},{"body":{"nativeSrc":"929:102:1","nodeType":"YulBlock","src":"929:102:1","statements":[{"nativeSrc":"939:26:1","nodeType":"YulAssignment","src":"939:26:1","value":{"arguments":[{"name":"headStart","nativeSrc":"951:9:1","nodeType":"YulIdentifier","src":"951:9:1"},{"kind":"number","nativeSrc":"962:2:1","nodeType":"YulLiteral","src":"962:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"947:3:1","nodeType":"YulIdentifier","src":"947:3:1"},"nativeSrc":"947:18:1","nodeType":"YulFunctionCall","src":"947:18:1"},"variableNames":[{"name":"tail","nativeSrc":"939:4:1","nodeType":"YulIdentifier","src":"939:4:1"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"981:9:1","nodeType":"YulIdentifier","src":"981:9:1"},{"arguments":[{"name":"value0","nativeSrc":"996:6:1","nodeType":"YulIdentifier","src":"996:6:1"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"1012:3:1","nodeType":"YulLiteral","src":"1012:3:1","type":"","value":"160"},{"kind":"number","nativeSrc":"1017:1:1","nodeType":"YulLiteral","src":"1017:1:1","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"1008:3:1","nodeType":"YulIdentifier","src":"1008:3:1"},"nativeSrc":"1008:11:1","nodeType":"YulFunctionCall","src":"1008:11:1"},{"kind":"number","nativeSrc":"1021:1:1","nodeType":"YulLiteral","src":"1021:1:1","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"1004:3:1","nodeType":"YulIdentifier","src":"1004:3:1"},"nativeSrc":"1004:19:1","nodeType":"YulFunctionCall","src":"1004:19:1"}],"functionName":{"name":"and","nativeSrc":"992:3:1","nodeType":"YulIdentifier","src":"992:3:1"},"nativeSrc":"992:32:1","nodeType":"YulFunctionCall","src":"992:32:1"}],"functionName":{"name":"mstore","nativeSrc":"974:6:1","nodeType":"YulIdentifier","src":"974:6:1"},"nativeSrc":"974:51:1","nodeType":"YulFunctionCall","src":"974:51:1"},"nativeSrc":"974:51:1","nodeType":"YulExpressionStatement","src":"974:51:1"}]},"name":"abi_encode_tuple_t_address__to_t_address__fromStack_reversed","nativeSrc":"828:203:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"898:9:1","nodeType":"YulTypedName","src":"898:9:1","type":""},{"name":"value0","nativeSrc":"909:6:1","nodeType":"YulTypedName","src":"909:6:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"920:4:1","nodeType":"YulTypedName","src":"920:4:1","type":""}],"src":"828:203:1"},{"body":{"nativeSrc":"1106:116:1","nodeType":"YulBlock","src":"1106:116:1","statements":[{"body":{"nativeSrc":"1152:16:1","nodeType":"YulBlock","src":"1152:16:1","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1161:1:1","nodeType":"YulLiteral","src":"1161:1:1","type":"","value":"0"},{"kind":"number","nativeSrc":"1164:1:1","nodeType":"YulLiteral","src":"1164:1:1","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1154:6:1","nodeType":"YulIdentifier","src":"1154:6:1"},"nativeSrc":"1154:12:1","nodeType":"YulFunctionCall","src":"1154:12:1"},"nativeSrc":"1154:12:1","nodeType":"YulExpressionStatement","src":"1154:12:1"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"1127:7:1","nodeType":"YulIdentifier","src":"1127:7:1"},{"name":"headStart","nativeSrc":"1136:9:1","nodeType":"YulIdentifier","src":"1136:9:1"}],"functionName":{"name":"sub","nativeSrc":"1123:3:1","nodeType":"YulIdentifier","src":"1123:3:1"},"nativeSrc":"1123:23:1","nodeType":"YulFunctionCall","src":"1123:23:1"},{"kind":"number","nativeSrc":"1148:2:1","nodeType":"YulLiteral","src":"1148:2:1","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"1119:3:1","nodeType":"YulIdentifier","src":"1119:3:1"},"nativeSrc":"1119:32:1","nodeType":"YulFunctionCall","src":"1119:32:1"},"nativeSrc":"1116:52:1","nodeType":"YulIf","src":"1116:52:1"},{"nativeSrc":"1177:39:1","nodeType":"YulAssignment","src":"1177:39:1","value":{"arguments":[{"name":"headStart","nativeSrc":"1206:9:1","nodeType":"YulIdentifier","src":"1206:9:1"}],"functionName":{"name":"abi_decode_address","nativeSrc":"1187:18:1","nodeType":"YulIdentifier","src":"1187:18:1"},"nativeSrc":"1187:29:1","nodeType":"YulFunctionCall","src":"1187:29:1"},"variableNames":[{"name":"value0","nativeSrc":"1177:6:1","nodeType":"YulIdentifier","src":"1177:6:1"}]}]},"name":"abi_decode_tuple_t_address","nativeSrc":"1036:186:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1072:9:1","nodeType":"YulTypedName","src":"1072:9:1","type":""},{"name":"dataEnd","nativeSrc":"1083:7:1","nodeType":"YulTypedName","src":"1083:7:1","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"1095:6:1","nodeType":"YulTypedName","src":"1095:6:1","type":""}],"src":"1036:186:1"},{"body":{"nativeSrc":"1384:244:1","nodeType":"YulBlock","src":"1384:244:1","statements":[{"nativeSrc":"1394:26:1","nodeType":"YulAssignment","src":"1394:26:1","value":{"arguments":[{"name":"headStart","nativeSrc":"1406:9:1","nodeType":"YulIdentifier","src":"1406:9:1"},{"kind":"number","nativeSrc":"1417:2:1","nodeType":"YulLiteral","src":"1417:2:1","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"1402:3:1","nodeType":"YulIdentifier","src":"1402:3:1"},"nativeSrc":"1402:18:1","nodeType":"YulFunctionCall","src":"1402:18:1"},"variableNames":[{"name":"tail","nativeSrc":"1394:4:1","nodeType":"YulIdentifier","src":"1394:4:1"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"1436:9:1","nodeType":"YulIdentifier","src":"1436:9:1"},{"arguments":[{"name":"value0","nativeSrc":"1451:6:1","nodeType":"YulIdentifier","src":"1451:6:1"},{"kind":"number","nativeSrc":"1459:34:1","nodeType":"YulLiteral","src":"1459:34:1","type":"","value":"0xffffffffffffffffffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"1447:3:1","nodeType":"YulIdentifier","src":"1447:3:1"},"nativeSrc":"1447:47:1","nodeType":"YulFunctionCall","src":"1447:47:1"}],"functionName":{"name":"mstore","nativeSrc":"1429:6:1","nodeType":"YulIdentifier","src":"1429:6:1"},"nativeSrc":"1429:66:1","nodeType":"YulFunctionCall","src":"1429:66:1"},"nativeSrc":"1429:66:1","nodeType":"YulExpressionStatement","src":"1429:66:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1515:9:1","nodeType":"YulIdentifier","src":"1515:9:1"},{"kind":"number","nativeSrc":"1526:2:1","nodeType":"YulLiteral","src":"1526:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1511:3:1","nodeType":"YulIdentifier","src":"1511:3:1"},"nativeSrc":"1511:18:1","nodeType":"YulFunctionCall","src":"1511:18:1"},{"arguments":[{"name":"value1","nativeSrc":"1535:6:1","nodeType":"YulIdentifier","src":"1535:6:1"},{"kind":"number","nativeSrc":"1543:34:1","nodeType":"YulLiteral","src":"1543:34:1","type":"","value":"0xffffffffffffffffffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"1531:3:1","nodeType":"YulIdentifier","src":"1531:3:1"},"nativeSrc":"1531:47:1","nodeType":"YulFunctionCall","src":"1531:47:1"}],"functionName":{"name":"mstore","nativeSrc":"1504:6:1","nodeType":"YulIdentifier","src":"1504:6:1"},"nativeSrc":"1504:75:1","nodeType":"YulFunctionCall","src":"1504:75:1"},"nativeSrc":"1504:75:1","nodeType":"YulExpressionStatement","src":"1504:75:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1599:9:1","nodeType":"YulIdentifier","src":"1599:9:1"},{"kind":"number","nativeSrc":"1610:2:1","nodeType":"YulLiteral","src":"1610:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"1595:3:1","nodeType":"YulIdentifier","src":"1595:3:1"},"nativeSrc":"1595:18:1","nodeType":"YulFunctionCall","src":"1595:18:1"},{"name":"value2","nativeSrc":"1615:6:1","nodeType":"YulIdentifier","src":"1615:6:1"}],"functionName":{"name":"mstore","nativeSrc":"1588:6:1","nodeType":"YulIdentifier","src":"1588:6:1"},"nativeSrc":"1588:34:1","nodeType":"YulFunctionCall","src":"1588:34:1"},"nativeSrc":"1588:34:1","nodeType":"YulExpressionStatement","src":"1588:34:1"}]},"name":"abi_encode_tuple_t_uint128_t_uint128_t_uint256__to_t_uint128_t_uint128_t_uint256__fromStack_reversed","nativeSrc":"1227:401:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1337:9:1","nodeType":"YulTypedName","src":"1337:9:1","type":""},{"name":"value2","nativeSrc":"1348:6:1","nodeType":"YulTypedName","src":"1348:6:1","type":""},{"name":"value1","nativeSrc":"1356:6:1","nodeType":"YulTypedName","src":"1356:6:1","type":""},{"name":"value0","nativeSrc":"1364:6:1","nodeType":"YulTypedName","src":"1364:6:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"1375:4:1","nodeType":"YulTypedName","src":"1375:4:1","type":""}],"src":"1227:401:1"}]},"contents":"{\n    { }\n    function abi_decode_address(offset) -> value\n    {\n        value := calldataload(offset)\n        if iszero(eq(value, and(value, sub(shl(160, 1), 1)))) { revert(0, 0) }\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_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 abi_encode_tuple_t_address__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_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_encode_tuple_t_uint128_t_uint128_t_uint256__to_t_uint128_t_uint128_t_uint256__fromStack_reversed(headStart, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 96)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffff))\n        mstore(add(headStart, 32), and(value1, 0xffffffffffffffffffffffffffffffff))\n        mstore(add(headStart, 64), value2)\n    }\n}","id":1,"language":"Yul","name":"#utility.yul"}],"immutableReferences":{"2471":[{"length":32,"start":176}],"2473":[{"length":32,"start":241}]},"linkReferences":{},"object":"608060405234801561001057600080fd5b50600436106100575760003560e01c80633373ee4c1461005c578063919cd40f146100ab578063aaf5eb68146100d2578063cbcbb507146100ec578063f11b81881461012b575b600080fd5b61009861006a3660046101a9565b6001600160a01b03808216600090815260208181526040808320938616835260029093019052205492915050565b6040519081526020015b60405180910390f35b6100987f000000000000000000000000000000000000000000000000000000000000000081565b6100da601281565b60405160ff90911681526020016100a2565b6101137f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016100a2565b6101676101393660046101dc565b600060208190529081526040902080546001909101546001600160801b0380831692600160801b9004169083565b604080516001600160801b039485168152939092166020840152908201526060016100a2565b80356001600160a01b03811681146101a457600080fd5b919050565b600080604083850312156101bc57600080fd5b6101c58361018d565b91506101d36020840161018d565b90509250929050565b6000602082840312156101ee57600080fd5b6101f78261018d565b939250505056fea26469706673582212207d8e5a6e71e0b68bc86f38fc875b625cdf870c3c3a8d2a88ea3a50381759f14964736f6c634300081b0033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x57 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x3373EE4C EQ PUSH2 0x5C JUMPI DUP1 PUSH4 0x919CD40F EQ PUSH2 0xAB JUMPI DUP1 PUSH4 0xAAF5EB68 EQ PUSH2 0xD2 JUMPI DUP1 PUSH4 0xCBCBB507 EQ PUSH2 0xEC JUMPI DUP1 PUSH4 0xF11B8188 EQ PUSH2 0x12B JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x98 PUSH2 0x6A CALLDATASIZE PUSH1 0x4 PUSH2 0x1A9 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 DUP7 AND DUP4 MSTORE PUSH1 0x2 SWAP1 SWAP4 ADD SWAP1 MSTORE KECCAK256 SLOAD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x98 PUSH32 0x0 DUP2 JUMP JUMPDEST PUSH2 0xDA PUSH1 0x12 DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0xFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0xA2 JUMP JUMPDEST PUSH2 0x113 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 0xA2 JUMP JUMPDEST PUSH2 0x167 PUSH2 0x139 CALLDATASIZE PUSH1 0x4 PUSH2 0x1DC JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP2 SWAP1 MSTORE SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x1 SWAP1 SWAP2 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB DUP1 DUP4 AND SWAP3 PUSH1 0x1 PUSH1 0x80 SHL SWAP1 DIV AND SWAP1 DUP4 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB SWAP5 DUP6 AND DUP2 MSTORE SWAP4 SWAP1 SWAP3 AND PUSH1 0x20 DUP5 ADD MSTORE SWAP1 DUP3 ADD MSTORE PUSH1 0x60 ADD PUSH2 0xA2 JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x1A4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1BC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1C5 DUP4 PUSH2 0x18D JUMP JUMPDEST SWAP2 POP PUSH2 0x1D3 PUSH1 0x20 DUP5 ADD PUSH2 0x18D JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1EE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1F7 DUP3 PUSH2 0x18D JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH30 0x8E5A6E71E0B68BC86F38FC875B625CDF870C3C3A8D2A88EA3A50381759F1 BLOBHASH PUSH5 0x736F6C6343 STOP ADDMOD SHL STOP CALLER ","sourceMap":"57028:7552:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64436:142;;;;;;:::i;:::-;-1:-1:-1;;;;;64548:13:0;;;64524:7;64548:13;;;;;;;;;;;:25;;;;;:19;;;;:25;;;;64436:142;;;;;;;;603:25:1;;;591:2;576:18;64436:142:0;;;;;;;;57216:41;;;;;57308:36;;57342:2;57308:36;;;;;811:4:1;799:17;;;781:36;;769:2;754:18;57308:36:0;639:184:1;57262:41:0;;;;;;;;-1:-1:-1;;;;;992:32:1;;;974:51;;962:2;947:18;57262:41:0;828:203:1;57349:43:0;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;57349:43:0;;;;-1:-1:-1;;;57349:43:0;;;;;;;;;;-1:-1:-1;;;;;1447:47:1;;;1429:66;;1531:47;;;;1526:2;1511:18;;1504:75;1595:18;;;1588:34;1417:2;1402:18;57349:43:0;1227:401:1;14:173;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:260::-;260:6;268;321:2;309:9;300:7;296:23;292:32;289:52;;;337:1;334;327:12;289:52;360:29;379:9;360:29;:::i;:::-;350:39;;408:38;442:2;431:9;427:18;408:38;:::i;:::-;398:48;;192:260;;;;;:::o;1036:186::-;1095:6;1148:2;1136:9;1127:7;1123:23;1119:32;1116:52;;;1164:1;1161;1154:12;1116:52;1187:29;1206:9;1187:29;:::i;:::-;1177:39;1036:186;-1:-1:-1;;;1036:186:1:o"},"methodIdentifiers":{"DISTRIBUTION_END()":"919cd40f","EMISSION_MANAGER()":"cbcbb507","PRECISION()":"aaf5eb68","assets(address)":"f11b8188","getUserAssetData(address,address)":"3373ee4c"}},"metadata":"{\"compiler\":{\"version\":\"0.8.27+commit.40a35a09\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"emissionManager\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"distributionDuration\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"asset\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"emission\",\"type\":\"uint256\"}],\"name\":\"AssetConfigUpdated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"asset\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"index\",\"type\":\"uint256\"}],\"name\":\"AssetIndexUpdated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"asset\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"index\",\"type\":\"uint256\"}],\"name\":\"UserIndexUpdated\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"DISTRIBUTION_END\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"EMISSION_MANAGER\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"PRECISION\",\"outputs\":[{\"internalType\":\"uint8\",\"name\":\"\",\"type\":\"uint8\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"name\":\"assets\",\"outputs\":[{\"internalType\":\"uint128\",\"name\":\"emissionPerSecond\",\"type\":\"uint128\"},{\"internalType\":\"uint128\",\"name\":\"lastUpdateTimestamp\",\"type\":\"uint128\"},{\"internalType\":\"uint256\",\"name\":\"index\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"asset\",\"type\":\"address\"}],\"name\":\"getUserAssetData\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{\"getUserAssetData(address,address)\":{\"details\":\"Returns the data of an user on a distribution\",\"params\":{\"asset\":\"The address of the reference asset of the distribution\",\"user\":\"Address of the user\"},\"returns\":{\"_0\":\"The new index\"}}},\"title\":\"PegasysDistributionManager\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"notice\":\"Accounting contract to manage multiple staking distributions\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/flatten/StakedPSYSV3-flatten.sol\":\"PegasysDistributionManager\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"contracts/flatten/StakedPSYSV3-flatten.sol\":{\"keccak256\":\"0x1288e9f8db9b4a153854a518648153da8175d48775832dc88c82af682197fc0c\",\"license\":\"MIT AND agpl-3.0\",\"urls\":[\"bzz-raw://c0b3c1c232cadc3e9d3315b983bfae0d842041778a8a557240729676d1b143cb\",\"dweb:/ipfs/QmWLxw9LFwrVNftCUwD8koRmWKVrcaEHemcZJY7mAjoBRN\"]}},\"version\":1}"},"PercentageMath":{"abi":[],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60566037600b82828239805160001a607314602a57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600080fdfea2646970667358221220ac45fb37bf6557df20f2a801e2f873eb194dcee9ff08b1f4111b61e2fa01ee3064736f6c634300081b0033","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 0xAC GASLIMIT 0xFB CALLDATACOPY 0xBF PUSH6 0x57DF20F2A801 0xE2 0xF8 PUSH20 0xEB194DCEE9FF08B1F4111B61E2FA01EE3064736F PUSH13 0x634300081B0033000000000000 ","sourceMap":"100135:1436:0:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;100135:1436:0;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"73000000000000000000000000000000000000000030146080604052600080fdfea2646970667358221220ac45fb37bf6557df20f2a801e2f873eb194dcee9ff08b1f4111b61e2fa01ee3064736f6c634300081b0033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xAC GASLIMIT 0xFB CALLDATACOPY 0xBF PUSH6 0x57DF20F2A801 0xE2 0xF8 PUSH20 0xEB194DCEE9FF08B1F4111B61E2FA01EE3064736F PUSH13 0x634300081B0033000000000000 ","sourceMap":"100135:1436:0:-:0;;;;;;;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.27+commit.40a35a09\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"author\":\"Aave\",\"details\":\"Percentages are defined by default with 2 decimals of precision (100.00). The precision is indicated by PERCENTAGE_FACTOROperations are rounded half up*\",\"kind\":\"dev\",\"methods\":{},\"title\":\"PercentageMath library\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"notice\":\"Provides functions to perform percentage calculations\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/flatten/StakedPSYSV3-flatten.sol\":\"PercentageMath\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"contracts/flatten/StakedPSYSV3-flatten.sol\":{\"keccak256\":\"0x1288e9f8db9b4a153854a518648153da8175d48775832dc88c82af682197fc0c\",\"license\":\"MIT AND agpl-3.0\",\"urls\":[\"bzz-raw://c0b3c1c232cadc3e9d3315b983bfae0d842041778a8a557240729676d1b143cb\",\"dweb:/ipfs/QmWLxw9LFwrVNftCUwD8koRmWKVrcaEHemcZJY7mAjoBRN\"]}},\"version\":1}"},"RoleManager":{"abi":[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newPendingAdmin","type":"address"},{"indexed":false,"internalType":"uint256","name":"role","type":"uint256"}],"name":"PendingAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAdmin","type":"address"},{"indexed":false,"internalType":"uint256","name":"role","type":"uint256"}],"name":"RoleClaimed","type":"event"},{"inputs":[{"internalType":"uint256","name":"role","type":"uint256"}],"name":"claimRoleAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"role","type":"uint256"}],"name":"getAdmin","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"role","type":"uint256"}],"name":"getPendingAdmin","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"role","type":"uint256"},{"internalType":"address","name":"newPendingAdmin","type":"address"}],"name":"setPendingAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"6080604052348015600f57600080fd5b506103088061001f6000396000f3fe608060405234801561001057600080fd5b506004361061004c5760003560e01c8063111fd88b146100515780634575e69b14610096578063ab406fe6146100bf578063fde9eb69146100d4575b600080fd5b61007a61005f36600461027d565b6000908152602081905260409020546001600160a01b031690565b6040516001600160a01b03909116815260200160405180910390f35b61007a6100a436600461027d565b6000908152600160205260409020546001600160a01b031690565b6100d26100cd366004610296565b6100e7565b005b6100d26100e236600461027d565b6101af565b60008281526020819052604090205482906001600160a01b0316331461014c5760405162461bcd60e51b815260206004820152601560248201527421a0a62622a92fa727aa2fa927a622afa0a226a4a760591b60448201526064015b60405180910390fd5b60008381526001602090815260409182902080546001600160a01b0319166001600160a01b03861690811790915591518581527fc3d1bf52795a20771ee6de3e59948fd83e10db956122d4709a3b86c512963855910160405180910390a2505050565b60008181526001602052604090205481906001600160a01b031633146102175760405162461bcd60e51b815260206004820152601d60248201527f43414c4c45525f4e4f545f50454e44494e475f524f4c455f41444d494e0000006044820152606401610143565b6000828152602081815260408083208054336001600160a01b0319918216811790925560018452938290208054909416909355518481527f83a9ddad961dcb7c6894c9585a16ff7792c2ec8281256a3cc7303ae830152dcf910160405180910390a25050565b60006020828403121561028f57600080fd5b5035919050565b600080604083850312156102a957600080fd5b8235915060208301356001600160a01b03811681146102c757600080fd5b80915050925092905056fea26469706673582212201f770d89808160c916fb69c56605ea106624fd4689d22753d4094bc51ccd205c64736f6c634300081b0033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH1 0xF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x308 DUP1 PUSH2 0x1F 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 0x111FD88B EQ PUSH2 0x51 JUMPI DUP1 PUSH4 0x4575E69B EQ PUSH2 0x96 JUMPI DUP1 PUSH4 0xAB406FE6 EQ PUSH2 0xBF JUMPI DUP1 PUSH4 0xFDE9EB69 EQ PUSH2 0xD4 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x7A PUSH2 0x5F CALLDATASIZE PUSH1 0x4 PUSH2 0x27D JUMP JUMPDEST PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x7A PUSH2 0xA4 CALLDATASIZE PUSH1 0x4 PUSH2 0x27D JUMP JUMPDEST PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH2 0xD2 PUSH2 0xCD CALLDATASIZE PUSH1 0x4 PUSH2 0x296 JUMP JUMPDEST PUSH2 0xE7 JUMP JUMPDEST STOP JUMPDEST PUSH2 0xD2 PUSH2 0xE2 CALLDATASIZE PUSH1 0x4 PUSH2 0x27D JUMP JUMPDEST PUSH2 0x1AF JUMP JUMPDEST PUSH1 0x0 DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP3 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x14C 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 PUSH21 0x21A0A62622A92FA727AA2FA927A622AFA0A226A4A7 PUSH1 0x59 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE SWAP2 MLOAD DUP6 DUP2 MSTORE PUSH32 0xC3D1BF52795A20771EE6DE3E59948FD83E10DB956122D4709A3B86C512963855 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x217 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 0x43414C4C45525F4E4F545F50454E44494E475F524F4C455F41444D494E000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x143 JUMP JUMPDEST PUSH1 0x0 DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 DUP1 SLOAD CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT SWAP2 DUP3 AND DUP2 OR SWAP1 SWAP3 SSTORE PUSH1 0x1 DUP5 MSTORE SWAP4 DUP3 SWAP1 KECCAK256 DUP1 SLOAD SWAP1 SWAP5 AND SWAP1 SWAP4 SSTORE MLOAD DUP5 DUP2 MSTORE PUSH32 0x83A9DDAD961DCB7C6894C9585A16FF7792C2EC8281256A3CC7303AE830152DCF SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x28F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2A9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x2C7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x1F PUSH24 0xD89808160C916FB69C56605EA106624FD4689D22753D409 0x4B 0xC5 SHR 0xCD KECCAK256 TLOAD PUSH5 0x736F6C6343 STOP ADDMOD SHL STOP CALLER ","sourceMap":"111713:2279:0:-:0;;;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{"@claimRoleAdmin_5349":{"entryPoint":431,"id":5349,"parameterSlots":1,"returnSlots":0},"@getAdmin_5281":{"entryPoint":null,"id":5281,"parameterSlots":1,"returnSlots":1},"@getPendingAdmin_5294":{"entryPoint":null,"id":5294,"parameterSlots":1,"returnSlots":1},"@setPendingAdmin_5317":{"entryPoint":231,"id":5317,"parameterSlots":2,"returnSlots":0},"abi_decode_tuple_t_uint256":{"entryPoint":637,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_uint256t_address":{"entryPoint":662,"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_stringliteral_5e135040f8dc35152fcfe1ddf129384a9ce13d1776c5e6dc86a62f244bfcfc0b__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_e80295a9867834b2dfe1d7606b122307d35ebaa940c20b448f18824a9256df9d__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}},"generatedSources":[{"ast":{"nativeSrc":"0:1753:1","nodeType":"YulBlock","src":"0:1753:1","statements":[{"nativeSrc":"6:3:1","nodeType":"YulBlock","src":"6:3:1","statements":[]},{"body":{"nativeSrc":"84:156:1","nodeType":"YulBlock","src":"84:156:1","statements":[{"body":{"nativeSrc":"130:16:1","nodeType":"YulBlock","src":"130:16:1","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"139:1:1","nodeType":"YulLiteral","src":"139:1:1","type":"","value":"0"},{"kind":"number","nativeSrc":"142:1:1","nodeType":"YulLiteral","src":"142:1:1","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"132:6:1","nodeType":"YulIdentifier","src":"132:6:1"},"nativeSrc":"132:12:1","nodeType":"YulFunctionCall","src":"132:12:1"},"nativeSrc":"132:12:1","nodeType":"YulExpressionStatement","src":"132:12:1"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"105:7:1","nodeType":"YulIdentifier","src":"105:7:1"},{"name":"headStart","nativeSrc":"114:9:1","nodeType":"YulIdentifier","src":"114:9:1"}],"functionName":{"name":"sub","nativeSrc":"101:3:1","nodeType":"YulIdentifier","src":"101:3:1"},"nativeSrc":"101:23:1","nodeType":"YulFunctionCall","src":"101:23:1"},{"kind":"number","nativeSrc":"126:2:1","nodeType":"YulLiteral","src":"126:2:1","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"97:3:1","nodeType":"YulIdentifier","src":"97:3:1"},"nativeSrc":"97:32:1","nodeType":"YulFunctionCall","src":"97:32:1"},"nativeSrc":"94:52:1","nodeType":"YulIf","src":"94:52:1"},{"nativeSrc":"155:14:1","nodeType":"YulVariableDeclaration","src":"155:14:1","value":{"kind":"number","nativeSrc":"168:1:1","nodeType":"YulLiteral","src":"168:1:1","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"159:5:1","nodeType":"YulTypedName","src":"159:5:1","type":""}]},{"nativeSrc":"178:32:1","nodeType":"YulAssignment","src":"178:32:1","value":{"arguments":[{"name":"headStart","nativeSrc":"200:9:1","nodeType":"YulIdentifier","src":"200:9:1"}],"functionName":{"name":"calldataload","nativeSrc":"187:12:1","nodeType":"YulIdentifier","src":"187:12:1"},"nativeSrc":"187:23:1","nodeType":"YulFunctionCall","src":"187:23:1"},"variableNames":[{"name":"value","nativeSrc":"178:5:1","nodeType":"YulIdentifier","src":"178:5:1"}]},{"nativeSrc":"219:15:1","nodeType":"YulAssignment","src":"219:15:1","value":{"name":"value","nativeSrc":"229:5:1","nodeType":"YulIdentifier","src":"229:5:1"},"variableNames":[{"name":"value0","nativeSrc":"219:6:1","nodeType":"YulIdentifier","src":"219:6:1"}]}]},"name":"abi_decode_tuple_t_uint256","nativeSrc":"14:226:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"50:9:1","nodeType":"YulTypedName","src":"50:9:1","type":""},{"name":"dataEnd","nativeSrc":"61:7:1","nodeType":"YulTypedName","src":"61:7:1","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"73:6:1","nodeType":"YulTypedName","src":"73:6:1","type":""}],"src":"14:226:1"},{"body":{"nativeSrc":"346:102:1","nodeType":"YulBlock","src":"346:102:1","statements":[{"nativeSrc":"356:26:1","nodeType":"YulAssignment","src":"356:26:1","value":{"arguments":[{"name":"headStart","nativeSrc":"368:9:1","nodeType":"YulIdentifier","src":"368:9:1"},{"kind":"number","nativeSrc":"379:2:1","nodeType":"YulLiteral","src":"379:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"364:3:1","nodeType":"YulIdentifier","src":"364:3:1"},"nativeSrc":"364:18:1","nodeType":"YulFunctionCall","src":"364:18:1"},"variableNames":[{"name":"tail","nativeSrc":"356:4:1","nodeType":"YulIdentifier","src":"356:4:1"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"398:9:1","nodeType":"YulIdentifier","src":"398:9:1"},{"arguments":[{"name":"value0","nativeSrc":"413:6:1","nodeType":"YulIdentifier","src":"413:6:1"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"429:3:1","nodeType":"YulLiteral","src":"429:3:1","type":"","value":"160"},{"kind":"number","nativeSrc":"434:1:1","nodeType":"YulLiteral","src":"434:1:1","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"425:3:1","nodeType":"YulIdentifier","src":"425:3:1"},"nativeSrc":"425:11:1","nodeType":"YulFunctionCall","src":"425:11:1"},{"kind":"number","nativeSrc":"438:1:1","nodeType":"YulLiteral","src":"438:1:1","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"421:3:1","nodeType":"YulIdentifier","src":"421:3:1"},"nativeSrc":"421:19:1","nodeType":"YulFunctionCall","src":"421:19:1"}],"functionName":{"name":"and","nativeSrc":"409:3:1","nodeType":"YulIdentifier","src":"409:3:1"},"nativeSrc":"409:32:1","nodeType":"YulFunctionCall","src":"409:32:1"}],"functionName":{"name":"mstore","nativeSrc":"391:6:1","nodeType":"YulIdentifier","src":"391:6:1"},"nativeSrc":"391:51:1","nodeType":"YulFunctionCall","src":"391:51:1"},"nativeSrc":"391:51:1","nodeType":"YulExpressionStatement","src":"391:51:1"}]},"name":"abi_encode_tuple_t_address__to_t_address__fromStack_reversed","nativeSrc":"245:203:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"315:9:1","nodeType":"YulTypedName","src":"315:9:1","type":""},{"name":"value0","nativeSrc":"326:6:1","nodeType":"YulTypedName","src":"326:6:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"337:4:1","nodeType":"YulTypedName","src":"337:4:1","type":""}],"src":"245:203:1"},{"body":{"nativeSrc":"540:321:1","nodeType":"YulBlock","src":"540:321:1","statements":[{"body":{"nativeSrc":"586:16:1","nodeType":"YulBlock","src":"586:16:1","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"595:1:1","nodeType":"YulLiteral","src":"595:1:1","type":"","value":"0"},{"kind":"number","nativeSrc":"598:1:1","nodeType":"YulLiteral","src":"598:1:1","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"588:6:1","nodeType":"YulIdentifier","src":"588:6:1"},"nativeSrc":"588:12:1","nodeType":"YulFunctionCall","src":"588:12:1"},"nativeSrc":"588:12:1","nodeType":"YulExpressionStatement","src":"588:12:1"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"561:7:1","nodeType":"YulIdentifier","src":"561:7:1"},{"name":"headStart","nativeSrc":"570:9:1","nodeType":"YulIdentifier","src":"570:9:1"}],"functionName":{"name":"sub","nativeSrc":"557:3:1","nodeType":"YulIdentifier","src":"557:3:1"},"nativeSrc":"557:23:1","nodeType":"YulFunctionCall","src":"557:23:1"},{"kind":"number","nativeSrc":"582:2:1","nodeType":"YulLiteral","src":"582:2:1","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"553:3:1","nodeType":"YulIdentifier","src":"553:3:1"},"nativeSrc":"553:32:1","nodeType":"YulFunctionCall","src":"553:32:1"},"nativeSrc":"550:52:1","nodeType":"YulIf","src":"550:52:1"},{"nativeSrc":"611:14:1","nodeType":"YulVariableDeclaration","src":"611:14:1","value":{"kind":"number","nativeSrc":"624:1:1","nodeType":"YulLiteral","src":"624:1:1","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"615:5:1","nodeType":"YulTypedName","src":"615:5:1","type":""}]},{"nativeSrc":"634:32:1","nodeType":"YulAssignment","src":"634:32:1","value":{"arguments":[{"name":"headStart","nativeSrc":"656:9:1","nodeType":"YulIdentifier","src":"656:9:1"}],"functionName":{"name":"calldataload","nativeSrc":"643:12:1","nodeType":"YulIdentifier","src":"643:12:1"},"nativeSrc":"643:23:1","nodeType":"YulFunctionCall","src":"643:23:1"},"variableNames":[{"name":"value","nativeSrc":"634:5:1","nodeType":"YulIdentifier","src":"634:5:1"}]},{"nativeSrc":"675:15:1","nodeType":"YulAssignment","src":"675:15:1","value":{"name":"value","nativeSrc":"685:5:1","nodeType":"YulIdentifier","src":"685:5:1"},"variableNames":[{"name":"value0","nativeSrc":"675:6:1","nodeType":"YulIdentifier","src":"675:6:1"}]},{"nativeSrc":"699:47:1","nodeType":"YulVariableDeclaration","src":"699:47:1","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"731:9:1","nodeType":"YulIdentifier","src":"731:9:1"},{"kind":"number","nativeSrc":"742:2:1","nodeType":"YulLiteral","src":"742:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"727:3:1","nodeType":"YulIdentifier","src":"727:3:1"},"nativeSrc":"727:18:1","nodeType":"YulFunctionCall","src":"727:18:1"}],"functionName":{"name":"calldataload","nativeSrc":"714:12:1","nodeType":"YulIdentifier","src":"714:12:1"},"nativeSrc":"714:32:1","nodeType":"YulFunctionCall","src":"714:32:1"},"variables":[{"name":"value_1","nativeSrc":"703:7:1","nodeType":"YulTypedName","src":"703:7:1","type":""}]},{"body":{"nativeSrc":"813:16:1","nodeType":"YulBlock","src":"813:16:1","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"822:1:1","nodeType":"YulLiteral","src":"822:1:1","type":"","value":"0"},{"kind":"number","nativeSrc":"825:1:1","nodeType":"YulLiteral","src":"825:1:1","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"815:6:1","nodeType":"YulIdentifier","src":"815:6:1"},"nativeSrc":"815:12:1","nodeType":"YulFunctionCall","src":"815:12:1"},"nativeSrc":"815:12:1","nodeType":"YulExpressionStatement","src":"815:12:1"}]},"condition":{"arguments":[{"arguments":[{"name":"value_1","nativeSrc":"768:7:1","nodeType":"YulIdentifier","src":"768:7:1"},{"arguments":[{"name":"value_1","nativeSrc":"781:7:1","nodeType":"YulIdentifier","src":"781:7:1"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"798:3:1","nodeType":"YulLiteral","src":"798:3:1","type":"","value":"160"},{"kind":"number","nativeSrc":"803:1:1","nodeType":"YulLiteral","src":"803:1:1","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"794:3:1","nodeType":"YulIdentifier","src":"794:3:1"},"nativeSrc":"794:11:1","nodeType":"YulFunctionCall","src":"794:11:1"},{"kind":"number","nativeSrc":"807:1:1","nodeType":"YulLiteral","src":"807:1:1","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"790:3:1","nodeType":"YulIdentifier","src":"790:3:1"},"nativeSrc":"790:19:1","nodeType":"YulFunctionCall","src":"790:19:1"}],"functionName":{"name":"and","nativeSrc":"777:3:1","nodeType":"YulIdentifier","src":"777:3:1"},"nativeSrc":"777:33:1","nodeType":"YulFunctionCall","src":"777:33:1"}],"functionName":{"name":"eq","nativeSrc":"765:2:1","nodeType":"YulIdentifier","src":"765:2:1"},"nativeSrc":"765:46:1","nodeType":"YulFunctionCall","src":"765:46:1"}],"functionName":{"name":"iszero","nativeSrc":"758:6:1","nodeType":"YulIdentifier","src":"758:6:1"},"nativeSrc":"758:54:1","nodeType":"YulFunctionCall","src":"758:54:1"},"nativeSrc":"755:74:1","nodeType":"YulIf","src":"755:74:1"},{"nativeSrc":"838:17:1","nodeType":"YulAssignment","src":"838:17:1","value":{"name":"value_1","nativeSrc":"848:7:1","nodeType":"YulIdentifier","src":"848:7:1"},"variableNames":[{"name":"value1","nativeSrc":"838:6:1","nodeType":"YulIdentifier","src":"838:6:1"}]}]},"name":"abi_decode_tuple_t_uint256t_address","nativeSrc":"453:408:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"498:9:1","nodeType":"YulTypedName","src":"498:9:1","type":""},{"name":"dataEnd","nativeSrc":"509:7:1","nodeType":"YulTypedName","src":"509:7:1","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"521:6:1","nodeType":"YulTypedName","src":"521:6:1","type":""},{"name":"value1","nativeSrc":"529:6:1","nodeType":"YulTypedName","src":"529:6:1","type":""}],"src":"453:408:1"},{"body":{"nativeSrc":"1040:171:1","nodeType":"YulBlock","src":"1040:171:1","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"1057:9:1","nodeType":"YulIdentifier","src":"1057:9:1"},{"kind":"number","nativeSrc":"1068:2:1","nodeType":"YulLiteral","src":"1068:2:1","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"1050:6:1","nodeType":"YulIdentifier","src":"1050:6:1"},"nativeSrc":"1050:21:1","nodeType":"YulFunctionCall","src":"1050:21:1"},"nativeSrc":"1050:21:1","nodeType":"YulExpressionStatement","src":"1050:21:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1091:9:1","nodeType":"YulIdentifier","src":"1091:9:1"},{"kind":"number","nativeSrc":"1102:2:1","nodeType":"YulLiteral","src":"1102:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1087:3:1","nodeType":"YulIdentifier","src":"1087:3:1"},"nativeSrc":"1087:18:1","nodeType":"YulFunctionCall","src":"1087:18:1"},{"kind":"number","nativeSrc":"1107:2:1","nodeType":"YulLiteral","src":"1107:2:1","type":"","value":"21"}],"functionName":{"name":"mstore","nativeSrc":"1080:6:1","nodeType":"YulIdentifier","src":"1080:6:1"},"nativeSrc":"1080:30:1","nodeType":"YulFunctionCall","src":"1080:30:1"},"nativeSrc":"1080:30:1","nodeType":"YulExpressionStatement","src":"1080:30:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1130:9:1","nodeType":"YulIdentifier","src":"1130:9:1"},{"kind":"number","nativeSrc":"1141:2:1","nodeType":"YulLiteral","src":"1141:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"1126:3:1","nodeType":"YulIdentifier","src":"1126:3:1"},"nativeSrc":"1126:18:1","nodeType":"YulFunctionCall","src":"1126:18:1"},{"hexValue":"43414c4c45525f4e4f545f524f4c455f41444d494e","kind":"string","nativeSrc":"1146:23:1","nodeType":"YulLiteral","src":"1146:23:1","type":"","value":"CALLER_NOT_ROLE_ADMIN"}],"functionName":{"name":"mstore","nativeSrc":"1119:6:1","nodeType":"YulIdentifier","src":"1119:6:1"},"nativeSrc":"1119:51:1","nodeType":"YulFunctionCall","src":"1119:51:1"},"nativeSrc":"1119:51:1","nodeType":"YulExpressionStatement","src":"1119:51:1"},{"nativeSrc":"1179:26:1","nodeType":"YulAssignment","src":"1179:26:1","value":{"arguments":[{"name":"headStart","nativeSrc":"1191:9:1","nodeType":"YulIdentifier","src":"1191:9:1"},{"kind":"number","nativeSrc":"1202:2:1","nodeType":"YulLiteral","src":"1202:2:1","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"1187:3:1","nodeType":"YulIdentifier","src":"1187:3:1"},"nativeSrc":"1187:18:1","nodeType":"YulFunctionCall","src":"1187:18:1"},"variableNames":[{"name":"tail","nativeSrc":"1179:4:1","nodeType":"YulIdentifier","src":"1179:4:1"}]}]},"name":"abi_encode_tuple_t_stringliteral_5e135040f8dc35152fcfe1ddf129384a9ce13d1776c5e6dc86a62f244bfcfc0b__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"866:345:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1017:9:1","nodeType":"YulTypedName","src":"1017:9:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"1031:4:1","nodeType":"YulTypedName","src":"1031:4:1","type":""}],"src":"866:345:1"},{"body":{"nativeSrc":"1317:76:1","nodeType":"YulBlock","src":"1317:76:1","statements":[{"nativeSrc":"1327:26:1","nodeType":"YulAssignment","src":"1327:26:1","value":{"arguments":[{"name":"headStart","nativeSrc":"1339:9:1","nodeType":"YulIdentifier","src":"1339:9:1"},{"kind":"number","nativeSrc":"1350:2:1","nodeType":"YulLiteral","src":"1350:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1335:3:1","nodeType":"YulIdentifier","src":"1335:3:1"},"nativeSrc":"1335:18:1","nodeType":"YulFunctionCall","src":"1335:18:1"},"variableNames":[{"name":"tail","nativeSrc":"1327:4:1","nodeType":"YulIdentifier","src":"1327:4:1"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"1369:9:1","nodeType":"YulIdentifier","src":"1369:9:1"},{"name":"value0","nativeSrc":"1380:6:1","nodeType":"YulIdentifier","src":"1380:6:1"}],"functionName":{"name":"mstore","nativeSrc":"1362:6:1","nodeType":"YulIdentifier","src":"1362:6:1"},"nativeSrc":"1362:25:1","nodeType":"YulFunctionCall","src":"1362:25:1"},"nativeSrc":"1362:25:1","nodeType":"YulExpressionStatement","src":"1362:25:1"}]},"name":"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed","nativeSrc":"1216:177:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1286:9:1","nodeType":"YulTypedName","src":"1286:9:1","type":""},{"name":"value0","nativeSrc":"1297:6:1","nodeType":"YulTypedName","src":"1297:6:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"1308:4:1","nodeType":"YulTypedName","src":"1308:4:1","type":""}],"src":"1216:177:1"},{"body":{"nativeSrc":"1572:179:1","nodeType":"YulBlock","src":"1572:179:1","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"1589:9:1","nodeType":"YulIdentifier","src":"1589:9:1"},{"kind":"number","nativeSrc":"1600:2:1","nodeType":"YulLiteral","src":"1600:2:1","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"1582:6:1","nodeType":"YulIdentifier","src":"1582:6:1"},"nativeSrc":"1582:21:1","nodeType":"YulFunctionCall","src":"1582:21:1"},"nativeSrc":"1582:21:1","nodeType":"YulExpressionStatement","src":"1582:21:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1623:9:1","nodeType":"YulIdentifier","src":"1623:9:1"},{"kind":"number","nativeSrc":"1634:2:1","nodeType":"YulLiteral","src":"1634:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1619:3:1","nodeType":"YulIdentifier","src":"1619:3:1"},"nativeSrc":"1619:18:1","nodeType":"YulFunctionCall","src":"1619:18:1"},{"kind":"number","nativeSrc":"1639:2:1","nodeType":"YulLiteral","src":"1639:2:1","type":"","value":"29"}],"functionName":{"name":"mstore","nativeSrc":"1612:6:1","nodeType":"YulIdentifier","src":"1612:6:1"},"nativeSrc":"1612:30:1","nodeType":"YulFunctionCall","src":"1612:30:1"},"nativeSrc":"1612:30:1","nodeType":"YulExpressionStatement","src":"1612:30:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1662:9:1","nodeType":"YulIdentifier","src":"1662:9:1"},{"kind":"number","nativeSrc":"1673:2:1","nodeType":"YulLiteral","src":"1673:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"1658:3:1","nodeType":"YulIdentifier","src":"1658:3:1"},"nativeSrc":"1658:18:1","nodeType":"YulFunctionCall","src":"1658:18:1"},{"hexValue":"43414c4c45525f4e4f545f50454e44494e475f524f4c455f41444d494e","kind":"string","nativeSrc":"1678:31:1","nodeType":"YulLiteral","src":"1678:31:1","type":"","value":"CALLER_NOT_PENDING_ROLE_ADMIN"}],"functionName":{"name":"mstore","nativeSrc":"1651:6:1","nodeType":"YulIdentifier","src":"1651:6:1"},"nativeSrc":"1651:59:1","nodeType":"YulFunctionCall","src":"1651:59:1"},"nativeSrc":"1651:59:1","nodeType":"YulExpressionStatement","src":"1651:59:1"},{"nativeSrc":"1719:26:1","nodeType":"YulAssignment","src":"1719:26:1","value":{"arguments":[{"name":"headStart","nativeSrc":"1731:9:1","nodeType":"YulIdentifier","src":"1731:9:1"},{"kind":"number","nativeSrc":"1742:2:1","nodeType":"YulLiteral","src":"1742:2:1","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"1727:3:1","nodeType":"YulIdentifier","src":"1727:3:1"},"nativeSrc":"1727:18:1","nodeType":"YulFunctionCall","src":"1727:18:1"},"variableNames":[{"name":"tail","nativeSrc":"1719:4:1","nodeType":"YulIdentifier","src":"1719:4:1"}]}]},"name":"abi_encode_tuple_t_stringliteral_e80295a9867834b2dfe1d7606b122307d35ebaa940c20b448f18824a9256df9d__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"1398:353:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1549:9:1","nodeType":"YulTypedName","src":"1549:9:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"1563:4:1","nodeType":"YulTypedName","src":"1563:4:1","type":""}],"src":"1398:353:1"}]},"contents":"{\n    { }\n    function abi_decode_tuple_t_uint256(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := 0\n        value := calldataload(headStart)\n        value0 := value\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, sub(shl(160, 1), 1)))\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        let value := 0\n        value := calldataload(headStart)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        if iszero(eq(value_1, and(value_1, sub(shl(160, 1), 1)))) { revert(0, 0) }\n        value1 := value_1\n    }\n    function abi_encode_tuple_t_stringliteral_5e135040f8dc35152fcfe1ddf129384a9ce13d1776c5e6dc86a62f244bfcfc0b__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), \"CALLER_NOT_ROLE_ADMIN\")\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_stringliteral_e80295a9867834b2dfe1d7606b122307d35ebaa940c20b448f18824a9256df9d__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), \"CALLER_NOT_PENDING_ROLE_ADMIN\")\n        tail := add(headStart, 96)\n    }\n}","id":1,"language":"Yul","name":"#utility.yul"}],"immutableReferences":{},"linkReferences":{},"object":"608060405234801561001057600080fd5b506004361061004c5760003560e01c8063111fd88b146100515780634575e69b14610096578063ab406fe6146100bf578063fde9eb69146100d4575b600080fd5b61007a61005f36600461027d565b6000908152602081905260409020546001600160a01b031690565b6040516001600160a01b03909116815260200160405180910390f35b61007a6100a436600461027d565b6000908152600160205260409020546001600160a01b031690565b6100d26100cd366004610296565b6100e7565b005b6100d26100e236600461027d565b6101af565b60008281526020819052604090205482906001600160a01b0316331461014c5760405162461bcd60e51b815260206004820152601560248201527421a0a62622a92fa727aa2fa927a622afa0a226a4a760591b60448201526064015b60405180910390fd5b60008381526001602090815260409182902080546001600160a01b0319166001600160a01b03861690811790915591518581527fc3d1bf52795a20771ee6de3e59948fd83e10db956122d4709a3b86c512963855910160405180910390a2505050565b60008181526001602052604090205481906001600160a01b031633146102175760405162461bcd60e51b815260206004820152601d60248201527f43414c4c45525f4e4f545f50454e44494e475f524f4c455f41444d494e0000006044820152606401610143565b6000828152602081815260408083208054336001600160a01b0319918216811790925560018452938290208054909416909355518481527f83a9ddad961dcb7c6894c9585a16ff7792c2ec8281256a3cc7303ae830152dcf910160405180910390a25050565b60006020828403121561028f57600080fd5b5035919050565b600080604083850312156102a957600080fd5b8235915060208301356001600160a01b03811681146102c757600080fd5b80915050925092905056fea26469706673582212201f770d89808160c916fb69c56605ea106624fd4689d22753d4094bc51ccd205c64736f6c634300081b0033","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 0x111FD88B EQ PUSH2 0x51 JUMPI DUP1 PUSH4 0x4575E69B EQ PUSH2 0x96 JUMPI DUP1 PUSH4 0xAB406FE6 EQ PUSH2 0xBF JUMPI DUP1 PUSH4 0xFDE9EB69 EQ PUSH2 0xD4 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x7A PUSH2 0x5F CALLDATASIZE PUSH1 0x4 PUSH2 0x27D JUMP JUMPDEST PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x7A PUSH2 0xA4 CALLDATASIZE PUSH1 0x4 PUSH2 0x27D JUMP JUMPDEST PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH2 0xD2 PUSH2 0xCD CALLDATASIZE PUSH1 0x4 PUSH2 0x296 JUMP JUMPDEST PUSH2 0xE7 JUMP JUMPDEST STOP JUMPDEST PUSH2 0xD2 PUSH2 0xE2 CALLDATASIZE PUSH1 0x4 PUSH2 0x27D JUMP JUMPDEST PUSH2 0x1AF JUMP JUMPDEST PUSH1 0x0 DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP3 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x14C 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 PUSH21 0x21A0A62622A92FA727AA2FA927A622AFA0A226A4A7 PUSH1 0x59 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE SWAP2 MLOAD DUP6 DUP2 MSTORE PUSH32 0xC3D1BF52795A20771EE6DE3E59948FD83E10DB956122D4709A3B86C512963855 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x217 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 0x43414C4C45525F4E4F545F50454E44494E475F524F4C455F41444D494E000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x143 JUMP JUMPDEST PUSH1 0x0 DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 DUP1 SLOAD CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT SWAP2 DUP3 AND DUP2 OR SWAP1 SWAP3 SSTORE PUSH1 0x1 DUP5 MSTORE SWAP4 DUP3 SWAP1 KECCAK256 DUP1 SLOAD SWAP1 SWAP5 AND SWAP1 SWAP4 SSTORE MLOAD DUP5 DUP2 MSTORE PUSH32 0x83A9DDAD961DCB7C6894C9585A16FF7792C2EC8281256A3CC7303AE830152DCF SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x28F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2A9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x2C7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x1F PUSH24 0xD89808160C916FB69C56605EA106624FD4689D22753D409 0x4B 0xC5 SHR 0xCD KECCAK256 TLOAD PUSH5 0x736F6C6343 STOP ADDMOD SHL STOP CALLER ","sourceMap":"111713:2279:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;112463:93;;;;;;:::i;:::-;112516:7;112538:13;;;;;;;;;;;-1:-1:-1;;;;;112538:13:0;;112463:93;;;;-1:-1:-1;;;;;409:32:1;;;391:51;;379:2;364:18;112463:93:0;;;;;;;112718:107;;;;;;:::i;:::-;112778:7;112800:20;;;:14;:20;;;;;;-1:-1:-1;;;;;112800:20:0;;112718:107;113034:203;;;;;;:::i;:::-;;:::i;:::-;;113388:190;;;;;;:::i;:::-;;:::i;113034:203::-;112092:7;:13;;;;;;;;;;;113127:4;;-1:-1:-1;;;;;112092:13:0;112109:10;112092:27;112084:61;;;;-1:-1:-1;;;112084:61:0;;1068:2:1;112084:61:0;;;1050:21:1;1107:2;1087:18;;;1080:30;-1:-1:-1;;;1126:18:1;;;1119:51;1187:18;;112084:61:0;;;;;;;;;113141:20:::1;::::0;;;:14:::1;:20;::::0;;;;;;;;:38;;-1:-1:-1;;;;;;113141:38:0::1;-1:-1:-1::0;;;;;113141:38:0;::::1;::::0;;::::1;::::0;;;113190:42;;1362:25:1;;;113190:42:0::1;::::0;1335:18:1;113190:42:0::1;;;;;;;113034:203:::0;;;:::o;113388:190::-;112226:20;;;;:14;:20;;;;;;113456:4;;-1:-1:-1;;;;;112226:20:0;112250:10;112226:34;112211:94;;;;-1:-1:-1;;;112211:94:0;;1600:2:1;112211:94:0;;;1582:21:1;1639:2;1619:18;;;1612:30;1678:31;1658:18;;;1651:59;1727:18;;112211:94:0;1398:353:1;112211:94:0;113468:7:::1;:13:::0;;;::::1;::::0;;;;;;;:26;;113484:10:::1;-1:-1:-1::0;;;;;;113468:26:0;;::::1;::::0;::::1;::::0;;;-1:-1:-1;113500:20:0;;;;;;:33;;;;::::1;::::0;;;113544:29;1362:25:1;;;113544:29:0::1;::::0;1335:18:1;113544:29:0::1;;;;;;;113388:190:::0;;:::o;14:226:1:-;73:6;126:2;114:9;105:7;101:23;97:32;94:52;;;142:1;139;132:12;94:52;-1:-1:-1;187:23:1;;14:226;-1:-1:-1;14:226:1:o;453:408::-;521:6;529;582:2;570:9;561:7;557:23;553:32;550:52;;;598:1;595;588:12;550:52;643:23;;;-1:-1:-1;742:2:1;727:18;;714:32;-1:-1:-1;;;;;777:33:1;;765:46;;755:74;;825:1;822;815:12;755:74;848:7;838:17;;;453:408;;;;;:::o"},"methodIdentifiers":{"claimRoleAdmin(uint256)":"fde9eb69","getAdmin(uint256)":"111fd88b","getPendingAdmin(uint256)":"4575e69b","setPendingAdmin(uint256,address)":"ab406fe6"}},"metadata":"{\"compiler\":{\"version\":\"0.8.27+commit.40a35a09\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newPendingAdmin\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"role\",\"type\":\"uint256\"}],\"name\":\"PendingAdminChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newAdmin\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"role\",\"type\":\"uint256\"}],\"name\":\"RoleClaimed\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"role\",\"type\":\"uint256\"}],\"name\":\"claimRoleAdmin\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"role\",\"type\":\"uint256\"}],\"name\":\"getAdmin\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"role\",\"type\":\"uint256\"}],\"name\":\"getPendingAdmin\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"role\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"newPendingAdmin\",\"type\":\"address\"}],\"name\":\"setPendingAdmin\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"author\":\"Aave*\",\"kind\":\"dev\",\"methods\":{\"claimRoleAdmin(uint256)\":{\"details\":\"allows the caller to become a specific role admin\",\"params\":{\"role\":\"the role associated with the admin claiming the new role*\"}},\"getAdmin(uint256)\":{\"details\":\"returns the admin associated with the specific role\",\"params\":{\"role\":\"the role associated with the admin being returned*\"}},\"getPendingAdmin(uint256)\":{\"details\":\"returns the pending admin associated with the specific role\",\"params\":{\"role\":\"the role associated with the pending admin being returned*\"}},\"setPendingAdmin(uint256,address)\":{\"details\":\"sets the pending admin for a specific role\",\"params\":{\"newPendingAdmin\":\"the address of the new pending admin*\",\"role\":\"the role associated with the new pending admin being set\"}}},\"title\":\"RoleManager\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"notice\":\"Generic role manager to manage slashing and cooldown admin in StakedAaveV3.         It implements a claim admin role pattern to safely migrate between different admin addresses\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/flatten/StakedPSYSV3-flatten.sol\":\"RoleManager\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"contracts/flatten/StakedPSYSV3-flatten.sol\":{\"keccak256\":\"0x1288e9f8db9b4a153854a518648153da8175d48775832dc88c82af682197fc0c\",\"license\":\"MIT AND agpl-3.0\",\"urls\":[\"bzz-raw://c0b3c1c232cadc3e9d3315b983bfae0d842041778a8a557240729676d1b143cb\",\"dweb:/ipfs/QmWLxw9LFwrVNftCUwD8koRmWKVrcaEHemcZJY7mAjoBRN\"]}},\"version\":1}"},"SafeCast":{"abi":[],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60566037600b82828239805160001a607314602a57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600080fdfea2646970667358221220c7c029316d8f9e2e865a81d65020460166571caf3bd1d0425d30797d56b0c7a264736f6c634300081b0033","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 0xC7 0xC0 0x29 BALANCE PUSH14 0x8F9E2E865A81D65020460166571C 0xAF EXTCODESIZE 0xD1 0xD0 TIMESTAMP TSTORE ADDRESS PUSH26 0x7D56B0C7A264736F6C634300081B003300000000000000000000 ","sourceMap":"65564:34153:0:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;65564:34153:0;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"73000000000000000000000000000000000000000030146080604052600080fdfea2646970667358221220c7c029316d8f9e2e865a81d65020460166571caf3bd1d0425d30797d56b0c7a264736f6c634300081b0033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xC7 0xC0 0x29 BALANCE PUSH14 0x8F9E2E865A81D65020460166571C 0xAF EXTCODESIZE 0xD1 0xD0 TIMESTAMP TSTORE ADDRESS PUSH26 0x7D56B0C7A264736F6C634300081B003300000000000000000000 ","sourceMap":"65564:34153:0:-:0;;;;;;;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.27+commit.40a35a09\"},\"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/flatten/StakedPSYSV3-flatten.sol\":\"SafeCast\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"contracts/flatten/StakedPSYSV3-flatten.sol\":{\"keccak256\":\"0x1288e9f8db9b4a153854a518648153da8175d48775832dc88c82af682197fc0c\",\"license\":\"MIT AND agpl-3.0\",\"urls\":[\"bzz-raw://c0b3c1c232cadc3e9d3315b983bfae0d842041778a8a557240729676d1b143cb\",\"dweb:/ipfs/QmWLxw9LFwrVNftCUwD8koRmWKVrcaEHemcZJY7mAjoBRN\"]}},\"version\":1}"},"SafeERC20":{"abi":[],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"60566037600b82828239805160001a607314602a57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600080fdfea2646970667358221220dc9a8b4ee46e36676763f7939d1f73a7792ea4071a7d13a46139febf06f0dca464736f6c634300081b0033","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 0xDC SWAP11 DUP12 0x4E 0xE4 PUSH15 0x36676763F7939D1F73A7792EA4071A PUSH30 0x13A46139FEBF06F0DCA464736F6C634300081B0033000000000000000000 ","sourceMap":"53060:3718:0:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;53060:3718:0;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"73000000000000000000000000000000000000000030146080604052600080fdfea2646970667358221220dc9a8b4ee46e36676763f7939d1f73a7792ea4071a7d13a46139febf06f0dca464736f6c634300081b0033","opcodes":"PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xDC SWAP11 DUP12 0x4E 0xE4 PUSH15 0x36676763F7939D1F73A7792EA4071A PUSH30 0x13A46139FEBF06F0DCA464736F6C634300081B0033000000000000000000 ","sourceMap":"53060:3718:0:-:0;;;;;;;;"},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.27+commit.40a35a09\"},\"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\":{\"contracts/flatten/StakedPSYSV3-flatten.sol\":\"SafeERC20\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"contracts/flatten/StakedPSYSV3-flatten.sol\":{\"keccak256\":\"0x1288e9f8db9b4a153854a518648153da8175d48775832dc88c82af682197fc0c\",\"license\":\"MIT AND agpl-3.0\",\"urls\":[\"bzz-raw://c0b3c1c232cadc3e9d3315b983bfae0d842041778a8a557240729676d1b143cb\",\"dweb:/ipfs/QmWLxw9LFwrVNftCUwD8koRmWKVrcaEHemcZJY7mAjoBRN\"]}},\"version\":1}"},"StakedPSYSV3":{"abi":[{"inputs":[{"internalType":"contract IERC20","name":"stakedToken","type":"address"},{"internalType":"contract IERC20","name":"rewardToken","type":"address"},{"internalType":"uint256","name":"unstakeWindow","type":"uint256"},{"internalType":"address","name":"rewardsVault","type":"address"},{"internalType":"address","name":"emissionManager","type":"address"},{"internalType":"uint128","name":"distributionDuration","type":"uint128"}],"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":"asset","type":"address"},{"indexed":false,"internalType":"uint256","name":"emission","type":"uint256"}],"name":"AssetConfigUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"asset","type":"address"},{"indexed":false,"internalType":"uint256","name":"index","type":"uint256"}],"name":"AssetIndexUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Cooldown","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"cooldownSeconds","type":"uint256"}],"name":"CooldownSecondsChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegator","type":"address"},{"indexed":true,"internalType":"address","name":"delegatee","type":"address"},{"indexed":false,"internalType":"enum IGovernancePowerDelegationToken.DelegationType","name":"delegationType","type":"uint8"}],"name":"DelegateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"enum IGovernancePowerDelegationToken.DelegationType","name":"delegationType","type":"uint8"}],"name":"DelegatedPowerChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint216","name":"exchangeRate","type":"uint216"}],"name":"ExchangeRateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"FundsReturned","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newDebtToken","type":"address"}],"name":"GHODebtTokenChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newPercentage","type":"uint256"}],"name":"MaxSlashablePercentageChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newPendingAdmin","type":"address"},{"indexed":false,"internalType":"uint256","name":"role","type":"uint256"}],"name":"PendingAdminChanged","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":"assets","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"Redeem","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"RewardsAccrued","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":"amount","type":"uint256"}],"name":"RewardsClaimed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAdmin","type":"address"},{"indexed":false,"internalType":"uint256","name":"role","type":"uint256"}],"name":"RoleClaimed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"destination","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Slashed","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"windowSeconds","type":"uint256"}],"name":"SlashingExitWindowDurationChanged","type":"event"},{"anonymous":false,"inputs":[],"name":"SlashingSettled","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":"assets","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"Staked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"address","name":"asset","type":"address"},{"indexed":false,"internalType":"uint256","name":"index","type":"uint256"}],"name":"UserIndexUpdated","type":"event"},{"inputs":[],"name":"CLAIM_HELPER_ROLE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"COOLDOWN_ADMIN_ROLE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"COOLDOWN_SECONDS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DELEGATE_BY_TYPE_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DELEGATE_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DISTRIBUTION_END","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"EIP712_REVISION","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"EMISSION_MANAGER","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"EXCHANGE_RATE_UNIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"INITIAL_EXCHANGE_RATE","outputs":[{"internalType":"uint216","name":"","type":"uint216"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LOWER_BOUND","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PERMIT_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRECISION","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"REVISION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"REWARDS_VAULT","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"REWARD_TOKEN","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SLASH_ADMIN_ROLE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"STAKED_TOKEN","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"UNSTAKE_WINDOW","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_aaveGovernance","outputs":[{"internalType":"contract ITransferHook","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"_votingSnapshots","outputs":[{"internalType":"uint128","name":"blockNumber","type":"uint128"},{"internalType":"uint128","name":"value","type":"uint128"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_votingSnapshotsCounts","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"","type":"address"}],"name":"assets","outputs":[{"internalType":"uint128","name":"emissionPerSecond","type":"uint128"},{"internalType":"uint128","name":"lastUpdateTimestamp","type":"uint128"},{"internalType":"uint256","name":"index","type":"uint256"}],"stateMutability":"view","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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"claimRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"claimAmount","type":"uint256"},{"internalType":"uint256","name":"redeemAmount","type":"uint256"}],"name":"claimRewardsAndRedeem","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"claimAmount","type":"uint256"},{"internalType":"uint256","name":"redeemAmount","type":"uint256"}],"name":"claimRewardsAndRedeemOnBehalf","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"claimRewardsAndStake","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"claimRewardsAndStakeOnBehalf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"claimRewardsOnBehalf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"role","type":"uint256"}],"name":"claimRoleAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"uint128","name":"emissionPerSecond","type":"uint128"},{"internalType":"uint256","name":"totalStaked","type":"uint256"},{"internalType":"address","name":"underlyingAsset","type":"address"}],"internalType":"struct DistributionTypes.AssetConfigInput[]","name":"assetsConfigInput","type":"tuple[]"}],"name":"configureAssets","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cooldown","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"}],"name":"cooldownOnBehalfOf","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":"delegatee","type":"address"}],"name":"delegate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256","name":"expiry","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"delegateBySig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"},{"internalType":"enum IGovernancePowerDelegationToken.DelegationType","name":"delegationType","type":"uint8"}],"name":"delegateByType","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"},{"internalType":"enum IGovernancePowerDelegationToken.DelegationType","name":"delegationType","type":"uint8"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256","name":"expiry","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"delegateByTypeBySig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"role","type":"uint256"}],"name":"getAdmin","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCooldownSeconds","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"delegator","type":"address"},{"internalType":"enum IGovernancePowerDelegationToken.DelegationType","name":"delegationType","type":"uint8"}],"name":"getDelegateeByType","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getExchangeRate","outputs":[{"internalType":"uint216","name":"","type":"uint216"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint32","name":"index","type":"uint32"}],"name":"getExchangeRateSnapshot","outputs":[{"components":[{"internalType":"uint40","name":"blockNumber","type":"uint40"},{"internalType":"uint216","name":"value","type":"uint216"}],"internalType":"struct IStakedPSYSV3.ExchangeRateSnapshot","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getExchangeRateSnapshotsCount","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMaxSlashablePercentage","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"role","type":"uint256"}],"name":"getPendingAdmin","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"uint256","name":"blockNumber","type":"uint256"},{"internalType":"enum IGovernancePowerDelegationToken.DelegationType","name":"delegationType","type":"uint8"}],"name":"getPowerAtBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"enum IGovernancePowerDelegationToken.DelegationType","name":"delegationType","type":"uint8"}],"name":"getPowerCurrent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"staker","type":"address"}],"name":"getTotalRewardsBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"address","name":"asset","type":"address"}],"name":"getUserAssetData","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ghoDebtToken","outputs":[{"internalType":"contract IGhoVariableDebtTokenTransferHook","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"inPostSlashingPeriod","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"slashingAdmin","type":"address"},{"internalType":"address","name":"cooldownPauseAdmin","type":"address"},{"internalType":"address","name":"claimHelper","type":"address"},{"internalType":"uint256","name":"maxSlashablePercentage","type":"uint256"},{"internalType":"uint256","name":"cooldownSeconds","type":"uint256"}],"name":"initialize","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"},{"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":[{"internalType":"uint256","name":"shares","type":"uint256"}],"name":"previewRedeem","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"assets","type":"uint256"}],"name":"previewStake","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"redeem","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"redeemOnBehalf","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"returnFunds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"cooldownSeconds","type":"uint256"}],"name":"setCooldownSeconds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IGhoVariableDebtTokenTransferHook","name":"newGHODebtToken","type":"address"}],"name":"setGHODebtToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"percentage","type":"uint256"}],"name":"setMaxSlashablePercentage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"role","type":"uint256"},{"internalType":"address","name":"newPendingAdmin","type":"address"}],"name":"setPendingAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"settleSlashing","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"destination","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"slash","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"stake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256","name":"amount","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":"stakeWithPermit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"stakerRewardsToClaim","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"stakersCooldowns","outputs":[{"internalType":"uint40","name":"timestamp","type":"uint40"},{"internalType":"uint216","name":"amount","type":"uint216"}],"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":"uint256","name":"","type":"uint256"}],"name":"totalSupplyAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{"@REVISION_6790":{"entryPoint":287,"id":6790,"parameterSlots":0,"returnSlots":1},"@_2520":{"entryPoint":null,"id":2520,"parameterSlots":2,"returnSlots":0},"@_4760":{"entryPoint":null,"id":4760,"parameterSlots":6,"returnSlots":0},"@_542":{"entryPoint":null,"id":542,"parameterSlots":0,"returnSlots":0},"@_5563":{"entryPoint":null,"id":5563,"parameterSlots":6,"returnSlots":0},"@_6821":{"entryPoint":null,"id":6821,"parameterSlots":6,"returnSlots":0},"abi_decode_tuple_t_contract$_IERC20_$77t_contract$_IERC20_$77t_uint256t_addresst_addresst_uint128_fromMemory":{"entryPoint":316,"id":null,"parameterSlots":2,"returnSlots":6},"abi_decode_tuple_t_uint8_fromMemory":{"entryPoint":500,"id":null,"parameterSlots":2,"returnSlots":1},"checked_add_t_uint256":{"entryPoint":475,"id":null,"parameterSlots":2,"returnSlots":1},"checked_exp_helper":{"entryPoint":542,"id":null,"parameterSlots":3,"returnSlots":2},"checked_exp_t_uint256_t_uint256":{"entryPoint":773,"id":null,"parameterSlots":2,"returnSlots":1},"checked_exp_unsigned":{"entryPoint":609,"id":null,"parameterSlots":2,"returnSlots":1},"panic_error_0x11":{"entryPoint":453,"id":null,"parameterSlots":0,"returnSlots":0},"validator_revert_contract_IERC20":{"entryPoint":292,"id":null,"parameterSlots":1,"returnSlots":0}},"generatedSources":[{"ast":{"nativeSrc":"0:3073:1","nodeType":"YulBlock","src":"0:3073:1","statements":[{"nativeSrc":"6:3:1","nodeType":"YulBlock","src":"6:3:1","statements":[]},{"body":{"nativeSrc":"67:86:1","nodeType":"YulBlock","src":"67:86:1","statements":[{"body":{"nativeSrc":"131:16:1","nodeType":"YulBlock","src":"131:16:1","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"140:1:1","nodeType":"YulLiteral","src":"140:1:1","type":"","value":"0"},{"kind":"number","nativeSrc":"143:1:1","nodeType":"YulLiteral","src":"143:1:1","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"133:6:1","nodeType":"YulIdentifier","src":"133:6:1"},"nativeSrc":"133:12:1","nodeType":"YulFunctionCall","src":"133:12:1"},"nativeSrc":"133:12:1","nodeType":"YulExpressionStatement","src":"133:12:1"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"90:5:1","nodeType":"YulIdentifier","src":"90:5:1"},{"arguments":[{"name":"value","nativeSrc":"101:5:1","nodeType":"YulIdentifier","src":"101:5:1"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"116:3:1","nodeType":"YulLiteral","src":"116:3:1","type":"","value":"160"},{"kind":"number","nativeSrc":"121:1:1","nodeType":"YulLiteral","src":"121:1:1","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"112:3:1","nodeType":"YulIdentifier","src":"112:3:1"},"nativeSrc":"112:11:1","nodeType":"YulFunctionCall","src":"112:11:1"},{"kind":"number","nativeSrc":"125:1:1","nodeType":"YulLiteral","src":"125:1:1","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"108:3:1","nodeType":"YulIdentifier","src":"108:3:1"},"nativeSrc":"108:19:1","nodeType":"YulFunctionCall","src":"108:19:1"}],"functionName":{"name":"and","nativeSrc":"97:3:1","nodeType":"YulIdentifier","src":"97:3:1"},"nativeSrc":"97:31:1","nodeType":"YulFunctionCall","src":"97:31:1"}],"functionName":{"name":"eq","nativeSrc":"87:2:1","nodeType":"YulIdentifier","src":"87:2:1"},"nativeSrc":"87:42:1","nodeType":"YulFunctionCall","src":"87:42:1"}],"functionName":{"name":"iszero","nativeSrc":"80:6:1","nodeType":"YulIdentifier","src":"80:6:1"},"nativeSrc":"80:50:1","nodeType":"YulFunctionCall","src":"80:50:1"},"nativeSrc":"77:70:1","nodeType":"YulIf","src":"77:70:1"}]},"name":"validator_revert_contract_IERC20","nativeSrc":"14:139:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"56:5:1","nodeType":"YulTypedName","src":"56:5:1","type":""}],"src":"14:139:1"},{"body":{"nativeSrc":"350:758:1","nodeType":"YulBlock","src":"350:758:1","statements":[{"body":{"nativeSrc":"397:16:1","nodeType":"YulBlock","src":"397:16:1","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"406:1:1","nodeType":"YulLiteral","src":"406:1:1","type":"","value":"0"},{"kind":"number","nativeSrc":"409:1:1","nodeType":"YulLiteral","src":"409:1:1","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"399:6:1","nodeType":"YulIdentifier","src":"399:6:1"},"nativeSrc":"399:12:1","nodeType":"YulFunctionCall","src":"399:12:1"},"nativeSrc":"399:12:1","nodeType":"YulExpressionStatement","src":"399:12:1"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"371:7:1","nodeType":"YulIdentifier","src":"371:7:1"},{"name":"headStart","nativeSrc":"380:9:1","nodeType":"YulIdentifier","src":"380:9:1"}],"functionName":{"name":"sub","nativeSrc":"367:3:1","nodeType":"YulIdentifier","src":"367:3:1"},"nativeSrc":"367:23:1","nodeType":"YulFunctionCall","src":"367:23:1"},{"kind":"number","nativeSrc":"392:3:1","nodeType":"YulLiteral","src":"392:3:1","type":"","value":"192"}],"functionName":{"name":"slt","nativeSrc":"363:3:1","nodeType":"YulIdentifier","src":"363:3:1"},"nativeSrc":"363:33:1","nodeType":"YulFunctionCall","src":"363:33:1"},"nativeSrc":"360:53:1","nodeType":"YulIf","src":"360:53:1"},{"nativeSrc":"422:29:1","nodeType":"YulVariableDeclaration","src":"422:29:1","value":{"arguments":[{"name":"headStart","nativeSrc":"441:9:1","nodeType":"YulIdentifier","src":"441:9:1"}],"functionName":{"name":"mload","nativeSrc":"435:5:1","nodeType":"YulIdentifier","src":"435:5:1"},"nativeSrc":"435:16:1","nodeType":"YulFunctionCall","src":"435:16:1"},"variables":[{"name":"value","nativeSrc":"426:5:1","nodeType":"YulTypedName","src":"426:5:1","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"493:5:1","nodeType":"YulIdentifier","src":"493:5:1"}],"functionName":{"name":"validator_revert_contract_IERC20","nativeSrc":"460:32:1","nodeType":"YulIdentifier","src":"460:32:1"},"nativeSrc":"460:39:1","nodeType":"YulFunctionCall","src":"460:39:1"},"nativeSrc":"460:39:1","nodeType":"YulExpressionStatement","src":"460:39:1"},{"nativeSrc":"508:15:1","nodeType":"YulAssignment","src":"508:15:1","value":{"name":"value","nativeSrc":"518:5:1","nodeType":"YulIdentifier","src":"518:5:1"},"variableNames":[{"name":"value0","nativeSrc":"508:6:1","nodeType":"YulIdentifier","src":"508:6:1"}]},{"nativeSrc":"532:40:1","nodeType":"YulVariableDeclaration","src":"532:40:1","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"557:9:1","nodeType":"YulIdentifier","src":"557:9:1"},{"kind":"number","nativeSrc":"568:2:1","nodeType":"YulLiteral","src":"568:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"553:3:1","nodeType":"YulIdentifier","src":"553:3:1"},"nativeSrc":"553:18:1","nodeType":"YulFunctionCall","src":"553:18:1"}],"functionName":{"name":"mload","nativeSrc":"547:5:1","nodeType":"YulIdentifier","src":"547:5:1"},"nativeSrc":"547:25:1","nodeType":"YulFunctionCall","src":"547:25:1"},"variables":[{"name":"value_1","nativeSrc":"536:7:1","nodeType":"YulTypedName","src":"536:7:1","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"614:7:1","nodeType":"YulIdentifier","src":"614:7:1"}],"functionName":{"name":"validator_revert_contract_IERC20","nativeSrc":"581:32:1","nodeType":"YulIdentifier","src":"581:32:1"},"nativeSrc":"581:41:1","nodeType":"YulFunctionCall","src":"581:41:1"},"nativeSrc":"581:41:1","nodeType":"YulExpressionStatement","src":"581:41:1"},{"nativeSrc":"631:17:1","nodeType":"YulAssignment","src":"631:17:1","value":{"name":"value_1","nativeSrc":"641:7:1","nodeType":"YulIdentifier","src":"641:7:1"},"variableNames":[{"name":"value1","nativeSrc":"631:6:1","nodeType":"YulIdentifier","src":"631:6:1"}]},{"nativeSrc":"657:35:1","nodeType":"YulAssignment","src":"657:35:1","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"677:9:1","nodeType":"YulIdentifier","src":"677:9:1"},{"kind":"number","nativeSrc":"688:2:1","nodeType":"YulLiteral","src":"688:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"673:3:1","nodeType":"YulIdentifier","src":"673:3:1"},"nativeSrc":"673:18:1","nodeType":"YulFunctionCall","src":"673:18:1"}],"functionName":{"name":"mload","nativeSrc":"667:5:1","nodeType":"YulIdentifier","src":"667:5:1"},"nativeSrc":"667:25:1","nodeType":"YulFunctionCall","src":"667:25:1"},"variableNames":[{"name":"value2","nativeSrc":"657:6:1","nodeType":"YulIdentifier","src":"657:6:1"}]},{"nativeSrc":"701:40:1","nodeType":"YulVariableDeclaration","src":"701:40:1","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"726:9:1","nodeType":"YulIdentifier","src":"726:9:1"},{"kind":"number","nativeSrc":"737:2:1","nodeType":"YulLiteral","src":"737:2:1","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"722:3:1","nodeType":"YulIdentifier","src":"722:3:1"},"nativeSrc":"722:18:1","nodeType":"YulFunctionCall","src":"722:18:1"}],"functionName":{"name":"mload","nativeSrc":"716:5:1","nodeType":"YulIdentifier","src":"716:5:1"},"nativeSrc":"716:25:1","nodeType":"YulFunctionCall","src":"716:25:1"},"variables":[{"name":"value_2","nativeSrc":"705:7:1","nodeType":"YulTypedName","src":"705:7:1","type":""}]},{"expression":{"arguments":[{"name":"value_2","nativeSrc":"783:7:1","nodeType":"YulIdentifier","src":"783:7:1"}],"functionName":{"name":"validator_revert_contract_IERC20","nativeSrc":"750:32:1","nodeType":"YulIdentifier","src":"750:32:1"},"nativeSrc":"750:41:1","nodeType":"YulFunctionCall","src":"750:41:1"},"nativeSrc":"750:41:1","nodeType":"YulExpressionStatement","src":"750:41:1"},{"nativeSrc":"800:17:1","nodeType":"YulAssignment","src":"800:17:1","value":{"name":"value_2","nativeSrc":"810:7:1","nodeType":"YulIdentifier","src":"810:7:1"},"variableNames":[{"name":"value3","nativeSrc":"800:6:1","nodeType":"YulIdentifier","src":"800:6:1"}]},{"nativeSrc":"826:41:1","nodeType":"YulVariableDeclaration","src":"826:41:1","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"851:9:1","nodeType":"YulIdentifier","src":"851:9:1"},{"kind":"number","nativeSrc":"862:3:1","nodeType":"YulLiteral","src":"862:3:1","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"847:3:1","nodeType":"YulIdentifier","src":"847:3:1"},"nativeSrc":"847:19:1","nodeType":"YulFunctionCall","src":"847:19:1"}],"functionName":{"name":"mload","nativeSrc":"841:5:1","nodeType":"YulIdentifier","src":"841:5:1"},"nativeSrc":"841:26:1","nodeType":"YulFunctionCall","src":"841:26:1"},"variables":[{"name":"value_3","nativeSrc":"830:7:1","nodeType":"YulTypedName","src":"830:7:1","type":""}]},{"expression":{"arguments":[{"name":"value_3","nativeSrc":"909:7:1","nodeType":"YulIdentifier","src":"909:7:1"}],"functionName":{"name":"validator_revert_contract_IERC20","nativeSrc":"876:32:1","nodeType":"YulIdentifier","src":"876:32:1"},"nativeSrc":"876:41:1","nodeType":"YulFunctionCall","src":"876:41:1"},"nativeSrc":"876:41:1","nodeType":"YulExpressionStatement","src":"876:41:1"},{"nativeSrc":"926:17:1","nodeType":"YulAssignment","src":"926:17:1","value":{"name":"value_3","nativeSrc":"936:7:1","nodeType":"YulIdentifier","src":"936:7:1"},"variableNames":[{"name":"value4","nativeSrc":"926:6:1","nodeType":"YulIdentifier","src":"926:6:1"}]},{"nativeSrc":"952:41:1","nodeType":"YulVariableDeclaration","src":"952:41:1","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"977:9:1","nodeType":"YulIdentifier","src":"977:9:1"},{"kind":"number","nativeSrc":"988:3:1","nodeType":"YulLiteral","src":"988:3:1","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"973:3:1","nodeType":"YulIdentifier","src":"973:3:1"},"nativeSrc":"973:19:1","nodeType":"YulFunctionCall","src":"973:19:1"}],"functionName":{"name":"mload","nativeSrc":"967:5:1","nodeType":"YulIdentifier","src":"967:5:1"},"nativeSrc":"967:26:1","nodeType":"YulFunctionCall","src":"967:26:1"},"variables":[{"name":"value_4","nativeSrc":"956:7:1","nodeType":"YulTypedName","src":"956:7:1","type":""}]},{"body":{"nativeSrc":"1060:16:1","nodeType":"YulBlock","src":"1060:16:1","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1069:1:1","nodeType":"YulLiteral","src":"1069:1:1","type":"","value":"0"},{"kind":"number","nativeSrc":"1072:1:1","nodeType":"YulLiteral","src":"1072:1:1","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1062:6:1","nodeType":"YulIdentifier","src":"1062:6:1"},"nativeSrc":"1062:12:1","nodeType":"YulFunctionCall","src":"1062:12:1"},"nativeSrc":"1062:12:1","nodeType":"YulExpressionStatement","src":"1062:12:1"}]},"condition":{"arguments":[{"arguments":[{"name":"value_4","nativeSrc":"1015:7:1","nodeType":"YulIdentifier","src":"1015:7:1"},{"arguments":[{"name":"value_4","nativeSrc":"1028:7:1","nodeType":"YulIdentifier","src":"1028:7:1"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"1045:3:1","nodeType":"YulLiteral","src":"1045:3:1","type":"","value":"128"},{"kind":"number","nativeSrc":"1050:1:1","nodeType":"YulLiteral","src":"1050:1:1","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"1041:3:1","nodeType":"YulIdentifier","src":"1041:3:1"},"nativeSrc":"1041:11:1","nodeType":"YulFunctionCall","src":"1041:11:1"},{"kind":"number","nativeSrc":"1054:1:1","nodeType":"YulLiteral","src":"1054:1:1","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"1037:3:1","nodeType":"YulIdentifier","src":"1037:3:1"},"nativeSrc":"1037:19:1","nodeType":"YulFunctionCall","src":"1037:19:1"}],"functionName":{"name":"and","nativeSrc":"1024:3:1","nodeType":"YulIdentifier","src":"1024:3:1"},"nativeSrc":"1024:33:1","nodeType":"YulFunctionCall","src":"1024:33:1"}],"functionName":{"name":"eq","nativeSrc":"1012:2:1","nodeType":"YulIdentifier","src":"1012:2:1"},"nativeSrc":"1012:46:1","nodeType":"YulFunctionCall","src":"1012:46:1"}],"functionName":{"name":"iszero","nativeSrc":"1005:6:1","nodeType":"YulIdentifier","src":"1005:6:1"},"nativeSrc":"1005:54:1","nodeType":"YulFunctionCall","src":"1005:54:1"},"nativeSrc":"1002:74:1","nodeType":"YulIf","src":"1002:74:1"},{"nativeSrc":"1085:17:1","nodeType":"YulAssignment","src":"1085:17:1","value":{"name":"value_4","nativeSrc":"1095:7:1","nodeType":"YulIdentifier","src":"1095:7:1"},"variableNames":[{"name":"value5","nativeSrc":"1085:6:1","nodeType":"YulIdentifier","src":"1085:6:1"}]}]},"name":"abi_decode_tuple_t_contract$_IERC20_$77t_contract$_IERC20_$77t_uint256t_addresst_addresst_uint128_fromMemory","nativeSrc":"158:950:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"276:9:1","nodeType":"YulTypedName","src":"276:9:1","type":""},{"name":"dataEnd","nativeSrc":"287:7:1","nodeType":"YulTypedName","src":"287:7:1","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"299:6:1","nodeType":"YulTypedName","src":"299:6:1","type":""},{"name":"value1","nativeSrc":"307:6:1","nodeType":"YulTypedName","src":"307:6:1","type":""},{"name":"value2","nativeSrc":"315:6:1","nodeType":"YulTypedName","src":"315:6:1","type":""},{"name":"value3","nativeSrc":"323:6:1","nodeType":"YulTypedName","src":"323:6:1","type":""},{"name":"value4","nativeSrc":"331:6:1","nodeType":"YulTypedName","src":"331:6:1","type":""},{"name":"value5","nativeSrc":"339:6:1","nodeType":"YulTypedName","src":"339:6:1","type":""}],"src":"158:950:1"},{"body":{"nativeSrc":"1145:95:1","nodeType":"YulBlock","src":"1145:95:1","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1162:1:1","nodeType":"YulLiteral","src":"1162:1:1","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"1169:3:1","nodeType":"YulLiteral","src":"1169:3:1","type":"","value":"224"},{"kind":"number","nativeSrc":"1174:10:1","nodeType":"YulLiteral","src":"1174:10:1","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"1165:3:1","nodeType":"YulIdentifier","src":"1165:3:1"},"nativeSrc":"1165:20:1","nodeType":"YulFunctionCall","src":"1165:20:1"}],"functionName":{"name":"mstore","nativeSrc":"1155:6:1","nodeType":"YulIdentifier","src":"1155:6:1"},"nativeSrc":"1155:31:1","nodeType":"YulFunctionCall","src":"1155:31:1"},"nativeSrc":"1155:31:1","nodeType":"YulExpressionStatement","src":"1155:31:1"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"1202:1:1","nodeType":"YulLiteral","src":"1202:1:1","type":"","value":"4"},{"kind":"number","nativeSrc":"1205:4:1","nodeType":"YulLiteral","src":"1205:4:1","type":"","value":"0x11"}],"functionName":{"name":"mstore","nativeSrc":"1195:6:1","nodeType":"YulIdentifier","src":"1195:6:1"},"nativeSrc":"1195:15:1","nodeType":"YulFunctionCall","src":"1195:15:1"},"nativeSrc":"1195:15:1","nodeType":"YulExpressionStatement","src":"1195:15:1"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"1226:1:1","nodeType":"YulLiteral","src":"1226:1:1","type":"","value":"0"},{"kind":"number","nativeSrc":"1229:4:1","nodeType":"YulLiteral","src":"1229:4:1","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"1219:6:1","nodeType":"YulIdentifier","src":"1219:6:1"},"nativeSrc":"1219:15:1","nodeType":"YulFunctionCall","src":"1219:15:1"},"nativeSrc":"1219:15:1","nodeType":"YulExpressionStatement","src":"1219:15:1"}]},"name":"panic_error_0x11","nativeSrc":"1113:127:1","nodeType":"YulFunctionDefinition","src":"1113:127:1"},{"body":{"nativeSrc":"1293:77:1","nodeType":"YulBlock","src":"1293:77:1","statements":[{"nativeSrc":"1303:16:1","nodeType":"YulAssignment","src":"1303:16:1","value":{"arguments":[{"name":"x","nativeSrc":"1314:1:1","nodeType":"YulIdentifier","src":"1314:1:1"},{"name":"y","nativeSrc":"1317:1:1","nodeType":"YulIdentifier","src":"1317:1:1"}],"functionName":{"name":"add","nativeSrc":"1310:3:1","nodeType":"YulIdentifier","src":"1310:3:1"},"nativeSrc":"1310:9:1","nodeType":"YulFunctionCall","src":"1310:9:1"},"variableNames":[{"name":"sum","nativeSrc":"1303:3:1","nodeType":"YulIdentifier","src":"1303:3:1"}]},{"body":{"nativeSrc":"1342:22:1","nodeType":"YulBlock","src":"1342:22:1","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"1344:16:1","nodeType":"YulIdentifier","src":"1344:16:1"},"nativeSrc":"1344:18:1","nodeType":"YulFunctionCall","src":"1344:18:1"},"nativeSrc":"1344:18:1","nodeType":"YulExpressionStatement","src":"1344:18:1"}]},"condition":{"arguments":[{"name":"x","nativeSrc":"1334:1:1","nodeType":"YulIdentifier","src":"1334:1:1"},{"name":"sum","nativeSrc":"1337:3:1","nodeType":"YulIdentifier","src":"1337:3:1"}],"functionName":{"name":"gt","nativeSrc":"1331:2:1","nodeType":"YulIdentifier","src":"1331:2:1"},"nativeSrc":"1331:10:1","nodeType":"YulFunctionCall","src":"1331:10:1"},"nativeSrc":"1328:36:1","nodeType":"YulIf","src":"1328:36:1"}]},"name":"checked_add_t_uint256","nativeSrc":"1245:125:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"1276:1:1","nodeType":"YulTypedName","src":"1276:1:1","type":""},{"name":"y","nativeSrc":"1279:1:1","nodeType":"YulTypedName","src":"1279:1:1","type":""}],"returnVariables":[{"name":"sum","nativeSrc":"1285:3:1","nodeType":"YulTypedName","src":"1285:3:1","type":""}],"src":"1245:125:1"},{"body":{"nativeSrc":"1454:194:1","nodeType":"YulBlock","src":"1454:194:1","statements":[{"body":{"nativeSrc":"1500:16:1","nodeType":"YulBlock","src":"1500:16:1","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1509:1:1","nodeType":"YulLiteral","src":"1509:1:1","type":"","value":"0"},{"kind":"number","nativeSrc":"1512:1:1","nodeType":"YulLiteral","src":"1512:1:1","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1502:6:1","nodeType":"YulIdentifier","src":"1502:6:1"},"nativeSrc":"1502:12:1","nodeType":"YulFunctionCall","src":"1502:12:1"},"nativeSrc":"1502:12:1","nodeType":"YulExpressionStatement","src":"1502:12:1"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"1475:7:1","nodeType":"YulIdentifier","src":"1475:7:1"},{"name":"headStart","nativeSrc":"1484:9:1","nodeType":"YulIdentifier","src":"1484:9:1"}],"functionName":{"name":"sub","nativeSrc":"1471:3:1","nodeType":"YulIdentifier","src":"1471:3:1"},"nativeSrc":"1471:23:1","nodeType":"YulFunctionCall","src":"1471:23:1"},{"kind":"number","nativeSrc":"1496:2:1","nodeType":"YulLiteral","src":"1496:2:1","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"1467:3:1","nodeType":"YulIdentifier","src":"1467:3:1"},"nativeSrc":"1467:32:1","nodeType":"YulFunctionCall","src":"1467:32:1"},"nativeSrc":"1464:52:1","nodeType":"YulIf","src":"1464:52:1"},{"nativeSrc":"1525:29:1","nodeType":"YulVariableDeclaration","src":"1525:29:1","value":{"arguments":[{"name":"headStart","nativeSrc":"1544:9:1","nodeType":"YulIdentifier","src":"1544:9:1"}],"functionName":{"name":"mload","nativeSrc":"1538:5:1","nodeType":"YulIdentifier","src":"1538:5:1"},"nativeSrc":"1538:16:1","nodeType":"YulFunctionCall","src":"1538:16:1"},"variables":[{"name":"value","nativeSrc":"1529:5:1","nodeType":"YulTypedName","src":"1529:5:1","type":""}]},{"body":{"nativeSrc":"1602:16:1","nodeType":"YulBlock","src":"1602:16:1","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1611:1:1","nodeType":"YulLiteral","src":"1611:1:1","type":"","value":"0"},{"kind":"number","nativeSrc":"1614:1:1","nodeType":"YulLiteral","src":"1614:1:1","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1604:6:1","nodeType":"YulIdentifier","src":"1604:6:1"},"nativeSrc":"1604:12:1","nodeType":"YulFunctionCall","src":"1604:12:1"},"nativeSrc":"1604:12:1","nodeType":"YulExpressionStatement","src":"1604:12:1"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"1576:5:1","nodeType":"YulIdentifier","src":"1576:5:1"},{"arguments":[{"name":"value","nativeSrc":"1587:5:1","nodeType":"YulIdentifier","src":"1587:5:1"},{"kind":"number","nativeSrc":"1594:4:1","nodeType":"YulLiteral","src":"1594:4:1","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"1583:3:1","nodeType":"YulIdentifier","src":"1583:3:1"},"nativeSrc":"1583:16:1","nodeType":"YulFunctionCall","src":"1583:16:1"}],"functionName":{"name":"eq","nativeSrc":"1573:2:1","nodeType":"YulIdentifier","src":"1573:2:1"},"nativeSrc":"1573:27:1","nodeType":"YulFunctionCall","src":"1573:27:1"}],"functionName":{"name":"iszero","nativeSrc":"1566:6:1","nodeType":"YulIdentifier","src":"1566:6:1"},"nativeSrc":"1566:35:1","nodeType":"YulFunctionCall","src":"1566:35:1"},"nativeSrc":"1563:55:1","nodeType":"YulIf","src":"1563:55:1"},{"nativeSrc":"1627:15:1","nodeType":"YulAssignment","src":"1627:15:1","value":{"name":"value","nativeSrc":"1637:5:1","nodeType":"YulIdentifier","src":"1637:5:1"},"variableNames":[{"name":"value0","nativeSrc":"1627:6:1","nodeType":"YulIdentifier","src":"1627:6:1"}]}]},"name":"abi_decode_tuple_t_uint8_fromMemory","nativeSrc":"1375:273:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1420:9:1","nodeType":"YulTypedName","src":"1420:9:1","type":""},{"name":"dataEnd","nativeSrc":"1431:7:1","nodeType":"YulTypedName","src":"1431:7:1","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"1443:6:1","nodeType":"YulTypedName","src":"1443:6:1","type":""}],"src":"1375:273:1"},{"body":{"nativeSrc":"1722:306:1","nodeType":"YulBlock","src":"1722:306:1","statements":[{"nativeSrc":"1732:10:1","nodeType":"YulAssignment","src":"1732:10:1","value":{"kind":"number","nativeSrc":"1741:1:1","nodeType":"YulLiteral","src":"1741:1:1","type":"","value":"1"},"variableNames":[{"name":"power","nativeSrc":"1732:5:1","nodeType":"YulIdentifier","src":"1732:5:1"}]},{"nativeSrc":"1751:13:1","nodeType":"YulAssignment","src":"1751:13:1","value":{"name":"_base","nativeSrc":"1759:5:1","nodeType":"YulIdentifier","src":"1759:5:1"},"variableNames":[{"name":"base","nativeSrc":"1751:4:1","nodeType":"YulIdentifier","src":"1751:4:1"}]},{"body":{"nativeSrc":"1809:213:1","nodeType":"YulBlock","src":"1809:213:1","statements":[{"body":{"nativeSrc":"1851:22:1","nodeType":"YulBlock","src":"1851:22:1","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"1853:16:1","nodeType":"YulIdentifier","src":"1853:16:1"},"nativeSrc":"1853:18:1","nodeType":"YulFunctionCall","src":"1853:18:1"},"nativeSrc":"1853:18:1","nodeType":"YulExpressionStatement","src":"1853:18:1"}]},"condition":{"arguments":[{"name":"base","nativeSrc":"1829:4:1","nodeType":"YulIdentifier","src":"1829:4:1"},{"arguments":[{"name":"max","nativeSrc":"1839:3:1","nodeType":"YulIdentifier","src":"1839:3:1"},{"name":"base","nativeSrc":"1844:4:1","nodeType":"YulIdentifier","src":"1844:4:1"}],"functionName":{"name":"div","nativeSrc":"1835:3:1","nodeType":"YulIdentifier","src":"1835:3:1"},"nativeSrc":"1835:14:1","nodeType":"YulFunctionCall","src":"1835:14:1"}],"functionName":{"name":"gt","nativeSrc":"1826:2:1","nodeType":"YulIdentifier","src":"1826:2:1"},"nativeSrc":"1826:24:1","nodeType":"YulFunctionCall","src":"1826:24:1"},"nativeSrc":"1823:50:1","nodeType":"YulIf","src":"1823:50:1"},{"body":{"nativeSrc":"1906:29:1","nodeType":"YulBlock","src":"1906:29:1","statements":[{"nativeSrc":"1908:25:1","nodeType":"YulAssignment","src":"1908:25:1","value":{"arguments":[{"name":"power","nativeSrc":"1921:5:1","nodeType":"YulIdentifier","src":"1921:5:1"},{"name":"base","nativeSrc":"1928:4:1","nodeType":"YulIdentifier","src":"1928:4:1"}],"functionName":{"name":"mul","nativeSrc":"1917:3:1","nodeType":"YulIdentifier","src":"1917:3:1"},"nativeSrc":"1917:16:1","nodeType":"YulFunctionCall","src":"1917:16:1"},"variableNames":[{"name":"power","nativeSrc":"1908:5:1","nodeType":"YulIdentifier","src":"1908:5:1"}]}]},"condition":{"arguments":[{"name":"exponent","nativeSrc":"1893:8:1","nodeType":"YulIdentifier","src":"1893:8:1"},{"kind":"number","nativeSrc":"1903:1:1","nodeType":"YulLiteral","src":"1903:1:1","type":"","value":"1"}],"functionName":{"name":"and","nativeSrc":"1889:3:1","nodeType":"YulIdentifier","src":"1889:3:1"},"nativeSrc":"1889:16:1","nodeType":"YulFunctionCall","src":"1889:16:1"},"nativeSrc":"1886:49:1","nodeType":"YulIf","src":"1886:49:1"},{"nativeSrc":"1948:23:1","nodeType":"YulAssignment","src":"1948:23:1","value":{"arguments":[{"name":"base","nativeSrc":"1960:4:1","nodeType":"YulIdentifier","src":"1960:4:1"},{"name":"base","nativeSrc":"1966:4:1","nodeType":"YulIdentifier","src":"1966:4:1"}],"functionName":{"name":"mul","nativeSrc":"1956:3:1","nodeType":"YulIdentifier","src":"1956:3:1"},"nativeSrc":"1956:15:1","nodeType":"YulFunctionCall","src":"1956:15:1"},"variableNames":[{"name":"base","nativeSrc":"1948:4:1","nodeType":"YulIdentifier","src":"1948:4:1"}]},{"nativeSrc":"1984:28:1","nodeType":"YulAssignment","src":"1984:28:1","value":{"arguments":[{"kind":"number","nativeSrc":"2000:1:1","nodeType":"YulLiteral","src":"2000:1:1","type":"","value":"1"},{"name":"exponent","nativeSrc":"2003:8:1","nodeType":"YulIdentifier","src":"2003:8:1"}],"functionName":{"name":"shr","nativeSrc":"1996:3:1","nodeType":"YulIdentifier","src":"1996:3:1"},"nativeSrc":"1996:16:1","nodeType":"YulFunctionCall","src":"1996:16:1"},"variableNames":[{"name":"exponent","nativeSrc":"1984:8:1","nodeType":"YulIdentifier","src":"1984:8:1"}]}]},"condition":{"arguments":[{"name":"exponent","nativeSrc":"1784:8:1","nodeType":"YulIdentifier","src":"1784:8:1"},{"kind":"number","nativeSrc":"1794:1:1","nodeType":"YulLiteral","src":"1794:1:1","type":"","value":"1"}],"functionName":{"name":"gt","nativeSrc":"1781:2:1","nodeType":"YulIdentifier","src":"1781:2:1"},"nativeSrc":"1781:15:1","nodeType":"YulFunctionCall","src":"1781:15:1"},"nativeSrc":"1773:249:1","nodeType":"YulForLoop","post":{"nativeSrc":"1797:3:1","nodeType":"YulBlock","src":"1797:3:1","statements":[]},"pre":{"nativeSrc":"1777:3:1","nodeType":"YulBlock","src":"1777:3:1","statements":[]},"src":"1773:249:1"}]},"name":"checked_exp_helper","nativeSrc":"1653:375:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"_base","nativeSrc":"1681:5:1","nodeType":"YulTypedName","src":"1681:5:1","type":""},{"name":"exponent","nativeSrc":"1688:8:1","nodeType":"YulTypedName","src":"1688:8:1","type":""},{"name":"max","nativeSrc":"1698:3:1","nodeType":"YulTypedName","src":"1698:3:1","type":""}],"returnVariables":[{"name":"power","nativeSrc":"1706:5:1","nodeType":"YulTypedName","src":"1706:5:1","type":""},{"name":"base","nativeSrc":"1713:4:1","nodeType":"YulTypedName","src":"1713:4:1","type":""}],"src":"1653:375:1"},{"body":{"nativeSrc":"2092:843:1","nodeType":"YulBlock","src":"2092:843:1","statements":[{"body":{"nativeSrc":"2130:52:1","nodeType":"YulBlock","src":"2130:52:1","statements":[{"nativeSrc":"2144:10:1","nodeType":"YulAssignment","src":"2144:10:1","value":{"kind":"number","nativeSrc":"2153:1:1","nodeType":"YulLiteral","src":"2153:1:1","type":"","value":"1"},"variableNames":[{"name":"power","nativeSrc":"2144:5:1","nodeType":"YulIdentifier","src":"2144:5:1"}]},{"nativeSrc":"2167:5:1","nodeType":"YulLeave","src":"2167:5:1"}]},"condition":{"arguments":[{"name":"exponent","nativeSrc":"2112:8:1","nodeType":"YulIdentifier","src":"2112:8:1"}],"functionName":{"name":"iszero","nativeSrc":"2105:6:1","nodeType":"YulIdentifier","src":"2105:6:1"},"nativeSrc":"2105:16:1","nodeType":"YulFunctionCall","src":"2105:16:1"},"nativeSrc":"2102:80:1","nodeType":"YulIf","src":"2102:80:1"},{"body":{"nativeSrc":"2215:52:1","nodeType":"YulBlock","src":"2215:52:1","statements":[{"nativeSrc":"2229:10:1","nodeType":"YulAssignment","src":"2229:10:1","value":{"kind":"number","nativeSrc":"2238:1:1","nodeType":"YulLiteral","src":"2238:1:1","type":"","value":"0"},"variableNames":[{"name":"power","nativeSrc":"2229:5:1","nodeType":"YulIdentifier","src":"2229:5:1"}]},{"nativeSrc":"2252:5:1","nodeType":"YulLeave","src":"2252:5:1"}]},"condition":{"arguments":[{"name":"base","nativeSrc":"2201:4:1","nodeType":"YulIdentifier","src":"2201:4:1"}],"functionName":{"name":"iszero","nativeSrc":"2194:6:1","nodeType":"YulIdentifier","src":"2194:6:1"},"nativeSrc":"2194:12:1","nodeType":"YulFunctionCall","src":"2194:12:1"},"nativeSrc":"2191:76:1","nodeType":"YulIf","src":"2191:76:1"},{"cases":[{"body":{"nativeSrc":"2303:52:1","nodeType":"YulBlock","src":"2303:52:1","statements":[{"nativeSrc":"2317:10:1","nodeType":"YulAssignment","src":"2317:10:1","value":{"kind":"number","nativeSrc":"2326:1:1","nodeType":"YulLiteral","src":"2326:1:1","type":"","value":"1"},"variableNames":[{"name":"power","nativeSrc":"2317:5:1","nodeType":"YulIdentifier","src":"2317:5:1"}]},{"nativeSrc":"2340:5:1","nodeType":"YulLeave","src":"2340:5:1"}]},"nativeSrc":"2296:59:1","nodeType":"YulCase","src":"2296:59:1","value":{"kind":"number","nativeSrc":"2301:1:1","nodeType":"YulLiteral","src":"2301:1:1","type":"","value":"1"}},{"body":{"nativeSrc":"2371:167:1","nodeType":"YulBlock","src":"2371:167:1","statements":[{"body":{"nativeSrc":"2406:22:1","nodeType":"YulBlock","src":"2406:22:1","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"2408:16:1","nodeType":"YulIdentifier","src":"2408:16:1"},"nativeSrc":"2408:18:1","nodeType":"YulFunctionCall","src":"2408:18:1"},"nativeSrc":"2408:18:1","nodeType":"YulExpressionStatement","src":"2408:18:1"}]},"condition":{"arguments":[{"name":"exponent","nativeSrc":"2391:8:1","nodeType":"YulIdentifier","src":"2391:8:1"},{"kind":"number","nativeSrc":"2401:3:1","nodeType":"YulLiteral","src":"2401:3:1","type":"","value":"255"}],"functionName":{"name":"gt","nativeSrc":"2388:2:1","nodeType":"YulIdentifier","src":"2388:2:1"},"nativeSrc":"2388:17:1","nodeType":"YulFunctionCall","src":"2388:17:1"},"nativeSrc":"2385:43:1","nodeType":"YulIf","src":"2385:43:1"},{"nativeSrc":"2441:25:1","nodeType":"YulAssignment","src":"2441:25:1","value":{"arguments":[{"name":"exponent","nativeSrc":"2454:8:1","nodeType":"YulIdentifier","src":"2454:8:1"},{"kind":"number","nativeSrc":"2464:1:1","nodeType":"YulLiteral","src":"2464:1:1","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"2450:3:1","nodeType":"YulIdentifier","src":"2450:3:1"},"nativeSrc":"2450:16:1","nodeType":"YulFunctionCall","src":"2450:16:1"},"variableNames":[{"name":"power","nativeSrc":"2441:5:1","nodeType":"YulIdentifier","src":"2441:5:1"}]},{"nativeSrc":"2479:11:1","nodeType":"YulVariableDeclaration","src":"2479:11:1","value":{"kind":"number","nativeSrc":"2489:1:1","nodeType":"YulLiteral","src":"2489:1:1","type":"","value":"0"},"variables":[{"name":"_1","nativeSrc":"2483:2:1","nodeType":"YulTypedName","src":"2483:2:1","type":""}]},{"nativeSrc":"2503:7:1","nodeType":"YulAssignment","src":"2503:7:1","value":{"kind":"number","nativeSrc":"2509:1:1","nodeType":"YulLiteral","src":"2509:1:1","type":"","value":"0"},"variableNames":[{"name":"_1","nativeSrc":"2503:2:1","nodeType":"YulIdentifier","src":"2503:2:1"}]},{"nativeSrc":"2523:5:1","nodeType":"YulLeave","src":"2523:5:1"}]},"nativeSrc":"2364:174:1","nodeType":"YulCase","src":"2364:174:1","value":{"kind":"number","nativeSrc":"2369:1:1","nodeType":"YulLiteral","src":"2369:1:1","type":"","value":"2"}}],"expression":{"name":"base","nativeSrc":"2283:4:1","nodeType":"YulIdentifier","src":"2283:4:1"},"nativeSrc":"2276:262:1","nodeType":"YulSwitch","src":"2276:262:1"},{"body":{"nativeSrc":"2636:114:1","nodeType":"YulBlock","src":"2636:114:1","statements":[{"nativeSrc":"2650:28:1","nodeType":"YulAssignment","src":"2650:28:1","value":{"arguments":[{"name":"base","nativeSrc":"2663:4:1","nodeType":"YulIdentifier","src":"2663:4:1"},{"name":"exponent","nativeSrc":"2669:8:1","nodeType":"YulIdentifier","src":"2669:8:1"}],"functionName":{"name":"exp","nativeSrc":"2659:3:1","nodeType":"YulIdentifier","src":"2659:3:1"},"nativeSrc":"2659:19:1","nodeType":"YulFunctionCall","src":"2659:19:1"},"variableNames":[{"name":"power","nativeSrc":"2650:5:1","nodeType":"YulIdentifier","src":"2650:5:1"}]},{"nativeSrc":"2691:11:1","nodeType":"YulVariableDeclaration","src":"2691:11:1","value":{"kind":"number","nativeSrc":"2701:1:1","nodeType":"YulLiteral","src":"2701:1:1","type":"","value":"0"},"variables":[{"name":"_2","nativeSrc":"2695:2:1","nodeType":"YulTypedName","src":"2695:2:1","type":""}]},{"nativeSrc":"2715:7:1","nodeType":"YulAssignment","src":"2715:7:1","value":{"kind":"number","nativeSrc":"2721:1:1","nodeType":"YulLiteral","src":"2721:1:1","type":"","value":"0"},"variableNames":[{"name":"_2","nativeSrc":"2715:2:1","nodeType":"YulIdentifier","src":"2715:2:1"}]},{"nativeSrc":"2735:5:1","nodeType":"YulLeave","src":"2735:5:1"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"base","nativeSrc":"2560:4:1","nodeType":"YulIdentifier","src":"2560:4:1"},{"kind":"number","nativeSrc":"2566:2:1","nodeType":"YulLiteral","src":"2566:2:1","type":"","value":"11"}],"functionName":{"name":"lt","nativeSrc":"2557:2:1","nodeType":"YulIdentifier","src":"2557:2:1"},"nativeSrc":"2557:12:1","nodeType":"YulFunctionCall","src":"2557:12:1"},{"arguments":[{"name":"exponent","nativeSrc":"2574:8:1","nodeType":"YulIdentifier","src":"2574:8:1"},{"kind":"number","nativeSrc":"2584:2:1","nodeType":"YulLiteral","src":"2584:2:1","type":"","value":"78"}],"functionName":{"name":"lt","nativeSrc":"2571:2:1","nodeType":"YulIdentifier","src":"2571:2:1"},"nativeSrc":"2571:16:1","nodeType":"YulFunctionCall","src":"2571:16:1"}],"functionName":{"name":"and","nativeSrc":"2553:3:1","nodeType":"YulIdentifier","src":"2553:3:1"},"nativeSrc":"2553:35:1","nodeType":"YulFunctionCall","src":"2553:35:1"},{"arguments":[{"arguments":[{"name":"base","nativeSrc":"2597:4:1","nodeType":"YulIdentifier","src":"2597:4:1"},{"kind":"number","nativeSrc":"2603:3:1","nodeType":"YulLiteral","src":"2603:3:1","type":"","value":"307"}],"functionName":{"name":"lt","nativeSrc":"2594:2:1","nodeType":"YulIdentifier","src":"2594:2:1"},"nativeSrc":"2594:13:1","nodeType":"YulFunctionCall","src":"2594:13:1"},{"arguments":[{"name":"exponent","nativeSrc":"2612:8:1","nodeType":"YulIdentifier","src":"2612:8:1"},{"kind":"number","nativeSrc":"2622:2:1","nodeType":"YulLiteral","src":"2622:2:1","type":"","value":"32"}],"functionName":{"name":"lt","nativeSrc":"2609:2:1","nodeType":"YulIdentifier","src":"2609:2:1"},"nativeSrc":"2609:16:1","nodeType":"YulFunctionCall","src":"2609:16:1"}],"functionName":{"name":"and","nativeSrc":"2590:3:1","nodeType":"YulIdentifier","src":"2590:3:1"},"nativeSrc":"2590:36:1","nodeType":"YulFunctionCall","src":"2590:36:1"}],"functionName":{"name":"or","nativeSrc":"2550:2:1","nodeType":"YulIdentifier","src":"2550:2:1"},"nativeSrc":"2550:77:1","nodeType":"YulFunctionCall","src":"2550:77:1"},"nativeSrc":"2547:203:1","nodeType":"YulIf","src":"2547:203:1"},{"nativeSrc":"2759:65:1","nodeType":"YulVariableDeclaration","src":"2759:65:1","value":{"arguments":[{"name":"base","nativeSrc":"2801:4:1","nodeType":"YulIdentifier","src":"2801:4:1"},{"name":"exponent","nativeSrc":"2807:8:1","nodeType":"YulIdentifier","src":"2807:8:1"},{"arguments":[{"kind":"number","nativeSrc":"2821:1:1","nodeType":"YulLiteral","src":"2821:1:1","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"2817:3:1","nodeType":"YulIdentifier","src":"2817:3:1"},"nativeSrc":"2817:6:1","nodeType":"YulFunctionCall","src":"2817:6:1"}],"functionName":{"name":"checked_exp_helper","nativeSrc":"2782:18:1","nodeType":"YulIdentifier","src":"2782:18:1"},"nativeSrc":"2782:42:1","nodeType":"YulFunctionCall","src":"2782:42:1"},"variables":[{"name":"power_1","nativeSrc":"2763:7:1","nodeType":"YulTypedName","src":"2763:7:1","type":""},{"name":"base_1","nativeSrc":"2772:6:1","nodeType":"YulTypedName","src":"2772:6:1","type":""}]},{"body":{"nativeSrc":"2869:22:1","nodeType":"YulBlock","src":"2869:22:1","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"2871:16:1","nodeType":"YulIdentifier","src":"2871:16:1"},"nativeSrc":"2871:18:1","nodeType":"YulFunctionCall","src":"2871:18:1"},"nativeSrc":"2871:18:1","nodeType":"YulExpressionStatement","src":"2871:18:1"}]},"condition":{"arguments":[{"name":"power_1","nativeSrc":"2839:7:1","nodeType":"YulIdentifier","src":"2839:7:1"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"2856:1:1","nodeType":"YulLiteral","src":"2856:1:1","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"2852:3:1","nodeType":"YulIdentifier","src":"2852:3:1"},"nativeSrc":"2852:6:1","nodeType":"YulFunctionCall","src":"2852:6:1"},{"name":"base_1","nativeSrc":"2860:6:1","nodeType":"YulIdentifier","src":"2860:6:1"}],"functionName":{"name":"div","nativeSrc":"2848:3:1","nodeType":"YulIdentifier","src":"2848:3:1"},"nativeSrc":"2848:19:1","nodeType":"YulFunctionCall","src":"2848:19:1"}],"functionName":{"name":"gt","nativeSrc":"2836:2:1","nodeType":"YulIdentifier","src":"2836:2:1"},"nativeSrc":"2836:32:1","nodeType":"YulFunctionCall","src":"2836:32:1"},"nativeSrc":"2833:58:1","nodeType":"YulIf","src":"2833:58:1"},{"nativeSrc":"2900:29:1","nodeType":"YulAssignment","src":"2900:29:1","value":{"arguments":[{"name":"power_1","nativeSrc":"2913:7:1","nodeType":"YulIdentifier","src":"2913:7:1"},{"name":"base_1","nativeSrc":"2922:6:1","nodeType":"YulIdentifier","src":"2922:6:1"}],"functionName":{"name":"mul","nativeSrc":"2909:3:1","nodeType":"YulIdentifier","src":"2909:3:1"},"nativeSrc":"2909:20:1","nodeType":"YulFunctionCall","src":"2909:20:1"},"variableNames":[{"name":"power","nativeSrc":"2900:5:1","nodeType":"YulIdentifier","src":"2900:5:1"}]}]},"name":"checked_exp_unsigned","nativeSrc":"2033:902:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"base","nativeSrc":"2063:4:1","nodeType":"YulTypedName","src":"2063:4:1","type":""},{"name":"exponent","nativeSrc":"2069:8:1","nodeType":"YulTypedName","src":"2069:8:1","type":""}],"returnVariables":[{"name":"power","nativeSrc":"2082:5:1","nodeType":"YulTypedName","src":"2082:5:1","type":""}],"src":"2033:902:1"},{"body":{"nativeSrc":"3010:61:1","nodeType":"YulBlock","src":"3010:61:1","statements":[{"nativeSrc":"3020:45:1","nodeType":"YulAssignment","src":"3020:45:1","value":{"arguments":[{"name":"base","nativeSrc":"3050:4:1","nodeType":"YulIdentifier","src":"3050:4:1"},{"name":"exponent","nativeSrc":"3056:8:1","nodeType":"YulIdentifier","src":"3056:8:1"}],"functionName":{"name":"checked_exp_unsigned","nativeSrc":"3029:20:1","nodeType":"YulIdentifier","src":"3029:20:1"},"nativeSrc":"3029:36:1","nodeType":"YulFunctionCall","src":"3029:36:1"},"variableNames":[{"name":"power","nativeSrc":"3020:5:1","nodeType":"YulIdentifier","src":"3020:5:1"}]}]},"name":"checked_exp_t_uint256_t_uint256","nativeSrc":"2940:131:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"base","nativeSrc":"2981:4:1","nodeType":"YulTypedName","src":"2981:4:1","type":""},{"name":"exponent","nativeSrc":"2987:8:1","nodeType":"YulTypedName","src":"2987:8:1","type":""}],"returnVariables":[{"name":"power","nativeSrc":"3000:5:1","nodeType":"YulTypedName","src":"3000:5:1","type":""}],"src":"2940:131:1"}]},"contents":"{\n    { }\n    function validator_revert_contract_IERC20(value)\n    {\n        if iszero(eq(value, and(value, sub(shl(160, 1), 1)))) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_contract$_IERC20_$77t_contract$_IERC20_$77t_uint256t_addresst_addresst_uint128_fromMemory(headStart, dataEnd) -> value0, value1, value2, value3, value4, value5\n    {\n        if slt(sub(dataEnd, headStart), 192) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_contract_IERC20(value)\n        value0 := value\n        let value_1 := mload(add(headStart, 32))\n        validator_revert_contract_IERC20(value_1)\n        value1 := value_1\n        value2 := mload(add(headStart, 64))\n        let value_2 := mload(add(headStart, 96))\n        validator_revert_contract_IERC20(value_2)\n        value3 := value_2\n        let value_3 := mload(add(headStart, 128))\n        validator_revert_contract_IERC20(value_3)\n        value4 := value_3\n        let value_4 := mload(add(headStart, 160))\n        if iszero(eq(value_4, and(value_4, sub(shl(128, 1), 1)))) { revert(0, 0) }\n        value5 := value_4\n    }\n    function panic_error_0x11()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x11)\n        revert(0, 0x24)\n    }\n    function checked_add_t_uint256(x, y) -> sum\n    {\n        sum := add(x, y)\n        if gt(x, sum) { panic_error_0x11() }\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    function checked_exp_helper(_base, exponent, max) -> power, base\n    {\n        power := 1\n        base := _base\n        for { } gt(exponent, 1) { }\n        {\n            if gt(base, div(max, base)) { panic_error_0x11() }\n            if and(exponent, 1) { power := mul(power, base) }\n            base := mul(base, base)\n            exponent := shr(1, exponent)\n        }\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            let _1 := 0\n            _1 := 0\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            let _2 := 0\n            _2 := 0\n            leave\n        }\n        let power_1, base_1 := checked_exp_helper(base, exponent, not(0))\n        if gt(power_1, div(not(0), base_1)) { panic_error_0x11() }\n        power := mul(power_1, base_1)\n    }\n    function checked_exp_t_uint256_t_uint256(base, exponent) -> power\n    {\n        power := checked_exp_unsigned(base, exponent)\n    }\n}","id":1,"language":"Yul","name":"#utility.yul"}],"linkReferences":{},"object":"610160604052600060095534801561001657600080fd5b506040516156363803806156368339810160408190526100359161013c565b858585858585858585858585816001600160801b03821661005681426101db565b608052506001600160a01b0390811660a05295861660c052505091831660e05261010052166101205260016009819055506000866001600160a01b031663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa1580156100c7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906100eb91906101f4565b60ff1690506100fb81600a610305565b610140525061011095505061011f9350505050565b60095550610311945050505050565b600190565b6001600160a01b038116811461013957600080fd5b50565b60008060008060008060c0878903121561015557600080fd5b865161016081610124565b602088015190965061017181610124565b60408801516060890151919650945061018981610124565b608088015190935061019a81610124565b60a08801519092506001600160801b03811681146101b757600080fd5b809150509295509295509295565b634e487b7160e01b600052601160045260246000fd5b808201808211156101ee576101ee6101c5565b92915050565b60006020828403121561020657600080fd5b815160ff8116811461021757600080fd5b9392505050565b6001815b60018411156102595780850481111561023d5761023d6101c5565b600184161561024b57908102905b60019390931c928002610222565b935093915050565b600082610270575060016101ee565b8161027d575060006101ee565b8160018114610293576002811461029d576102b9565b60019150506101ee565b60ff8411156102ae576102ae6101c5565b50506001821b6101ee565b5060208310610133831016604e8410600b84101617156102dc575081810a6101ee565b6102e9600019848461021e565b80600019048211156102fd576102fd6101c5565b029392505050565b60006102178383610261565b60805160a05160c05160e05161010051610120516101405161524d6103e96000396000818161083601528181610e3a0152818161115701526111c8015260008181610a1801526128810152600081816106a4015261251c015260008181610a6d0152818161285f01526130c801526000818161062a01528181610ee30152818161125a01528181611411015281816117ba0152818161273e01528181612e55015261309e015260008181610bea01526119910152600081816109f101528181613e5401528181613e900152613ebd015261524d6000f3fe608060405234801561001057600080fd5b50600436106104965760003560e01c80638c9a281d11610262578063aff05aa911610151578063dbc0ed8a116100ce578063eab5231811610092578063eab5231814610c65578063f036bc6814610c78578063f11b818814610c8c578063f34d96da14610cee578063f713d8a814610cf6578063fde9eb6914610d0957600080fd5b8063dbc0ed8a14610c1f578063dc937e1c14610c27578063dd62ed3e14610c3a578063dde43cba14610c4d578063e6aa216c14610c5457600080fd5b8063c2ffbb9111610115578063c2ffbb9114610bac578063c3863ada14610bbf578063c3cda52014610bd2578063cbcbb50714610be5578063d505accf14610c0c57600080fd5b8063aff05aa914610b4b578063b2a5dbfa14610b53578063b2f4201d14610b66578063b9844d8d14610b79578063c18f539a14610b9957600080fd5b80639a99b4f0116101df578063a9059cbb116101a3578063a9059cbb14610ae3578063aa9fbe0214610af6578063aaf5eb6814610b1d578063ab406fe614610b25578063adc9772e14610b3857600080fd5b80639a99b4f014610a8f5780639c9b515414610aa25780639e3ffce014610ab5578063a457c2d714610abd578063a6b63eb814610ad057600080fd5b8063946776cd11610226578063946776cd14610a13578063955e18af14610a3a57806395d89b4114610a4d578063981b24d014610a5557806399248ea714610a6857600080fd5b80638c9a281d146109325780638dbefee21461093a5780638e9b2ca41461094d5780638ef98e0e1461095c578063919cd40f146109ec57600080fd5b806345755dd6116103895780636f50458d1161030657806374011f56116102ca57806374011f56146108a457806378160376146108b7578063787a08a6146108d75780637b5b1157146108df5780637bb73c97146108f25780637e90d7ef1461091257600080fd5b80636f50458d1461085857806370a082311461086b578063727a5d571461087e57806372b49d631461082957806373d6a8891461089157600080fd5b80635b3cc0cf1161034d5780635b3cc0cf146107925780635c19a95c146107f157806360ba192b14610804578063616e0bf9146108295780636198e1351461083157600080fd5b806345755dd6146107095780634575e69b1461071c5780634998fffd146107455780634cdad5061461075857806358146d171461076b57600080fd5b806323b872dd116104175780633373ee4c116103db5780633373ee4c14610661578063359c4a961461069f5780633644e515146106c657806339509351146106cf57806341cbf54a146106e257600080fd5b806323b872dd146105d8578063250201db146105eb57806330adf81f146105fe578063312f6b8314610625578063313ce5671461064c57600080fd5b8063112d037c1161045e578063112d037c14610582578063174ed5421461059757806318160ddd146105aa5780631e9a6950146105b257806320fb80b5146105c557600080fd5b806302fb4d851461049b57806306fdde03146104c1578063091030c3146104d6578063095ea7b314610534578063111fd88b14610557575b600080fd5b6104ae6104a9366004614902565b610d1c565b6040519081526020015b60405180910390f35b6104c9610f5a565b6040516104b8919061497e565b61050f6104e4366004614991565b603e6020526000908152604090205464ffffffffff811690600160281b90046001600160d81b031682565b6040805164ffffffffff90931683526001600160d81b039091166020830152016104b8565b610547610542366004614902565b610fec565b60405190151581526020016104b8565b61056a6105653660046149ae565b611004565b6040516001600160a01b0390911681526020016104b8565b6105956105903660046149c7565b61101f565b005b60535461056a906001600160a01b031681565b6002546104ae565b6105956105c0366004614902565b611069565b6104ae6105d33660046149c7565b611078565b6105476105e63660046149c7565b6110c9565b6105956105f9366004614991565b6110ed565b6104ae7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c981565b61056a7f000000000000000000000000000000000000000000000000000000000000000081565b60125b60405160ff90911681526020016104b8565b6104ae61066f366004614a08565b6001600160a01b038082166000908152603c60209081526040808320938616835260029093019052205492915050565b6104ae7f000000000000000000000000000000000000000000000000000000000000000081565b6104ae60435481565b6105476106dd366004614902565b611133565b6104ae7f9a9a49b990ba9bb39f8048c490a40ab25c18f55d208d5fbcf958261a9b48716d81565b6105956107173660046149ae565b611155565b61056a61072a3660046149ae565b6000908152604660205260409020546001600160a01b031690565b610595610753366004614991565b6112ba565b6104ae6107663660046149ae565b611324565b61077a670de0b6b3a764000081565b6040516001600160d81b0390911681526020016104b8565b6107d16107a0366004614902565b60066020908152600092835260408084209091529082529020546001600160801b0380821691600160801b90041682565b604080516001600160801b039384168152929091166020830152016104b8565b6105956107ff366004614991565b61134f565b605154600160e01b900463ffffffff1660405163ffffffff90911681526020016104b8565b604f546104ae565b6104ae7f000000000000000000000000000000000000000000000000000000000000000081565b61056a610866366004614a55565b611367565b6104ae610879366004614991565b611389565b6104ae61088c3660046149ae565b6113a4565b61059561089f366004614a9b565b6113c7565b6105956108b23660046149ae565b611480565b6104c9604051806040016040528060018152602001603160f81b81525081565b6105956114c3565b6105956108ed3660046149ae565b6114ce565b6104ae610900366004614991565b60076020526000908152604090205481565b6104ae610920366004614991565b603d6020526000908152604090205481565b6104ae600081565b6104ae610948366004614991565b611541565b6104ae670de0b6b3a764000081565b6109c161096a366004614af5565b60408051808201909152600080825260208201525063ffffffff1660009081526052602090815260409182902082518084019093525464ffffffffff81168352600160281b90046001600160d81b03169082015290565b60408051825164ffffffffff1681526020928301516001600160d81b031692810192909252016104b8565b6104ae7f000000000000000000000000000000000000000000000000000000000000000081565b61056a7f000000000000000000000000000000000000000000000000000000000000000081565b6104ae610a48366004614902565b61161c565b6104c9611629565b6104ae610a633660046149ae565b611638565b61056a7f000000000000000000000000000000000000000000000000000000000000000081565b610595610a9d366004614902565b611643565b610595610ab0366004614b1b565b61164e565b6104ae600181565b610547610acb366004614902565b6116a5565b610595610ade366004614b61565b611720565b610547610af1366004614902565b611838565b6104ae7f10d8d059343739efce7dad10d09f0806da52b252b3e6a7951920d2d6ec4102e581565b61064f601281565b610595610b33366004614bbc565b611846565b610595610b46366004614902565b611909565b610595611914565b610595610b61366004614c51565b611986565b6104ae610b74366004614a55565b611a37565b6104ae610b87366004614991565b60446020526000908152604090205481565b6104ae610ba73660046149c7565b611a5f565b6104ae610bba366004614d47565b611aa6565b60085461056a906001600160a01b031681565b610595610be0366004614a9b565b611acf565b61056a7f000000000000000000000000000000000000000000000000000000000000000081565b610595610c1a366004614d85565b611c94565b6104ae600281565b610595610c35366004614a55565b611e5c565b6104ae610c48366004614a08565b611e67565b60016104ae565b6051546001600160d81b031661077a565b610595610c73366004614df4565b611e92565b60515461054790600160d81b900460ff1681565b610cc8610c9a366004614991565b603c60205260009081526040902080546001909101546001600160801b0380831692600160801b9004169083565b604080516001600160801b039485168152939092166020840152908201526060016104b8565b6050546104ae565b610595610d04366004614e29565b611ea9565b610595610d173660046149ae565b61207d565b6000610d286000611004565b6001600160a01b0316336001600160a01b031614610d615760405162461bcd60e51b8152600401610d5890614e5d565b60405180910390fd5b605154600160d81b900460ff1615610dbb5760405162461bcd60e51b815260206004820152601d60248201527f50524556494f55535f534c415348494e475f4e4f545f534554544c45440000006044820152606401610d58565b60008211610df95760405162461bcd60e51b815260206004820152600b60248201526a16915493d7d05353d5539560aa1b6044820152606401610d58565b6000610e0460025490565b90506000610e1182611324565b90506000610e2a6050548361214e90919063ffffffff16565b905080851115610e38578094505b7f0000000000000000000000000000000000000000000000000000000000000000610e638684614eaa565b1015610ea85760405162461bcd60e51b815260206004820152601460248201527352454d41494e494e475f4c545f4d494e494d554d60601b6044820152606401610d58565b6051805460ff60d81b1916600160d81b179055610ed6610ed1610ecb8785614eaa565b856121da565b612218565b610f0a6001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001687876122bd565b856001600160a01b03167f4ed05e9673c26d2ed44f7ef6a7f2942df0ee3b5e1e17db4b99f9dcd261a339cd86604051610f4591815260200190565b60405180910390a28493505050505b92915050565b606060038054610f6990614ebd565b80601f0160208091040260200160405190810160405280929190818152602001828054610f9590614ebd565b8015610fe25780601f10610fb757610100808354040283529160200191610fe2565b820191906000526020600020905b815481529060010190602001808311610fc557829003601f168201915b5050505050905090565b600033610ffa818585612320565b5060019392505050565b6000908152604560205260409020546001600160a01b031690565b6110296002611004565b6001600160a01b0316336001600160a01b0316146110595760405162461bcd60e51b8152600401610d5890614ef7565b611064838383612444565b505050565b611074338383612444565b5050565b60006110846002611004565b6001600160a01b0316336001600160a01b0316146110b45760405162461bcd60e51b8152600401610d5890614ef7565b6110bf8484846127c5565b90505b9392505050565b6000336110d78582856128fd565b6110e2858585612971565b506001949350505050565b6110f76002611004565b6001600160a01b0316336001600160a01b0316146111275760405162461bcd60e51b8152600401610d5890614ef7565b61113081612aa2565b50565b600033610ffa8185856111468383611e67565b6111509190614f2e565b612320565b7f00000000000000000000000000000000000000000000000000000000000000008110156111b95760405162461bcd60e51b8152602060048201526011602482015270414d4f554e545f4c545f4d494e494d554d60781b6044820152606401610d58565b60006111c460025490565b90507f000000000000000000000000000000000000000000000000000000000000000081101561122a5760405162461bcd60e51b81526020600482015260116024820152705348415245535f4c545f4d494e494d554d60781b6044820152606401610d58565b600061123582611324565b905061124d610ed16112478584614f2e565b846121da565b6112826001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016333086612b85565b6040518381527f278e51d3323fbf18b9fb8df3f8b97e31b145bc1146c52e764cf4aa1bfc4ba17d9060200160405180910390a1505050565b73ee56e2b3d491590b5b31738cc34d5232f378a8d533146112da57600080fd5b605380546001600160a01b0319166001600160a01b0383169081179091556040517f62bbced765bccc9ed93d0bae1b2a8c86e13b4663f8bf27d5936d9d619194c8a990600090a250565b6051546000906001600160d81b031661134583670de0b6b3a7640000614f41565b610f549190614f58565b61135b33826000612bbd565b61113033826001612bbd565b60008061137383612cbe565b925050506113818482612cfd565b949350505050565b6001600160a01b031660009081526020819052604090205490565b605154600090670de0b6b3a764000090611345906001600160d81b031684614f41565b60405163d505accf60e01b81526001600160a01b038781166004830152306024830152604482018790526064820186905260ff8516608483015260a4820184905260c482018390527f0000000000000000000000000000000000000000000000000000000000000000169063d505accf9060e401600060405180830381600087803b15801561145557600080fd5b505af1158015611469573d6000803e3d6000fd5b50505050611478868787612d28565b505050505050565b61148a6000611004565b6001600160a01b0316336001600160a01b0316146114ba5760405162461bcd60e51b8152600401610d5890614e5d565b61113081612ed5565b6114cc33612aa2565b565b6114d86001611004565b6001600160a01b0316336001600160a01b0316146115385760405162461bcd60e51b815260206004820152601960248201527f43414c4c45525f4e4f545f434f4f4c444f574e5f41444d494e000000000000006044820152606401610d58565b61113081612f62565b604080516001808252818301909252600091829190816020015b611588604051806060016040528060006001600160a01b0316815260200160008152602001600081525090565b81526020019060019003908161155b5790505090506040518060600160405280306001600160a01b031681526020016115c085611389565b81526020016115ce60025490565b815250816000815181106115e4576115e4614f7a565b60200260200101819052506115f98382612f97565b6001600160a01b0384166000908152603d60205260409020546110c29190614f2e565b60006110c233848461309a565b606060048054610f6990614ebd565b6000610f5460025490565b6110643383836127c5565b6116586002611004565b6001600160a01b0316336001600160a01b0316146116885760405162461bcd60e51b8152600401610d5890614ef7565b6116938484846127c5565b5061169f848483612444565b50505050565b600033816116b38286611e67565b9050838110156117135760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610d58565b6110e28286868403612320565b600954600190811161178b5760405162461bcd60e51b815260206004820152602e60248201527f436f6e747261637420696e7374616e63652068617320616c726561647920626560448201526d195b881a5b9a5d1a585b1a5e995960921b6064820152608401610d58565b600981905561179d8686868686613185565b60405163095ea7b360e01b815230600482015260001960248201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063095ea7b3906044016020604051808303816000875af115801561180b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061182f9190614f90565b50505050505050565b600033610ffa818585612971565b60008281526045602052604090205482906001600160a01b031633146118a65760405162461bcd60e51b815260206004820152601560248201527421a0a62622a92fa727aa2fa927a622afa0a226a4a760591b6044820152606401610d58565b60008381526046602090815260409182902080546001600160a01b0319166001600160a01b03861690811790915591518581527fc3d1bf52795a20771ee6de3e59948fd83e10db956122d4709a3b86c512963855910160405180910390a2505050565b611074338383612d28565b61191e6000611004565b6001600160a01b0316336001600160a01b03161461194e5760405162461bcd60e51b8152600401610d5890614e5d565b6051805460ff60d81b191690556040517fcdee157e87ba915be681d4fa3f3d511afe7348eca06448a3accd6ac227fa40af90600090a1565b336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146119f65760405162461bcd60e51b815260206004820152601560248201527427a7262cafa2a6a4a9a9a4a7a72fa6a0a720a3a2a960591b6044820152606401610d58565b60005b8151811015611a2d57600254828281518110611a1757611a17614f7a565b60209081029190910181015101526001016119f9565b50611130816132a9565b6000806000611a4584612cbe565b5091509150611a568282874361340d565b95945050505050565b6000611a6b6002611004565b6001600160a01b0316336001600160a01b031614611a9b5760405162461bcd60e51b8152600401610d5890614ef7565b6110bf84848461309a565b6000806000611ab484612cbe565b5091509150611ac58282888861340d565b9695505050505050565b604080517f9a9a49b990ba9bb39f8048c490a40ab25c18f55d208d5fbcf958261a9b48716d60208201526001600160a01b03881691810191909152606081018690526080810185905260009060a001604051602081830303815290604052805190602001209050600060435482604051602001611b4d929190614fb2565b60408051601f198184030181528282528051602091820120600080855291840180845281905260ff89169284019290925260608301879052608083018690529092509060019060a0016020604051602081039080840390855afa158015611bb8573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116611beb5760405162461bcd60e51b8152600401610d5890614fcd565b6001600160a01b0381166000908152604460205260408120805491611c0f83614ff8565b919050558814611c515760405162461bcd60e51b815260206004820152600d60248201526c494e56414c49445f4e4f4e434560981b6044820152606401610d58565b86421115611c715760405162461bcd60e51b8152600401610d5890615011565b611c7d818a6000612bbd565b611c89818a6001612bbd565b505050505050505050565b6001600160a01b038716611cda5760405162461bcd60e51b815260206004820152600d60248201526c24a72b20a624a22fa7aba722a960991b6044820152606401610d58565b83421115611cfa5760405162461bcd60e51b8152600401610d5890615011565b6001600160a01b0387811660008181526044602090815260408083205460435482517f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98186015280840196909652958c166060860152608085018b905260a0850181905260c08086018b90528251808703909101815260e086019092528151919092012090939192611d9192919061010001614fb2565b60408051601f1981840301815282825280516020918201206000845290830180835281905260ff8816918301919091526060820186905260808201859052915060019060a0016020604051602081039080840390855afa158015611df9573d6000803e3d6000fd5b505050602060405103516001600160a01b0316896001600160a01b031614611e335760405162461bcd60e51b8152600401610d5890614fcd565b6001600160a01b0389166000908152604460205260409020600183019055611c89898989612320565b611074338383612bbd565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b611e9d3384846127c5565b50611064338483612444565b60007f10d8d059343739efce7dad10d09f0806da52b252b3e6a7951920d2d6ec4102e588886001811115611edf57611edf61503d565b6040805160208101949094526001600160a01b039092169183019190915260608201526080810187905260a0810186905260c001604051602081830303815290604052805190602001209050600060435482604051602001611f42929190614fb2565b60408051601f198184030181528282528051602091820120600080855291840180845281905260ff89169284019290925260608301879052608083018690529092509060019060a0016020604051602081039080840390855afa158015611fad573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116611fe05760405162461bcd60e51b8152600401610d5890614fcd565b6001600160a01b038116600090815260446020526040812080549161200483614ff8565b9190505588146120465760405162461bcd60e51b815260206004820152600d60248201526c494e56414c49445f4e4f4e434560981b6044820152606401610d58565b864211156120665760405162461bcd60e51b8152600401610d5890615011565b612071818b8b612bbd565b50505050505050505050565b60008181526046602052604090205481906001600160a01b031633146120e55760405162461bcd60e51b815260206004820152601d60248201527f43414c4c45525f4e4f545f50454e44494e475f524f4c455f41444d494e0000006044820152606401610d58565b60008281526045602090815260408083208054336001600160a01b0319918216811790925560468452938290208054909416909355518481527f83a9ddad961dcb7c6894c9585a16ff7792c2ec8281256a3cc7303ae830152dcf91015b60405180910390a25050565b600082158061215b575081155b1561216857506000610f54565b61217482600019614f58565b8311156121c35760405162461bcd60e51b815260206004820152601c60248201527f4d4154485f4d554c5449504c49434154494f4e5f4f564552464c4f57000000006044820152606401610d58565b6127106121d08385614f41565b6110c29190614f58565b60006110c2836001816121f5670de0b6b3a764000087614f41565b6121ff9190614f2e565b6122099190614eaa565b6122139190614f58565b613456565b604051806040016040528061222c436134c3565b64ffffffffff90811682526001600160d81b038085166020938401526051805463ffffffff600160e01b9182900481166000908152605287526040902087519790960151909316600160281b0295909316949094179092558254601c926122969290910416615053565b91906101000a81548163ffffffff021916908363ffffffff16021790555061113081613529565b6040516001600160a01b03831660248201526044810182905261106490849063a9059cbb60e01b906064015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b0319909316929092179091526135c5565b6001600160a01b0383166123825760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610d58565b6001600160a01b0382166123e35760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610d58565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b806000036124645760405162461bcd60e51b8152600401610d5890615078565b6001600160a01b0383166000908152603e602090815260409182902082518084019093525464ffffffffff81168352600160281b90046001600160d81b031690820152605154600160d81b900460ff166125a457604f5481516124ce919064ffffffffff16614f2e565b4210156125155760405162461bcd60e51b815260206004820152601560248201527424a729aaa32324a1a4a2a72a2fa1a7a7a62227aba760591b6044820152606401610d58565b604f5481517f00000000000000000000000000000000000000000000000000000000000000009161254c9164ffffffffff16614f2e565b6125569042614eaa565b11156125a45760405162461bcd60e51b815260206004820152601760248201527f554e5354414b455f57494e444f575f46494e49534845440000000000000000006044820152606401610d58565b60006125af85611389565b605154909150600090600160d81b900460ff166125d95782602001516001600160d81b03166125db565b815b90508060000361262d5760405162461bcd60e51b815260206004820152601b60248201527f494e56414c49445f5a45524f5f4d41585f52454445454d41424c4500000000006044820152606401610d58565b600081851161263c578461263e565b815b905061264c87846001613697565b50600061265882611324565b90506126648883613746565b845164ffffffffff1615612731578185602001516001600160d81b031661268b9190614eaa565b6000036126b0576001600160a01b0388166000908152603e6020526040812055612731565b6126b982613884565b6001600160a01b0389166000908152603e60205260409020546126f5916001600160b81b031690600160281b90046001600160d81b03166150a5565b6001600160a01b0389166000908152603e6020526040902080546001600160d81b0392909216600160281b0264ffffffffff9092169190911790555b6127656001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001688836122bd565b866001600160a01b0316886001600160a01b03167f3f693fff038bb8a046aa76d9516190ac7444f7d69cf952c4cbdc086fdef2d6fc83856040516127b3929190918252602082015260400190565b60405180910390a35050505050505050565b6000816000036127e75760405162461bcd60e51b8152600401610d5890615078565b60006127fd856127f687611389565b6000613697565b9050600081841161280e5783612810565b815b9050806000036128325760405162461bcd60e51b8152600401610d5890615078565b61283c8183614eaa565b6001600160a01b038088166000908152603d60205260409020919091556128a7907f0000000000000000000000000000000000000000000000000000000000000000167f00000000000000000000000000000000000000000000000000000000000000008784612b85565b846001600160a01b0316866001600160a01b03167f9310ccfcb8de723f578a9e4282ea9f521f05ae40dc08f3068dfad528a65ee3c7836040516128ec91815260200190565b60405180910390a395945050505050565b60006129098484611e67565b9050600019811461169f57818110156129645760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610d58565b61169f8484848403612320565b600061297c84611389565b905061298a84826001613697565b50826001600160a01b0316846001600160a01b031614612a975760006129af84611389565b90506129bd84826001613697565b506001600160a01b0385166000908152603e602090815260409182902082518084019093525464ffffffffff8116808452600160281b9091046001600160d81b03169183019190915215612a9457838303612a30576001600160a01b0386166000908152603e6020526040812055612a94565b60208101516001600160d81b0316612a488585614eaa565b1015612a9457612a588484614eaa565b6001600160a01b0387166000908152603e6020526040902080546001600160d81b0392909216600160281b0264ffffffffff9092169190911790555b50505b61169f8484846138ed565b6000612aad82611389565b905080600003612aff5760405162461bcd60e51b815260206004820152601b60248201527f494e56414c49445f42414c414e43455f4f4e5f434f4f4c444f574e00000000006044820152606401610d58565b60408051808201825264ffffffffff42811682526001600160d81b0380851660208085019182526001600160a01b0388166000818152603e9092529086902094519151909216600160281b0292169190911790915590517f8a05f911d8ab7fc50fec37ef4ba7f9bfcb1a3c191c81dcd824ad0946c4e20d65906121429084815260200190565b6040516001600160a01b038085166024830152831660448201526064810182905261169f9085906323b872dd60e01b906084016122e9565b6001600160a01b038216612c075760405162461bcd60e51b8152602060048201526011602482015270494e56414c49445f44454c45474154454560781b6044820152606401610d58565b6000612c1282612cbe565b925050506000612c2185611389565b90506000612c2f8684612cfd565b6001600160a01b03878116600090815260208690526040902080546001600160a01b0319169188169190911790559050612c6b81868487613a9c565b846001600160a01b0316866001600160a01b03167fe8d51c8e11bd570db1734c8ec775785330e77007feed45c43b608ef33ff914bd86604051612cae91906150e6565b60405180910390a3505050505050565b6000808080846001811115612cd557612cd561503d565b03612cea57506006915060079050603f612cf6565b50604091506041905060425b9193909250565b6001600160a01b03808316600090815260208390526040812054909116806110c25783915050610f54565b605154600160d81b900460ff1615612d755760405162461bcd60e51b815260206004820152601060248201526f534c415348494e475f4f4e474f494e4760801b6044820152606401610d58565b80600003612d955760405162461bcd60e51b8152600401610d5890615078565b6000612da083611389565b90506000612db8843084612db360025490565b613ca0565b90508015612e3b576001600160a01b0384166000908152603d6020526040902054612de4908290614f2e565b6001600160a01b0385166000818152603d60209081526040918290209390935580519182529181018390527f2468f9268c60ad90e2d49edb0032c8a001e733ae888b3ab8e982edf535be1a76910160405180910390a15b6000612e46846113a4565b9050612e7d6001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016873087612b85565b612e878582613d61565b846001600160a01b0316866001600160a01b03167f6c86f3fd5118b3aa8bb4f389a617046de0a3d3d477de1a1673d227f802f616dc8684604051612cae929190918252602082015260400190565b6127108110612f265760405162461bcd60e51b815260206004820152601b60248201527f494e56414c49445f534c415348494e475f50455243454e5441474500000000006044820152606401610d58565b60508190556040518181527fb79c2d6c7f5c95eec9dc05affc0ed002620a4ec6d72b7b0744cc8638168c600a906020015b60405180910390a150565b604f8190556040518181527fbbf67247b5c97564e30ffc0a355e71c006836de7b9149e09e3d5d6054cb0335590602001612f57565b600080805b8351811015613092576000603c6000868481518110612fbd57612fbd614f7a565b602090810291909101810151516001600160a01b03168252810191909152604001600090812060018101548154885192945061302b926001600160801b0380831692600160801b900416908a908890811061301a5761301a614f7a565b602002602001015160400151613e2c565b905061307c86848151811061304257613042614f7a565b602002602001015160200151828460020160008b6001600160a01b03166001600160a01b0316815260200190815260200160002054613f37565b6130869085614f2e565b93505050600101612f9c565b509392505050565b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03167f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03161461313d5760405162461bcd60e51b815260206004820181905260248201527f5245574152445f544f4b454e5f49535f4e4f545f5354414b45445f544f4b454e6044820152606401610d58565b60006131538561314c87611389565b6001613697565b905060008184116131645783613166565b815b90508015611a56576131798630836127c5565b50611a56308683612d28565b60408051600380825260808201909252600091816020015b604080518082019091526000808252602082015281526020019060019003908161319d579050509050604051806040016040528060008152602001876001600160a01b0316815250816000815181106131f8576131f8614f7a565b6020026020010181905250604051806040016040528060018152602001866001600160a01b03168152508160018151811061323557613235614f7a565b6020026020010181905250604051806040016040528060028152602001856001600160a01b03168152508160028151811061327257613272614f7a565b602002602001018190525061328681613f63565b61328f83612ed5565b61329882612f62565b611478670de0b6b3a7640000612218565b60005b8151811015611074576000603c60008484815181106132cd576132cd614f7a565b6020026020010151604001516001600160a01b03166001600160a01b03168152602001908152602001600020905061334083838151811061331057613310614f7a565b6020026020010151604001518285858151811061332f5761332f614f7a565b602002602001015160200151614135565b5082828151811061335357613353614f7a565b60209081029190910101515181546fffffffffffffffffffffffffffffffff19166001600160801b03909116178155825183908390811061339657613396614f7a565b6020026020010151604001516001600160a01b03167f87fa03892a0556cb6b8f97e6d533a150d4d55fcbf275fff5fa003fa636bcc7fa8484815181106133de576133de614f7a565b602090810291909101810151516040516001600160801b0390911681520160405180910390a2506001016132ac565b60515460009061342d90605290600160e01b900463ffffffff16846141ed565b670de0b6b3a7640000613442878787876142fa565b61344c9190614f41565b611a569190614f58565b60006001600160d81b038211156134bf5760405162461bcd60e51b815260206004820152602760248201527f53616665436173743a2076616c756520646f65736e27742066697420696e20326044820152663136206269747360c81b6064820152608401610d58565b5090565b600064ffffffffff8211156134bf5760405162461bcd60e51b815260206004820152602660248201527f53616665436173743a2076616c756520646f65736e27742066697420696e203460448201526530206269747360d01b6064820152608401610d58565b806001600160d81b03166000036135775760405162461bcd60e51b81526020600482015260126024820152715a45524f5f45584348414e47455f5241544560701b6044820152606401610d58565b605180546001600160d81b0319166001600160d81b0383169081179091556040519081527fa9c433f9734baa3cf48b209454bb0ace054e191f677ba50e74b696c0d35ef26290602001612f57565b600061361a826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166143d49092919063ffffffff16565b80519091501561106457808060200190518101906136389190614f90565b6110645760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610d58565b6000806136a9853086612db360025490565b6001600160a01b0386166000908152603d6020526040812054919250906136d1908390614f2e565b90508115611a565783156136fb576001600160a01b0386166000908152603d602052604090208190555b604080516001600160a01b0388168152602081018490527f2468f9268c60ad90e2d49edb0032c8a001e733ae888b3ab8e982edf535be1a76910160405180910390a195945050505050565b6001600160a01b0382166137a65760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610d58565b6137b2826000836143e3565b6001600160a01b038216600090815260208190526040902054818110156138265760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610d58565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b60006001600160b81b038211156134bf5760405162461bcd60e51b815260206004820152602760248201527f53616665436173743a2076616c756520646f65736e27742066697420696e20316044820152663834206269747360c81b6064820152608401610d58565b6001600160a01b0383166139515760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610d58565b6001600160a01b0382166139b35760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610d58565b6139be8383836143e3565b6001600160a01b03831660009081526020819052604090205481811015613a365760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610d58565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a361169f565b826001600160a01b0316846001600160a01b0316031561169f57600080613ac283612cbe565b5090925090506001600160a01b03861615613bb3576001600160a01b0386166000908152602082905260408120548015613b42576001600160a01b038816600090815260208590526040812090613b1a600184614eaa565b8152602081019190915260400160002054600160801b90046001600160801b03169150613b4e565b613b4b88611389565b91505b613b6484848a85613b5f8b82614eaa565b614562565b6001600160a01b0388167fa0a19463ee116110c9b282012d9b65cc5522dc38a9520340cbaf3142e550127f613b998885614eaa565b87604051613ba89291906150f4565b60405180910390a250505b6001600160a01b03851615611478576001600160a01b0385166000908152602082905260408120548015613c2d576001600160a01b038716600090815260208590526040812090613c05600184614eaa565b8152602081019190915260400160002054600160801b90046001600160801b03169150613c39565b613c3687611389565b91505b613c4a84848985613b5f8b82614f2e565b6001600160a01b0387167fa0a19463ee116110c9b282012d9b65cc5522dc38a9520340cbaf3142e550127f613c7f8885614f2e565b87604051613c8e9291906150f4565b60405180910390a25050505050505050565b6001600160a01b038084166000908152603c602090815260408083209388168352600284019091528120549091908280613cdb888588614135565b9050808314613d55578615613cf857613cf5878285613f37565b91505b6001600160a01b03808a1660008181526002870160205260409081902084905551918a16917fbb123b5c06d5408bbea3c4fef481578175cfb432e3b482c6186f02ed9086585b90613d4c9085815260200190565b60405180910390a35b50979650505050505050565b6001600160a01b038216613db75760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610d58565b613dc3600083836143e3565b8060026000828254613dd59190614f2e565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6000831580613e39575081155b80613e4c575042836001600160801b0316145b80613e8057507f0000000000000000000000000000000000000000000000000000000000000000836001600160801b031610155b15613e8c575083611381565b60007f00000000000000000000000000000000000000000000000000000000000000004211613ebb5742613edd565b7f00000000000000000000000000000000000000000000000000000000000000005b90506000613ef46001600160801b03861683614eaa565b90508684613f046012600a6151ef565b613f0e848a614f41565b613f189190614f41565b613f229190614f58565b613f2c9190614f2e565b979650505050505050565b6000613f456012600a6151ef565b613f4f8385614eaa565b613f599086614f41565b6110bf9190614f58565b60005b81518110156110745760006001600160a01b031660456000848481518110613f9057613f90614f7a565b602090810291909101810151518252810191909152604001600020546001600160a01b0316148015613ff2575060006001600160a01b0316828281518110613fda57613fda614f7a565b6020026020010151602001516001600160a01b031614155b61403e5760405162461bcd60e51b815260206004820152601b60248201527f41444d494e5f43414e4e4f545f42455f494e495449414c495a454400000000006044820152606401610d58565b81818151811061405057614050614f7a565b6020026020010151602001516045600084848151811061407257614072614f7a565b602002602001015160000151815260200190815260200160002060006101000a8154816001600160a01b0302191690836001600160a01b031602179055508181815181106140c2576140c2614f7a565b6020026020010151602001516001600160a01b03167f83a9ddad961dcb7c6894c9585a16ff7792c2ec8281256a3cc7303ae830152dcf83838151811061410a5761410a614f7a565b60200260200101516000015160405161412591815260200190565b60405180910390a2600101613f66565b6001820154825460009190600160801b90046001600160801b031642819003614160575090506110c2565b845460009061417b9084906001600160801b03168488613e2c565b90508281146141ca57600186018190556040518181526001600160a01b038816907f5777ca300dfe5bead41006fbce4389794dbc0ed8d6cccebfaf94630aa04184bc9060200160405180910390a25b85546001600160801b03428116600160801b029116178655925050509392505050565b600019820160009081526020849052604081205464ffffffffff16821061423857506000198201600090815260208490526040902054600160281b90046001600160d81b03166110c2565b600060001984015b818111156142d15760028282030481036000818152602088815260409182902082518084019093525464ffffffffff8116808452600160281b9091046001600160d81b0316918301919091528690036142ab57602001516001600160d81b031693506110c292505050565b805164ffffffffff168611156142c3578193506142ca565b6001820392505b5050614240565b5060009081526020949094525050604090912054600160281b90046001600160d81b0316919050565b6000438211156143435760405162461bcd60e51b815260206004820152601460248201527324a72b20a624a22fa12627a1a5afa72aa6a122a960611b6044820152606401610d58565b6001600160a01b038316600090815260208590526040812054908190036143755761436d84611389565b915050611381565b6001600160a01b0384166000908152602087815260408083208380529091529020546001600160801b03168310156143b1576000915050611381565b6001600160a01b0384166000908152602087905260409020611ac5908285614678565b60606110bf8484600085614784565b6053546001600160a01b031680156144ba57806001600160a01b0316635b9c4cf1858561440f88611389565b61441888611389565b6040516001600160e01b031960e087901b1681526001600160a01b039485166004820152939092166024840152604483015260648201526084810185905260a401600060405180830381600087803b15801561447357600080fd5b505af1925050508015614484575060015b6144ba573d8080156144b2576040519150601f19603f3d011682016040523d82523d6000602084013e6144b7565b606091505b50505b6001600160a01b038085166000908152603f60205260408082205486841683529120549082169116816144eb578591505b6001600160a01b0381166144fc5750835b6145098282866000613a9c565b6001600160a01b0380871660009081526042602052604080822054888416835291205490821691168161453a578791505b6001600160a01b03811661454b5750855b6145588282886001613a9c565b5050505050505050565b6001600160a01b038316600090815260208581526040808320549188905290912043919081158015906145c457506001600160801b0383168160006145a8600186614eaa565b81526020810191909152604001600020546001600160801b0316145b1561460857838160006145d8600186614eaa565b8152602081019190915260400160002080546001600160801b03928316600160801b029216919091179055614558565b6040805180820182526001600160801b038086168252868116602080840191825260008781529086905293909320915192518116600160801b029216919091179055614655826001614f2e565b6001600160a01b0387166000908152602089905260409020555050505050505050565b60001982016000908152602084905260408120546001600160801b031682106146c557506000198201600090815260208490526040902054600160801b90046001600160801b03166110c2565b600060001984015b8181111561475b576002828203048103600081815260208881526040918290208251808401909352546001600160801b03808216808552600160801b909204169183019190915286900361473357602001516001600160801b031693506110c292505050565b80516001600160801b031686111561474d57819350614754565b6001820392505b50506146cd565b5060009081526020949094525050604090912054600160801b90046001600160801b0316919050565b6060824710156147e55760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610d58565b600080866001600160a01b0316858760405161480191906151fb565b60006040518083038185875af1925050503d806000811461483e576040519150601f19603f3d011682016040523d82523d6000602084013e614843565b606091505b5091509150613f2c87838387606083156148be5782516000036148b7576001600160a01b0385163b6148b75760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610d58565b5081611381565b61138183838151156148d35781518083602001fd5b8060405162461bcd60e51b8152600401610d58919061497e565b6001600160a01b038116811461113057600080fd5b6000806040838503121561491557600080fd5b8235614920816148ed565b946020939093013593505050565b60005b83811015614949578181015183820152602001614931565b50506000910152565b6000815180845261496a81602086016020860161492e565b601f01601f19169290920160200192915050565b6020815260006110c26020830184614952565b6000602082840312156149a357600080fd5b81356110c2816148ed565b6000602082840312156149c057600080fd5b5035919050565b6000806000606084860312156149dc57600080fd5b83356149e7816148ed565b925060208401356149f7816148ed565b929592945050506040919091013590565b60008060408385031215614a1b57600080fd5b8235614a26816148ed565b91506020830135614a36816148ed565b809150509250929050565b803560028110614a5057600080fd5b919050565b60008060408385031215614a6857600080fd5b8235614a73816148ed565b9150614a8160208401614a41565b90509250929050565b803560ff81168114614a5057600080fd5b60008060008060008060c08789031215614ab457600080fd5b8635614abf816148ed565b95506020870135945060408701359350614adb60608801614a8a565b9598949750929560808101359460a0909101359350915050565b600060208284031215614b0757600080fd5b813563ffffffff811681146110c257600080fd5b60008060008060808587031215614b3157600080fd5b8435614b3c816148ed565b93506020850135614b4c816148ed565b93969395505050506040820135916060013590565b600080600080600060a08688031215614b7957600080fd5b8535614b84816148ed565b94506020860135614b94816148ed565b93506040860135614ba4816148ed565b94979396509394606081013594506080013592915050565b60008060408385031215614bcf57600080fd5b823591506020830135614a36816148ed565b634e487b7160e01b600052604160045260246000fd5b6040516060810167ffffffffffffffff81118282101715614c1a57614c1a614be1565b60405290565b604051601f8201601f1916810167ffffffffffffffff81118282101715614c4957614c49614be1565b604052919050565b600060208284031215614c6357600080fd5b813567ffffffffffffffff811115614c7a57600080fd5b8201601f81018413614c8b57600080fd5b803567ffffffffffffffff811115614ca557614ca5614be1565b614cb460208260051b01614c20565b80828252602082019150602060608402850101925086831115614cd657600080fd5b6020840193505b82841015611ac55760608488031215614cf557600080fd5b614cfd614bf7565b84356001600160801b0381168114614d1457600080fd5b8152602085810135908201526040850135614d2e816148ed565b6040820152825260609390930192602090910190614cdd565b600080600060608486031215614d5c57600080fd5b8335614d67816148ed565b925060208401359150614d7c60408501614a41565b90509250925092565b600080600080600080600060e0888a031215614da057600080fd5b8735614dab816148ed565b96506020880135614dbb816148ed565b95506040880135945060608801359350614dd760808901614a8a565b9699959850939692959460a0840135945060c09093013592915050565b600080600060608486031215614e0957600080fd5b8335614e14816148ed565b95602085013595506040909401359392505050565b600080600080600080600060e0888a031215614e4457600080fd5b8735614e4f816148ed565b9650614dbb60208901614a41565b60208082526019908201527f43414c4c45525f4e4f545f534c415348494e475f41444d494e00000000000000604082015260600190565b634e487b7160e01b600052601160045260246000fd5b81810381811115610f5457610f54614e94565b600181811c90821680614ed157607f821691505b602082108103614ef157634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526017908201527f43414c4c45525f4e4f545f434c41494d5f48454c504552000000000000000000604082015260600190565b80820180821115610f5457610f54614e94565b8082028115828204841417610f5457610f54614e94565b600082614f7557634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b600060208284031215614fa257600080fd5b815180151581146110c257600080fd5b61190160f01b81526002810192909252602282015260420190565b602080825260119082015270494e56414c49445f5349474e415455524560781b604082015260600190565b60006001820161500a5761500a614e94565b5060010190565b60208082526012908201527124a72b20a624a22fa2ac2824a920aa24a7a760711b604082015260600190565b634e487b7160e01b600052602160045260246000fd5b600063ffffffff821663ffffffff810361506f5761506f614e94565b60010192915050565b6020808252601390820152721253959053125117d6915493d7d05353d55395606a1b604082015260600190565b6001600160d81b038281168282160390811115610f5457610f54614e94565b600281106150e257634e487b7160e01b600052602160045260246000fd5b9052565b60208101610f5482846150c4565b828152604081016110c260208301846150c4565b6001815b60018411156151435780850481111561512757615127614e94565b600184161561513557908102905b60019390931c92800261510c565b935093915050565b60008261515a57506001610f54565b8161516757506000610f54565b816001811461517d5760028114615187576151a3565b6001915050610f54565b60ff84111561519857615198614e94565b50506001821b610f54565b5060208310610133831016604e8410600b84101617156151c6575081810a610f54565b6151d36000198484615108565b80600019048211156151e7576151e7614e94565b029392505050565b60006110c2838361514b565b6000825161520d81846020870161492e565b919091019291505056fea264697066735822122034cb0950b0d49118bd53c46f37b2848f71bf75bb2f312219565b1a1d7a6efc1664736f6c634300081b0033","opcodes":"PUSH2 0x160 PUSH1 0x40 MSTORE PUSH1 0x0 PUSH1 0x9 SSTORE CALLVALUE DUP1 ISZERO PUSH2 0x16 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH2 0x5636 CODESIZE SUB DUP1 PUSH2 0x5636 DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH2 0x35 SWAP2 PUSH2 0x13C JUMP JUMPDEST DUP6 DUP6 DUP6 DUP6 DUP6 DUP6 DUP6 DUP6 DUP6 DUP6 DUP6 DUP6 DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB DUP3 AND PUSH2 0x56 DUP2 TIMESTAMP PUSH2 0x1DB JUMP JUMPDEST PUSH1 0x80 MSTORE POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 DUP2 AND PUSH1 0xA0 MSTORE SWAP6 DUP7 AND PUSH1 0xC0 MSTORE POP POP SWAP2 DUP4 AND PUSH1 0xE0 MSTORE PUSH2 0x100 MSTORE AND PUSH2 0x120 MSTORE PUSH1 0x1 PUSH1 0x9 DUP2 SWAP1 SSTORE POP PUSH1 0x0 DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x313CE567 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 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xC7 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 0xEB SWAP2 SWAP1 PUSH2 0x1F4 JUMP JUMPDEST PUSH1 0xFF AND SWAP1 POP PUSH2 0xFB DUP2 PUSH1 0xA PUSH2 0x305 JUMP JUMPDEST PUSH2 0x140 MSTORE POP PUSH2 0x110 SWAP6 POP POP PUSH2 0x11F SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x9 SSTORE POP PUSH2 0x311 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x139 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0xC0 DUP8 DUP10 SUB SLT ISZERO PUSH2 0x155 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP7 MLOAD PUSH2 0x160 DUP2 PUSH2 0x124 JUMP JUMPDEST PUSH1 0x20 DUP9 ADD MLOAD SWAP1 SWAP7 POP PUSH2 0x171 DUP2 PUSH2 0x124 JUMP JUMPDEST PUSH1 0x40 DUP9 ADD MLOAD PUSH1 0x60 DUP10 ADD MLOAD SWAP2 SWAP7 POP SWAP5 POP PUSH2 0x189 DUP2 PUSH2 0x124 JUMP JUMPDEST PUSH1 0x80 DUP9 ADD MLOAD SWAP1 SWAP4 POP PUSH2 0x19A DUP2 PUSH2 0x124 JUMP JUMPDEST PUSH1 0xA0 DUP9 ADD MLOAD SWAP1 SWAP3 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x1B7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP3 SWAP6 POP SWAP3 SWAP6 POP SWAP3 SWAP6 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST DUP1 DUP3 ADD DUP1 DUP3 GT ISZERO PUSH2 0x1EE JUMPI PUSH2 0x1EE PUSH2 0x1C5 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x206 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH1 0xFF DUP2 AND DUP2 EQ PUSH2 0x217 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x1 DUP2 JUMPDEST PUSH1 0x1 DUP5 GT ISZERO PUSH2 0x259 JUMPI DUP1 DUP6 DIV DUP2 GT ISZERO PUSH2 0x23D JUMPI PUSH2 0x23D PUSH2 0x1C5 JUMP JUMPDEST PUSH1 0x1 DUP5 AND ISZERO PUSH2 0x24B JUMPI SWAP1 DUP2 MUL SWAP1 JUMPDEST PUSH1 0x1 SWAP4 SWAP1 SWAP4 SHR SWAP3 DUP1 MUL PUSH2 0x222 JUMP JUMPDEST SWAP4 POP SWAP4 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x270 JUMPI POP PUSH1 0x1 PUSH2 0x1EE JUMP JUMPDEST DUP2 PUSH2 0x27D JUMPI POP PUSH1 0x0 PUSH2 0x1EE JUMP JUMPDEST DUP2 PUSH1 0x1 DUP2 EQ PUSH2 0x293 JUMPI PUSH1 0x2 DUP2 EQ PUSH2 0x29D JUMPI PUSH2 0x2B9 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP PUSH2 0x1EE JUMP JUMPDEST PUSH1 0xFF DUP5 GT ISZERO PUSH2 0x2AE JUMPI PUSH2 0x2AE PUSH2 0x1C5 JUMP JUMPDEST POP POP PUSH1 0x1 DUP3 SHL PUSH2 0x1EE JUMP JUMPDEST POP PUSH1 0x20 DUP4 LT PUSH2 0x133 DUP4 LT AND PUSH1 0x4E DUP5 LT PUSH1 0xB DUP5 LT AND OR ISZERO PUSH2 0x2DC JUMPI POP DUP2 DUP2 EXP PUSH2 0x1EE JUMP JUMPDEST PUSH2 0x2E9 PUSH1 0x0 NOT DUP5 DUP5 PUSH2 0x21E JUMP JUMPDEST DUP1 PUSH1 0x0 NOT DIV DUP3 GT ISZERO PUSH2 0x2FD JUMPI PUSH2 0x2FD PUSH2 0x1C5 JUMP JUMPDEST MUL SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x217 DUP4 DUP4 PUSH2 0x261 JUMP JUMPDEST PUSH1 0x80 MLOAD PUSH1 0xA0 MLOAD PUSH1 0xC0 MLOAD PUSH1 0xE0 MLOAD PUSH2 0x100 MLOAD PUSH2 0x120 MLOAD PUSH2 0x140 MLOAD PUSH2 0x524D PUSH2 0x3E9 PUSH1 0x0 CODECOPY PUSH1 0x0 DUP2 DUP2 PUSH2 0x836 ADD MSTORE DUP2 DUP2 PUSH2 0xE3A ADD MSTORE DUP2 DUP2 PUSH2 0x1157 ADD MSTORE PUSH2 0x11C8 ADD MSTORE PUSH1 0x0 DUP2 DUP2 PUSH2 0xA18 ADD MSTORE PUSH2 0x2881 ADD MSTORE PUSH1 0x0 DUP2 DUP2 PUSH2 0x6A4 ADD MSTORE PUSH2 0x251C ADD MSTORE PUSH1 0x0 DUP2 DUP2 PUSH2 0xA6D ADD MSTORE DUP2 DUP2 PUSH2 0x285F ADD MSTORE PUSH2 0x30C8 ADD MSTORE PUSH1 0x0 DUP2 DUP2 PUSH2 0x62A ADD MSTORE DUP2 DUP2 PUSH2 0xEE3 ADD MSTORE DUP2 DUP2 PUSH2 0x125A ADD MSTORE DUP2 DUP2 PUSH2 0x1411 ADD MSTORE DUP2 DUP2 PUSH2 0x17BA ADD MSTORE DUP2 DUP2 PUSH2 0x273E ADD MSTORE DUP2 DUP2 PUSH2 0x2E55 ADD MSTORE PUSH2 0x309E ADD MSTORE PUSH1 0x0 DUP2 DUP2 PUSH2 0xBEA ADD MSTORE PUSH2 0x1991 ADD MSTORE PUSH1 0x0 DUP2 DUP2 PUSH2 0x9F1 ADD MSTORE DUP2 DUP2 PUSH2 0x3E54 ADD MSTORE DUP2 DUP2 PUSH2 0x3E90 ADD MSTORE PUSH2 0x3EBD ADD MSTORE PUSH2 0x524D 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 0x496 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x8C9A281D GT PUSH2 0x262 JUMPI DUP1 PUSH4 0xAFF05AA9 GT PUSH2 0x151 JUMPI DUP1 PUSH4 0xDBC0ED8A GT PUSH2 0xCE JUMPI DUP1 PUSH4 0xEAB52318 GT PUSH2 0x92 JUMPI DUP1 PUSH4 0xEAB52318 EQ PUSH2 0xC65 JUMPI DUP1 PUSH4 0xF036BC68 EQ PUSH2 0xC78 JUMPI DUP1 PUSH4 0xF11B8188 EQ PUSH2 0xC8C JUMPI DUP1 PUSH4 0xF34D96DA EQ PUSH2 0xCEE JUMPI DUP1 PUSH4 0xF713D8A8 EQ PUSH2 0xCF6 JUMPI DUP1 PUSH4 0xFDE9EB69 EQ PUSH2 0xD09 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0xDBC0ED8A EQ PUSH2 0xC1F JUMPI DUP1 PUSH4 0xDC937E1C EQ PUSH2 0xC27 JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0xC3A JUMPI DUP1 PUSH4 0xDDE43CBA EQ PUSH2 0xC4D JUMPI DUP1 PUSH4 0xE6AA216C EQ PUSH2 0xC54 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0xC2FFBB91 GT PUSH2 0x115 JUMPI DUP1 PUSH4 0xC2FFBB91 EQ PUSH2 0xBAC JUMPI DUP1 PUSH4 0xC3863ADA EQ PUSH2 0xBBF JUMPI DUP1 PUSH4 0xC3CDA520 EQ PUSH2 0xBD2 JUMPI DUP1 PUSH4 0xCBCBB507 EQ PUSH2 0xBE5 JUMPI DUP1 PUSH4 0xD505ACCF EQ PUSH2 0xC0C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0xAFF05AA9 EQ PUSH2 0xB4B JUMPI DUP1 PUSH4 0xB2A5DBFA EQ PUSH2 0xB53 JUMPI DUP1 PUSH4 0xB2F4201D EQ PUSH2 0xB66 JUMPI DUP1 PUSH4 0xB9844D8D EQ PUSH2 0xB79 JUMPI DUP1 PUSH4 0xC18F539A EQ PUSH2 0xB99 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x9A99B4F0 GT PUSH2 0x1DF JUMPI DUP1 PUSH4 0xA9059CBB GT PUSH2 0x1A3 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0xAE3 JUMPI DUP1 PUSH4 0xAA9FBE02 EQ PUSH2 0xAF6 JUMPI DUP1 PUSH4 0xAAF5EB68 EQ PUSH2 0xB1D JUMPI DUP1 PUSH4 0xAB406FE6 EQ PUSH2 0xB25 JUMPI DUP1 PUSH4 0xADC9772E EQ PUSH2 0xB38 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x9A99B4F0 EQ PUSH2 0xA8F JUMPI DUP1 PUSH4 0x9C9B5154 EQ PUSH2 0xAA2 JUMPI DUP1 PUSH4 0x9E3FFCE0 EQ PUSH2 0xAB5 JUMPI DUP1 PUSH4 0xA457C2D7 EQ PUSH2 0xABD JUMPI DUP1 PUSH4 0xA6B63EB8 EQ PUSH2 0xAD0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x946776CD GT PUSH2 0x226 JUMPI DUP1 PUSH4 0x946776CD EQ PUSH2 0xA13 JUMPI DUP1 PUSH4 0x955E18AF EQ PUSH2 0xA3A JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0xA4D JUMPI DUP1 PUSH4 0x981B24D0 EQ PUSH2 0xA55 JUMPI DUP1 PUSH4 0x99248EA7 EQ PUSH2 0xA68 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x8C9A281D EQ PUSH2 0x932 JUMPI DUP1 PUSH4 0x8DBEFEE2 EQ PUSH2 0x93A JUMPI DUP1 PUSH4 0x8E9B2CA4 EQ PUSH2 0x94D JUMPI DUP1 PUSH4 0x8EF98E0E EQ PUSH2 0x95C JUMPI DUP1 PUSH4 0x919CD40F EQ PUSH2 0x9EC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x45755DD6 GT PUSH2 0x389 JUMPI DUP1 PUSH4 0x6F50458D GT PUSH2 0x306 JUMPI DUP1 PUSH4 0x74011F56 GT PUSH2 0x2CA JUMPI DUP1 PUSH4 0x74011F56 EQ PUSH2 0x8A4 JUMPI DUP1 PUSH4 0x78160376 EQ PUSH2 0x8B7 JUMPI DUP1 PUSH4 0x787A08A6 EQ PUSH2 0x8D7 JUMPI DUP1 PUSH4 0x7B5B1157 EQ PUSH2 0x8DF JUMPI DUP1 PUSH4 0x7BB73C97 EQ PUSH2 0x8F2 JUMPI DUP1 PUSH4 0x7E90D7EF EQ PUSH2 0x912 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x6F50458D EQ PUSH2 0x858 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x86B JUMPI DUP1 PUSH4 0x727A5D57 EQ PUSH2 0x87E JUMPI DUP1 PUSH4 0x72B49D63 EQ PUSH2 0x829 JUMPI DUP1 PUSH4 0x73D6A889 EQ PUSH2 0x891 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x5B3CC0CF GT PUSH2 0x34D JUMPI DUP1 PUSH4 0x5B3CC0CF EQ PUSH2 0x792 JUMPI DUP1 PUSH4 0x5C19A95C EQ PUSH2 0x7F1 JUMPI DUP1 PUSH4 0x60BA192B EQ PUSH2 0x804 JUMPI DUP1 PUSH4 0x616E0BF9 EQ PUSH2 0x829 JUMPI DUP1 PUSH4 0x6198E135 EQ PUSH2 0x831 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x45755DD6 EQ PUSH2 0x709 JUMPI DUP1 PUSH4 0x4575E69B EQ PUSH2 0x71C JUMPI DUP1 PUSH4 0x4998FFFD EQ PUSH2 0x745 JUMPI DUP1 PUSH4 0x4CDAD506 EQ PUSH2 0x758 JUMPI DUP1 PUSH4 0x58146D17 EQ PUSH2 0x76B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x23B872DD GT PUSH2 0x417 JUMPI DUP1 PUSH4 0x3373EE4C GT PUSH2 0x3DB JUMPI DUP1 PUSH4 0x3373EE4C EQ PUSH2 0x661 JUMPI DUP1 PUSH4 0x359C4A96 EQ PUSH2 0x69F JUMPI DUP1 PUSH4 0x3644E515 EQ PUSH2 0x6C6 JUMPI DUP1 PUSH4 0x39509351 EQ PUSH2 0x6CF JUMPI DUP1 PUSH4 0x41CBF54A EQ PUSH2 0x6E2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x23B872DD EQ PUSH2 0x5D8 JUMPI DUP1 PUSH4 0x250201DB EQ PUSH2 0x5EB JUMPI DUP1 PUSH4 0x30ADF81F EQ PUSH2 0x5FE JUMPI DUP1 PUSH4 0x312F6B83 EQ PUSH2 0x625 JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x64C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x112D037C GT PUSH2 0x45E JUMPI DUP1 PUSH4 0x112D037C EQ PUSH2 0x582 JUMPI DUP1 PUSH4 0x174ED542 EQ PUSH2 0x597 JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x5AA JUMPI DUP1 PUSH4 0x1E9A6950 EQ PUSH2 0x5B2 JUMPI DUP1 PUSH4 0x20FB80B5 EQ PUSH2 0x5C5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x2FB4D85 EQ PUSH2 0x49B JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x4C1 JUMPI DUP1 PUSH4 0x91030C3 EQ PUSH2 0x4D6 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x534 JUMPI DUP1 PUSH4 0x111FD88B EQ PUSH2 0x557 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x4AE PUSH2 0x4A9 CALLDATASIZE PUSH1 0x4 PUSH2 0x4902 JUMP JUMPDEST PUSH2 0xD1C JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x4C9 PUSH2 0xF5A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x4B8 SWAP2 SWAP1 PUSH2 0x497E JUMP JUMPDEST PUSH2 0x50F PUSH2 0x4E4 CALLDATASIZE PUSH1 0x4 PUSH2 0x4991 JUMP JUMPDEST PUSH1 0x3E PUSH1 0x20 MSTORE PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH5 0xFFFFFFFFFF DUP2 AND SWAP1 PUSH1 0x1 PUSH1 0x28 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0xD8 SHL SUB AND DUP3 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH5 0xFFFFFFFFFF SWAP1 SWAP4 AND DUP4 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xD8 SHL SUB SWAP1 SWAP2 AND PUSH1 0x20 DUP4 ADD MSTORE ADD PUSH2 0x4B8 JUMP JUMPDEST PUSH2 0x547 PUSH2 0x542 CALLDATASIZE PUSH1 0x4 PUSH2 0x4902 JUMP JUMPDEST PUSH2 0xFEC JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x4B8 JUMP JUMPDEST PUSH2 0x56A PUSH2 0x565 CALLDATASIZE PUSH1 0x4 PUSH2 0x49AE JUMP JUMPDEST PUSH2 0x1004 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x4B8 JUMP JUMPDEST PUSH2 0x595 PUSH2 0x590 CALLDATASIZE PUSH1 0x4 PUSH2 0x49C7 JUMP JUMPDEST PUSH2 0x101F JUMP JUMPDEST STOP JUMPDEST PUSH1 0x53 SLOAD PUSH2 0x56A SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH2 0x4AE JUMP JUMPDEST PUSH2 0x595 PUSH2 0x5C0 CALLDATASIZE PUSH1 0x4 PUSH2 0x4902 JUMP JUMPDEST PUSH2 0x1069 JUMP JUMPDEST PUSH2 0x4AE PUSH2 0x5D3 CALLDATASIZE PUSH1 0x4 PUSH2 0x49C7 JUMP JUMPDEST PUSH2 0x1078 JUMP JUMPDEST PUSH2 0x547 PUSH2 0x5E6 CALLDATASIZE PUSH1 0x4 PUSH2 0x49C7 JUMP JUMPDEST PUSH2 0x10C9 JUMP JUMPDEST PUSH2 0x595 PUSH2 0x5F9 CALLDATASIZE PUSH1 0x4 PUSH2 0x4991 JUMP JUMPDEST PUSH2 0x10ED JUMP JUMPDEST PUSH2 0x4AE PUSH32 0x6E71EDAE12B1B97F4D1F60370FEF10105FA2FAAE0126114A169C64845D6126C9 DUP2 JUMP JUMPDEST PUSH2 0x56A PUSH32 0x0 DUP2 JUMP JUMPDEST PUSH1 0x12 JUMPDEST PUSH1 0x40 MLOAD PUSH1 0xFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x4B8 JUMP JUMPDEST PUSH2 0x4AE PUSH2 0x66F CALLDATASIZE PUSH1 0x4 PUSH2 0x4A08 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3C PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 DUP7 AND DUP4 MSTORE PUSH1 0x2 SWAP1 SWAP4 ADD SWAP1 MSTORE KECCAK256 SLOAD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x4AE PUSH32 0x0 DUP2 JUMP JUMPDEST PUSH2 0x4AE PUSH1 0x43 SLOAD DUP2 JUMP JUMPDEST PUSH2 0x547 PUSH2 0x6DD CALLDATASIZE PUSH1 0x4 PUSH2 0x4902 JUMP JUMPDEST PUSH2 0x1133 JUMP JUMPDEST PUSH2 0x4AE PUSH32 0x9A9A49B990BA9BB39F8048C490A40AB25C18F55D208D5FBCF958261A9B48716D DUP2 JUMP JUMPDEST PUSH2 0x595 PUSH2 0x717 CALLDATASIZE PUSH1 0x4 PUSH2 0x49AE JUMP JUMPDEST PUSH2 0x1155 JUMP JUMPDEST PUSH2 0x56A PUSH2 0x72A CALLDATASIZE PUSH1 0x4 PUSH2 0x49AE JUMP JUMPDEST PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x46 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH2 0x595 PUSH2 0x753 CALLDATASIZE PUSH1 0x4 PUSH2 0x4991 JUMP JUMPDEST PUSH2 0x12BA JUMP JUMPDEST PUSH2 0x4AE PUSH2 0x766 CALLDATASIZE PUSH1 0x4 PUSH2 0x49AE JUMP JUMPDEST PUSH2 0x1324 JUMP JUMPDEST PUSH2 0x77A PUSH8 0xDE0B6B3A7640000 DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD8 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x4B8 JUMP JUMPDEST PUSH2 0x7D1 PUSH2 0x7A0 CALLDATASIZE PUSH1 0x4 PUSH2 0x4902 JUMP JUMPDEST PUSH1 0x6 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x0 SWAP3 DUP4 MSTORE PUSH1 0x40 DUP1 DUP5 KECCAK256 SWAP1 SWAP2 MSTORE SWAP1 DUP3 MSTORE SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB DUP1 DUP3 AND SWAP2 PUSH1 0x1 PUSH1 0x80 SHL SWAP1 DIV AND DUP3 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB SWAP4 DUP5 AND DUP2 MSTORE SWAP3 SWAP1 SWAP2 AND PUSH1 0x20 DUP4 ADD MSTORE ADD PUSH2 0x4B8 JUMP JUMPDEST PUSH2 0x595 PUSH2 0x7FF CALLDATASIZE PUSH1 0x4 PUSH2 0x4991 JUMP JUMPDEST PUSH2 0x134F JUMP JUMPDEST PUSH1 0x51 SLOAD PUSH1 0x1 PUSH1 0xE0 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH1 0x40 MLOAD PUSH4 0xFFFFFFFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x4B8 JUMP JUMPDEST PUSH1 0x4F SLOAD PUSH2 0x4AE JUMP JUMPDEST PUSH2 0x4AE PUSH32 0x0 DUP2 JUMP JUMPDEST PUSH2 0x56A PUSH2 0x866 CALLDATASIZE PUSH1 0x4 PUSH2 0x4A55 JUMP JUMPDEST PUSH2 0x1367 JUMP JUMPDEST PUSH2 0x4AE PUSH2 0x879 CALLDATASIZE PUSH1 0x4 PUSH2 0x4991 JUMP JUMPDEST PUSH2 0x1389 JUMP JUMPDEST PUSH2 0x4AE PUSH2 0x88C CALLDATASIZE PUSH1 0x4 PUSH2 0x49AE JUMP JUMPDEST PUSH2 0x13A4 JUMP JUMPDEST PUSH2 0x595 PUSH2 0x89F CALLDATASIZE PUSH1 0x4 PUSH2 0x4A9B JUMP JUMPDEST PUSH2 0x13C7 JUMP JUMPDEST PUSH2 0x595 PUSH2 0x8B2 CALLDATASIZE PUSH1 0x4 PUSH2 0x49AE JUMP JUMPDEST PUSH2 0x1480 JUMP JUMPDEST PUSH2 0x4C9 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 DUP2 JUMP JUMPDEST PUSH2 0x595 PUSH2 0x14C3 JUMP JUMPDEST PUSH2 0x595 PUSH2 0x8ED CALLDATASIZE PUSH1 0x4 PUSH2 0x49AE JUMP JUMPDEST PUSH2 0x14CE JUMP JUMPDEST PUSH2 0x4AE PUSH2 0x900 CALLDATASIZE PUSH1 0x4 PUSH2 0x4991 JUMP JUMPDEST PUSH1 0x7 PUSH1 0x20 MSTORE PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 JUMP JUMPDEST PUSH2 0x4AE PUSH2 0x920 CALLDATASIZE PUSH1 0x4 PUSH2 0x4991 JUMP JUMPDEST PUSH1 0x3D PUSH1 0x20 MSTORE PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 JUMP JUMPDEST PUSH2 0x4AE PUSH1 0x0 DUP2 JUMP JUMPDEST PUSH2 0x4AE PUSH2 0x948 CALLDATASIZE PUSH1 0x4 PUSH2 0x4991 JUMP JUMPDEST PUSH2 0x1541 JUMP JUMPDEST PUSH2 0x4AE PUSH8 0xDE0B6B3A7640000 DUP2 JUMP JUMPDEST PUSH2 0x9C1 PUSH2 0x96A CALLDATASIZE PUSH1 0x4 PUSH2 0x4AF5 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE POP PUSH4 0xFFFFFFFF AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x52 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 DUP3 MLOAD DUP1 DUP5 ADD SWAP1 SWAP4 MSTORE SLOAD PUSH5 0xFFFFFFFFFF DUP2 AND DUP4 MSTORE PUSH1 0x1 PUSH1 0x28 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0xD8 SHL SUB AND SWAP1 DUP3 ADD MSTORE SWAP1 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP3 MLOAD PUSH5 0xFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 SWAP3 DUP4 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD8 SHL SUB AND SWAP3 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE ADD PUSH2 0x4B8 JUMP JUMPDEST PUSH2 0x4AE PUSH32 0x0 DUP2 JUMP JUMPDEST PUSH2 0x56A PUSH32 0x0 DUP2 JUMP JUMPDEST PUSH2 0x4AE PUSH2 0xA48 CALLDATASIZE PUSH1 0x4 PUSH2 0x4902 JUMP JUMPDEST PUSH2 0x161C JUMP JUMPDEST PUSH2 0x4C9 PUSH2 0x1629 JUMP JUMPDEST PUSH2 0x4AE PUSH2 0xA63 CALLDATASIZE PUSH1 0x4 PUSH2 0x49AE JUMP JUMPDEST PUSH2 0x1638 JUMP JUMPDEST PUSH2 0x56A PUSH32 0x0 DUP2 JUMP JUMPDEST PUSH2 0x595 PUSH2 0xA9D CALLDATASIZE PUSH1 0x4 PUSH2 0x4902 JUMP JUMPDEST PUSH2 0x1643 JUMP JUMPDEST PUSH2 0x595 PUSH2 0xAB0 CALLDATASIZE PUSH1 0x4 PUSH2 0x4B1B JUMP JUMPDEST PUSH2 0x164E JUMP JUMPDEST PUSH2 0x4AE PUSH1 0x1 DUP2 JUMP JUMPDEST PUSH2 0x547 PUSH2 0xACB CALLDATASIZE PUSH1 0x4 PUSH2 0x4902 JUMP JUMPDEST PUSH2 0x16A5 JUMP JUMPDEST PUSH2 0x595 PUSH2 0xADE CALLDATASIZE PUSH1 0x4 PUSH2 0x4B61 JUMP JUMPDEST PUSH2 0x1720 JUMP JUMPDEST PUSH2 0x547 PUSH2 0xAF1 CALLDATASIZE PUSH1 0x4 PUSH2 0x4902 JUMP JUMPDEST PUSH2 0x1838 JUMP JUMPDEST PUSH2 0x4AE PUSH32 0x10D8D059343739EFCE7DAD10D09F0806DA52B252B3E6A7951920D2D6EC4102E5 DUP2 JUMP JUMPDEST PUSH2 0x64F PUSH1 0x12 DUP2 JUMP JUMPDEST PUSH2 0x595 PUSH2 0xB33 CALLDATASIZE PUSH1 0x4 PUSH2 0x4BBC JUMP JUMPDEST PUSH2 0x1846 JUMP JUMPDEST PUSH2 0x595 PUSH2 0xB46 CALLDATASIZE PUSH1 0x4 PUSH2 0x4902 JUMP JUMPDEST PUSH2 0x1909 JUMP JUMPDEST PUSH2 0x595 PUSH2 0x1914 JUMP JUMPDEST PUSH2 0x595 PUSH2 0xB61 CALLDATASIZE PUSH1 0x4 PUSH2 0x4C51 JUMP JUMPDEST PUSH2 0x1986 JUMP JUMPDEST PUSH2 0x4AE PUSH2 0xB74 CALLDATASIZE PUSH1 0x4 PUSH2 0x4A55 JUMP JUMPDEST PUSH2 0x1A37 JUMP JUMPDEST PUSH2 0x4AE PUSH2 0xB87 CALLDATASIZE PUSH1 0x4 PUSH2 0x4991 JUMP JUMPDEST PUSH1 0x44 PUSH1 0x20 MSTORE PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 JUMP JUMPDEST PUSH2 0x4AE PUSH2 0xBA7 CALLDATASIZE PUSH1 0x4 PUSH2 0x49C7 JUMP JUMPDEST PUSH2 0x1A5F JUMP JUMPDEST PUSH2 0x4AE PUSH2 0xBBA CALLDATASIZE PUSH1 0x4 PUSH2 0x4D47 JUMP JUMPDEST PUSH2 0x1AA6 JUMP JUMPDEST PUSH1 0x8 SLOAD PUSH2 0x56A SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 JUMP JUMPDEST PUSH2 0x595 PUSH2 0xBE0 CALLDATASIZE PUSH1 0x4 PUSH2 0x4A9B JUMP JUMPDEST PUSH2 0x1ACF JUMP JUMPDEST PUSH2 0x56A PUSH32 0x0 DUP2 JUMP JUMPDEST PUSH2 0x595 PUSH2 0xC1A CALLDATASIZE PUSH1 0x4 PUSH2 0x4D85 JUMP JUMPDEST PUSH2 0x1C94 JUMP JUMPDEST PUSH2 0x4AE PUSH1 0x2 DUP2 JUMP JUMPDEST PUSH2 0x595 PUSH2 0xC35 CALLDATASIZE PUSH1 0x4 PUSH2 0x4A55 JUMP JUMPDEST PUSH2 0x1E5C JUMP JUMPDEST PUSH2 0x4AE PUSH2 0xC48 CALLDATASIZE PUSH1 0x4 PUSH2 0x4A08 JUMP JUMPDEST PUSH2 0x1E67 JUMP JUMPDEST PUSH1 0x1 PUSH2 0x4AE JUMP JUMPDEST PUSH1 0x51 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD8 SHL SUB AND PUSH2 0x77A JUMP JUMPDEST PUSH2 0x595 PUSH2 0xC73 CALLDATASIZE PUSH1 0x4 PUSH2 0x4DF4 JUMP JUMPDEST PUSH2 0x1E92 JUMP JUMPDEST PUSH1 0x51 SLOAD PUSH2 0x547 SWAP1 PUSH1 0x1 PUSH1 0xD8 SHL SWAP1 DIV PUSH1 0xFF AND DUP2 JUMP JUMPDEST PUSH2 0xCC8 PUSH2 0xC9A CALLDATASIZE PUSH1 0x4 PUSH2 0x4991 JUMP JUMPDEST PUSH1 0x3C PUSH1 0x20 MSTORE PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x1 SWAP1 SWAP2 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB DUP1 DUP4 AND SWAP3 PUSH1 0x1 PUSH1 0x80 SHL SWAP1 DIV AND SWAP1 DUP4 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB SWAP5 DUP6 AND DUP2 MSTORE SWAP4 SWAP1 SWAP3 AND PUSH1 0x20 DUP5 ADD MSTORE SWAP1 DUP3 ADD MSTORE PUSH1 0x60 ADD PUSH2 0x4B8 JUMP JUMPDEST PUSH1 0x50 SLOAD PUSH2 0x4AE JUMP JUMPDEST PUSH2 0x595 PUSH2 0xD04 CALLDATASIZE PUSH1 0x4 PUSH2 0x4E29 JUMP JUMPDEST PUSH2 0x1EA9 JUMP JUMPDEST PUSH2 0x595 PUSH2 0xD17 CALLDATASIZE PUSH1 0x4 PUSH2 0x49AE JUMP JUMPDEST PUSH2 0x207D JUMP JUMPDEST PUSH1 0x0 PUSH2 0xD28 PUSH1 0x0 PUSH2 0x1004 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xD61 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xD58 SWAP1 PUSH2 0x4E5D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x51 SLOAD PUSH1 0x1 PUSH1 0xD8 SHL SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0xDBB 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 0x50524556494F55535F534C415348494E475F4E4F545F534554544C4544000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xD58 JUMP JUMPDEST PUSH1 0x0 DUP3 GT PUSH2 0xDF9 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0xB PUSH1 0x24 DUP3 ADD MSTORE PUSH11 0x16915493D7D05353D55395 PUSH1 0xAA SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xD58 JUMP JUMPDEST PUSH1 0x0 PUSH2 0xE04 PUSH1 0x2 SLOAD SWAP1 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0xE11 DUP3 PUSH2 0x1324 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0xE2A PUSH1 0x50 SLOAD DUP4 PUSH2 0x214E SWAP1 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST SWAP1 POP DUP1 DUP6 GT ISZERO PUSH2 0xE38 JUMPI DUP1 SWAP5 POP JUMPDEST PUSH32 0x0 PUSH2 0xE63 DUP7 DUP5 PUSH2 0x4EAA JUMP JUMPDEST LT ISZERO PUSH2 0xEA8 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 PUSH20 0x52454D41494E494E475F4C545F4D494E494D554D PUSH1 0x60 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xD58 JUMP JUMPDEST PUSH1 0x51 DUP1 SLOAD PUSH1 0xFF PUSH1 0xD8 SHL NOT AND PUSH1 0x1 PUSH1 0xD8 SHL OR SWAP1 SSTORE PUSH2 0xED6 PUSH2 0xED1 PUSH2 0xECB DUP8 DUP6 PUSH2 0x4EAA JUMP JUMPDEST DUP6 PUSH2 0x21DA JUMP JUMPDEST PUSH2 0x2218 JUMP JUMPDEST PUSH2 0xF0A PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND DUP8 DUP8 PUSH2 0x22BD JUMP JUMPDEST DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x4ED05E9673C26D2ED44F7EF6A7F2942DF0EE3B5E1E17DB4B99F9DCD261A339CD DUP7 PUSH1 0x40 MLOAD PUSH2 0xF45 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 DUP5 SWAP4 POP POP POP POP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0xF69 SWAP1 PUSH2 0x4EBD 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 0xF95 SWAP1 PUSH2 0x4EBD JUMP JUMPDEST DUP1 ISZERO PUSH2 0xFE2 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0xFB7 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0xFE2 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 0xFC5 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0xFFA DUP2 DUP6 DUP6 PUSH2 0x2320 JUMP JUMPDEST POP PUSH1 0x1 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x45 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH2 0x1029 PUSH1 0x2 PUSH2 0x1004 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x1059 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xD58 SWAP1 PUSH2 0x4EF7 JUMP JUMPDEST PUSH2 0x1064 DUP4 DUP4 DUP4 PUSH2 0x2444 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x1074 CALLER DUP4 DUP4 PUSH2 0x2444 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1084 PUSH1 0x2 PUSH2 0x1004 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x10B4 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xD58 SWAP1 PUSH2 0x4EF7 JUMP JUMPDEST PUSH2 0x10BF DUP5 DUP5 DUP5 PUSH2 0x27C5 JUMP JUMPDEST SWAP1 POP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0x10D7 DUP6 DUP3 DUP6 PUSH2 0x28FD JUMP JUMPDEST PUSH2 0x10E2 DUP6 DUP6 DUP6 PUSH2 0x2971 JUMP JUMPDEST POP PUSH1 0x1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH2 0x10F7 PUSH1 0x2 PUSH2 0x1004 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x1127 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xD58 SWAP1 PUSH2 0x4EF7 JUMP JUMPDEST PUSH2 0x1130 DUP2 PUSH2 0x2AA2 JUMP JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0xFFA DUP2 DUP6 DUP6 PUSH2 0x1146 DUP4 DUP4 PUSH2 0x1E67 JUMP JUMPDEST PUSH2 0x1150 SWAP2 SWAP1 PUSH2 0x4F2E JUMP JUMPDEST PUSH2 0x2320 JUMP JUMPDEST PUSH32 0x0 DUP2 LT ISZERO PUSH2 0x11B9 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x11 PUSH1 0x24 DUP3 ADD MSTORE PUSH17 0x414D4F554E545F4C545F4D494E494D554D PUSH1 0x78 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xD58 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x11C4 PUSH1 0x2 SLOAD SWAP1 JUMP JUMPDEST SWAP1 POP PUSH32 0x0 DUP2 LT ISZERO PUSH2 0x122A JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x11 PUSH1 0x24 DUP3 ADD MSTORE PUSH17 0x5348415245535F4C545F4D494E494D554D PUSH1 0x78 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xD58 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1235 DUP3 PUSH2 0x1324 JUMP JUMPDEST SWAP1 POP PUSH2 0x124D PUSH2 0xED1 PUSH2 0x1247 DUP6 DUP5 PUSH2 0x4F2E JUMP JUMPDEST DUP5 PUSH2 0x21DA JUMP JUMPDEST PUSH2 0x1282 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND CALLER ADDRESS DUP7 PUSH2 0x2B85 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP4 DUP2 MSTORE PUSH32 0x278E51D3323FBF18B9FB8DF3F8B97E31B145BC1146C52E764CF4AA1BFC4BA17D SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP POP POP JUMP JUMPDEST PUSH20 0xEE56E2B3D491590B5B31738CC34D5232F378A8D5 CALLER EQ PUSH2 0x12DA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x53 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 0x62BBCED765BCCC9ED93D0BAE1B2A8C86E13B4663F8BF27D5936D9D619194C8A9 SWAP1 PUSH1 0x0 SWAP1 LOG2 POP JUMP JUMPDEST PUSH1 0x51 SLOAD PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xD8 SHL SUB AND PUSH2 0x1345 DUP4 PUSH8 0xDE0B6B3A7640000 PUSH2 0x4F41 JUMP JUMPDEST PUSH2 0xF54 SWAP2 SWAP1 PUSH2 0x4F58 JUMP JUMPDEST PUSH2 0x135B CALLER DUP3 PUSH1 0x0 PUSH2 0x2BBD JUMP JUMPDEST PUSH2 0x1130 CALLER DUP3 PUSH1 0x1 PUSH2 0x2BBD JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x1373 DUP4 PUSH2 0x2CBE JUMP JUMPDEST SWAP3 POP POP POP PUSH2 0x1381 DUP5 DUP3 PUSH2 0x2CFD JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP 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 PUSH1 0x51 SLOAD PUSH1 0x0 SWAP1 PUSH8 0xDE0B6B3A7640000 SWAP1 PUSH2 0x1345 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xD8 SHL SUB AND DUP5 PUSH2 0x4F41 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xD505ACCF PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE ADDRESS PUSH1 0x24 DUP4 ADD MSTORE PUSH1 0x44 DUP3 ADD DUP8 SWAP1 MSTORE PUSH1 0x64 DUP3 ADD DUP7 SWAP1 MSTORE PUSH1 0xFF DUP6 AND PUSH1 0x84 DUP4 ADD MSTORE PUSH1 0xA4 DUP3 ADD DUP5 SWAP1 MSTORE PUSH1 0xC4 DUP3 ADD DUP4 SWAP1 MSTORE PUSH32 0x0 AND SWAP1 PUSH4 0xD505ACCF SWAP1 PUSH1 0xE4 ADD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1455 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x1469 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH2 0x1478 DUP7 DUP8 DUP8 PUSH2 0x2D28 JUMP JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH2 0x148A PUSH1 0x0 PUSH2 0x1004 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x14BA JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xD58 SWAP1 PUSH2 0x4E5D JUMP JUMPDEST PUSH2 0x1130 DUP2 PUSH2 0x2ED5 JUMP JUMPDEST PUSH2 0x14CC CALLER PUSH2 0x2AA2 JUMP JUMPDEST JUMP JUMPDEST PUSH2 0x14D8 PUSH1 0x1 PUSH2 0x1004 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x1538 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 0x43414C4C45525F4E4F545F434F4F4C444F574E5F41444D494E00000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xD58 JUMP JUMPDEST PUSH2 0x1130 DUP2 PUSH2 0x2F62 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 DUP1 DUP3 MSTORE DUP2 DUP4 ADD SWAP1 SWAP3 MSTORE PUSH1 0x0 SWAP2 DUP3 SWAP2 SWAP1 DUP2 PUSH1 0x20 ADD JUMPDEST PUSH2 0x1588 PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP2 MSTORE POP SWAP1 JUMP JUMPDEST DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 SWAP1 SUB SWAP1 DUP2 PUSH2 0x155B JUMPI SWAP1 POP POP SWAP1 POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE DUP1 ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x15C0 DUP6 PUSH2 0x1389 JUMP JUMPDEST DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x15CE PUSH1 0x2 SLOAD SWAP1 JUMP JUMPDEST DUP2 MSTORE POP DUP2 PUSH1 0x0 DUP2 MLOAD DUP2 LT PUSH2 0x15E4 JUMPI PUSH2 0x15E4 PUSH2 0x4F7A JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 SWAP1 MSTORE POP PUSH2 0x15F9 DUP4 DUP3 PUSH2 0x2F97 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3D PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH2 0x10C2 SWAP2 SWAP1 PUSH2 0x4F2E JUMP JUMPDEST PUSH1 0x0 PUSH2 0x10C2 CALLER DUP5 DUP5 PUSH2 0x309A JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0xF69 SWAP1 PUSH2 0x4EBD JUMP JUMPDEST PUSH1 0x0 PUSH2 0xF54 PUSH1 0x2 SLOAD SWAP1 JUMP JUMPDEST PUSH2 0x1064 CALLER DUP4 DUP4 PUSH2 0x27C5 JUMP JUMPDEST PUSH2 0x1658 PUSH1 0x2 PUSH2 0x1004 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x1688 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xD58 SWAP1 PUSH2 0x4EF7 JUMP JUMPDEST PUSH2 0x1693 DUP5 DUP5 DUP5 PUSH2 0x27C5 JUMP JUMPDEST POP PUSH2 0x169F DUP5 DUP5 DUP4 PUSH2 0x2444 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 CALLER DUP2 PUSH2 0x16B3 DUP3 DUP7 PUSH2 0x1E67 JUMP JUMPDEST SWAP1 POP DUP4 DUP2 LT ISZERO PUSH2 0x1713 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 PUSH5 0x207A65726F PUSH1 0xD8 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0xD58 JUMP JUMPDEST PUSH2 0x10E2 DUP3 DUP7 DUP7 DUP5 SUB PUSH2 0x2320 JUMP JUMPDEST PUSH1 0x9 SLOAD PUSH1 0x1 SWAP1 DUP2 GT PUSH2 0x178B 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 0x436F6E747261637420696E7374616E63652068617320616C7265616479206265 PUSH1 0x44 DUP3 ADD MSTORE PUSH14 0x195B881A5B9A5D1A585B1A5E9959 PUSH1 0x92 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0xD58 JUMP JUMPDEST PUSH1 0x9 DUP2 SWAP1 SSTORE PUSH2 0x179D DUP7 DUP7 DUP7 DUP7 DUP7 PUSH2 0x3185 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x95EA7B3 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x0 NOT PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0x95EA7B3 SWAP1 PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x180B 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 0x182F SWAP2 SWAP1 PUSH2 0x4F90 JUMP JUMPDEST POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0xFFA DUP2 DUP6 DUP6 PUSH2 0x2971 JUMP JUMPDEST PUSH1 0x0 DUP3 DUP2 MSTORE PUSH1 0x45 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP3 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x18A6 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 PUSH21 0x21A0A62622A92FA727AA2FA927A622AFA0A226A4A7 PUSH1 0x59 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xD58 JUMP JUMPDEST PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x46 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE SWAP2 MLOAD DUP6 DUP2 MSTORE PUSH32 0xC3D1BF52795A20771EE6DE3E59948FD83E10DB956122D4709A3B86C512963855 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP JUMP JUMPDEST PUSH2 0x1074 CALLER DUP4 DUP4 PUSH2 0x2D28 JUMP JUMPDEST PUSH2 0x191E PUSH1 0x0 PUSH2 0x1004 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x194E JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xD58 SWAP1 PUSH2 0x4E5D JUMP JUMPDEST PUSH1 0x51 DUP1 SLOAD PUSH1 0xFF PUSH1 0xD8 SHL NOT AND SWAP1 SSTORE PUSH1 0x40 MLOAD PUSH32 0xCDEE157E87BA915BE681D4FA3F3D511AFE7348ECA06448A3ACCD6AC227FA40AF SWAP1 PUSH1 0x0 SWAP1 LOG1 JUMP JUMPDEST CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ PUSH2 0x19F6 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 PUSH21 0x27A7262CAFA2A6A4A9A9A4A7A72FA6A0A720A3A2A9 PUSH1 0x59 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xD58 JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP2 MLOAD DUP2 LT ISZERO PUSH2 0x1A2D JUMPI PUSH1 0x2 SLOAD DUP3 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x1A17 JUMPI PUSH2 0x1A17 PUSH2 0x4F7A JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD DUP2 ADD MLOAD ADD MSTORE PUSH1 0x1 ADD PUSH2 0x19F9 JUMP JUMPDEST POP PUSH2 0x1130 DUP2 PUSH2 0x32A9 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH2 0x1A45 DUP5 PUSH2 0x2CBE JUMP JUMPDEST POP SWAP2 POP SWAP2 POP PUSH2 0x1A56 DUP3 DUP3 DUP8 NUMBER PUSH2 0x340D JUMP JUMPDEST SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1A6B PUSH1 0x2 PUSH2 0x1004 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x1A9B JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xD58 SWAP1 PUSH2 0x4EF7 JUMP JUMPDEST PUSH2 0x10BF DUP5 DUP5 DUP5 PUSH2 0x309A JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH2 0x1AB4 DUP5 PUSH2 0x2CBE JUMP JUMPDEST POP SWAP2 POP SWAP2 POP PUSH2 0x1AC5 DUP3 DUP3 DUP9 DUP9 PUSH2 0x340D JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH32 0x9A9A49B990BA9BB39F8048C490A40AB25C18F55D208D5FBCF958261A9B48716D PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP9 AND SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x60 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0x80 DUP2 ADD DUP6 SWAP1 MSTORE PUSH1 0x0 SWAP1 PUSH1 0xA0 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 PUSH1 0x43 SLOAD DUP3 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x1B4D SWAP3 SWAP2 SWAP1 PUSH2 0x4FB2 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F NOT DUP2 DUP5 SUB ADD DUP2 MSTORE DUP3 DUP3 MSTORE DUP1 MLOAD PUSH1 0x20 SWAP2 DUP3 ADD KECCAK256 PUSH1 0x0 DUP1 DUP6 MSTORE SWAP2 DUP5 ADD DUP1 DUP5 MSTORE DUP2 SWAP1 MSTORE PUSH1 0xFF DUP10 AND SWAP3 DUP5 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x60 DUP4 ADD DUP8 SWAP1 MSTORE PUSH1 0x80 DUP4 ADD DUP7 SWAP1 MSTORE SWAP1 SWAP3 POP SWAP1 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 0x1BB8 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 0x1BEB JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xD58 SWAP1 PUSH2 0x4FCD JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x44 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD SWAP2 PUSH2 0x1C0F DUP4 PUSH2 0x4FF8 JUMP JUMPDEST SWAP2 SWAP1 POP SSTORE DUP9 EQ PUSH2 0x1C51 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0xD PUSH1 0x24 DUP3 ADD MSTORE PUSH13 0x494E56414C49445F4E4F4E4345 PUSH1 0x98 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xD58 JUMP JUMPDEST DUP7 TIMESTAMP GT ISZERO PUSH2 0x1C71 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xD58 SWAP1 PUSH2 0x5011 JUMP JUMPDEST PUSH2 0x1C7D DUP2 DUP11 PUSH1 0x0 PUSH2 0x2BBD JUMP JUMPDEST PUSH2 0x1C89 DUP2 DUP11 PUSH1 0x1 PUSH2 0x2BBD JUMP JUMPDEST POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND PUSH2 0x1CDA JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0xD PUSH1 0x24 DUP3 ADD MSTORE PUSH13 0x24A72B20A624A22FA7ABA722A9 PUSH1 0x99 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xD58 JUMP JUMPDEST DUP4 TIMESTAMP GT ISZERO PUSH2 0x1CFA JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xD58 SWAP1 PUSH2 0x5011 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 DUP2 AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x44 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SLOAD PUSH1 0x43 SLOAD DUP3 MLOAD PUSH32 0x6E71EDAE12B1B97F4D1F60370FEF10105FA2FAAE0126114A169C64845D6126C9 DUP2 DUP7 ADD MSTORE DUP1 DUP5 ADD SWAP7 SWAP1 SWAP7 MSTORE SWAP6 DUP13 AND PUSH1 0x60 DUP7 ADD MSTORE PUSH1 0x80 DUP6 ADD DUP12 SWAP1 MSTORE PUSH1 0xA0 DUP6 ADD DUP2 SWAP1 MSTORE PUSH1 0xC0 DUP1 DUP7 ADD DUP12 SWAP1 MSTORE DUP3 MLOAD DUP1 DUP8 SUB SWAP1 SWAP2 ADD DUP2 MSTORE PUSH1 0xE0 DUP7 ADD SWAP1 SWAP3 MSTORE DUP2 MLOAD SWAP2 SWAP1 SWAP3 ADD KECCAK256 SWAP1 SWAP4 SWAP2 SWAP3 PUSH2 0x1D91 SWAP3 SWAP2 SWAP1 PUSH2 0x100 ADD PUSH2 0x4FB2 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F NOT DUP2 DUP5 SUB ADD DUP2 MSTORE DUP3 DUP3 MSTORE DUP1 MLOAD PUSH1 0x20 SWAP2 DUP3 ADD KECCAK256 PUSH1 0x0 DUP5 MSTORE SWAP1 DUP4 ADD DUP1 DUP4 MSTORE DUP2 SWAP1 MSTORE PUSH1 0xFF DUP9 AND SWAP2 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x60 DUP3 ADD DUP7 SWAP1 MSTORE PUSH1 0x80 DUP3 ADD DUP6 SWAP1 MSTORE SWAP2 POP 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 0x1DF9 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP PUSH1 0x20 PUSH1 0x40 MLOAD SUB MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP10 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x1E33 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xD58 SWAP1 PUSH2 0x4FCD JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP10 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x44 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH1 0x1 DUP4 ADD SWAP1 SSTORE PUSH2 0x1C89 DUP10 DUP10 DUP10 PUSH2 0x2320 JUMP JUMPDEST PUSH2 0x1074 CALLER DUP4 DUP4 PUSH2 0x2BBD 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 0x1E9D CALLER DUP5 DUP5 PUSH2 0x27C5 JUMP JUMPDEST POP PUSH2 0x1064 CALLER DUP5 DUP4 PUSH2 0x2444 JUMP JUMPDEST PUSH1 0x0 PUSH32 0x10D8D059343739EFCE7DAD10D09F0806DA52B252B3E6A7951920D2D6EC4102E5 DUP9 DUP9 PUSH1 0x1 DUP2 GT ISZERO PUSH2 0x1EDF JUMPI PUSH2 0x1EDF PUSH2 0x503D JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x20 DUP2 ADD SWAP5 SWAP1 SWAP5 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP3 AND SWAP2 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 DUP2 ADD DUP8 SWAP1 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 PUSH1 0x43 SLOAD DUP3 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x1F42 SWAP3 SWAP2 SWAP1 PUSH2 0x4FB2 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F NOT DUP2 DUP5 SUB ADD DUP2 MSTORE DUP3 DUP3 MSTORE DUP1 MLOAD PUSH1 0x20 SWAP2 DUP3 ADD KECCAK256 PUSH1 0x0 DUP1 DUP6 MSTORE SWAP2 DUP5 ADD DUP1 DUP5 MSTORE DUP2 SWAP1 MSTORE PUSH1 0xFF DUP10 AND SWAP3 DUP5 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x60 DUP4 ADD DUP8 SWAP1 MSTORE PUSH1 0x80 DUP4 ADD DUP7 SWAP1 MSTORE SWAP1 SWAP3 POP SWAP1 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 0x1FAD 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 0x1FE0 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xD58 SWAP1 PUSH2 0x4FCD JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x44 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD SWAP2 PUSH2 0x2004 DUP4 PUSH2 0x4FF8 JUMP JUMPDEST SWAP2 SWAP1 POP SSTORE DUP9 EQ PUSH2 0x2046 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0xD PUSH1 0x24 DUP3 ADD MSTORE PUSH13 0x494E56414C49445F4E4F4E4345 PUSH1 0x98 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xD58 JUMP JUMPDEST DUP7 TIMESTAMP GT ISZERO PUSH2 0x2066 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xD58 SWAP1 PUSH2 0x5011 JUMP JUMPDEST PUSH2 0x2071 DUP2 DUP12 DUP12 PUSH2 0x2BBD JUMP JUMPDEST POP POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x46 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x20E5 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 0x43414C4C45525F4E4F545F50454E44494E475F524F4C455F41444D494E000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xD58 JUMP JUMPDEST PUSH1 0x0 DUP3 DUP2 MSTORE PUSH1 0x45 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 DUP1 SLOAD CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT SWAP2 DUP3 AND DUP2 OR SWAP1 SWAP3 SSTORE PUSH1 0x46 DUP5 MSTORE SWAP4 DUP3 SWAP1 KECCAK256 DUP1 SLOAD SWAP1 SWAP5 AND SWAP1 SWAP4 SSTORE MLOAD DUP5 DUP2 MSTORE PUSH32 0x83A9DDAD961DCB7C6894C9585A16FF7792C2EC8281256A3CC7303AE830152DCF SWAP2 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 ISZERO DUP1 PUSH2 0x215B JUMPI POP DUP2 ISZERO JUMPDEST ISZERO PUSH2 0x2168 JUMPI POP PUSH1 0x0 PUSH2 0xF54 JUMP JUMPDEST PUSH2 0x2174 DUP3 PUSH1 0x0 NOT PUSH2 0x4F58 JUMP JUMPDEST DUP4 GT ISZERO PUSH2 0x21C3 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 0x4D4154485F4D554C5449504C49434154494F4E5F4F564552464C4F5700000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xD58 JUMP JUMPDEST PUSH2 0x2710 PUSH2 0x21D0 DUP4 DUP6 PUSH2 0x4F41 JUMP JUMPDEST PUSH2 0x10C2 SWAP2 SWAP1 PUSH2 0x4F58 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x10C2 DUP4 PUSH1 0x1 DUP2 PUSH2 0x21F5 PUSH8 0xDE0B6B3A7640000 DUP8 PUSH2 0x4F41 JUMP JUMPDEST PUSH2 0x21FF SWAP2 SWAP1 PUSH2 0x4F2E JUMP JUMPDEST PUSH2 0x2209 SWAP2 SWAP1 PUSH2 0x4EAA JUMP JUMPDEST PUSH2 0x2213 SWAP2 SWAP1 PUSH2 0x4F58 JUMP JUMPDEST PUSH2 0x3456 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH2 0x222C NUMBER PUSH2 0x34C3 JUMP JUMPDEST PUSH5 0xFFFFFFFFFF SWAP1 DUP2 AND DUP3 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xD8 SHL SUB DUP1 DUP6 AND PUSH1 0x20 SWAP4 DUP5 ADD MSTORE PUSH1 0x51 DUP1 SLOAD PUSH4 0xFFFFFFFF PUSH1 0x1 PUSH1 0xE0 SHL SWAP2 DUP3 SWAP1 DIV DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x52 DUP8 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP8 MLOAD SWAP8 SWAP1 SWAP7 ADD MLOAD SWAP1 SWAP4 AND PUSH1 0x1 PUSH1 0x28 SHL MUL SWAP6 SWAP1 SWAP4 AND SWAP5 SWAP1 SWAP5 OR SWAP1 SWAP3 SSTORE DUP3 SLOAD PUSH1 0x1C SWAP3 PUSH2 0x2296 SWAP3 SWAP1 SWAP2 DIV AND PUSH2 0x5053 JUMP JUMPDEST SWAP2 SWAP1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH4 0xFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH4 0xFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH2 0x1130 DUP2 PUSH2 0x3529 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 0x1064 SWAP1 DUP5 SWAP1 PUSH4 0xA9059CBB PUSH1 0xE0 SHL 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 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT SWAP1 SWAP4 AND SWAP3 SWAP1 SWAP3 OR SWAP1 SWAP2 MSTORE PUSH2 0x35C5 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x2382 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 PUSH4 0x72657373 PUSH1 0xE0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0xD58 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x23E3 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 PUSH2 0x7373 PUSH1 0xF0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0xD58 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 DUP1 PUSH1 0x0 SUB PUSH2 0x2464 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xD58 SWAP1 PUSH2 0x5078 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3E PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 DUP3 MLOAD DUP1 DUP5 ADD SWAP1 SWAP4 MSTORE SLOAD PUSH5 0xFFFFFFFFFF DUP2 AND DUP4 MSTORE PUSH1 0x1 PUSH1 0x28 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0xD8 SHL SUB AND SWAP1 DUP3 ADD MSTORE PUSH1 0x51 SLOAD PUSH1 0x1 PUSH1 0xD8 SHL SWAP1 DIV PUSH1 0xFF AND PUSH2 0x25A4 JUMPI PUSH1 0x4F SLOAD DUP2 MLOAD PUSH2 0x24CE SWAP2 SWAP1 PUSH5 0xFFFFFFFFFF AND PUSH2 0x4F2E JUMP JUMPDEST TIMESTAMP LT ISZERO PUSH2 0x2515 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 PUSH21 0x24A729AAA32324A1A4A2A72A2FA1A7A7A62227ABA7 PUSH1 0x59 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xD58 JUMP JUMPDEST PUSH1 0x4F SLOAD DUP2 MLOAD PUSH32 0x0 SWAP2 PUSH2 0x254C SWAP2 PUSH5 0xFFFFFFFFFF AND PUSH2 0x4F2E JUMP JUMPDEST PUSH2 0x2556 SWAP1 TIMESTAMP PUSH2 0x4EAA JUMP JUMPDEST GT ISZERO PUSH2 0x25A4 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 0x554E5354414B455F57494E444F575F46494E4953484544000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xD58 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x25AF DUP6 PUSH2 0x1389 JUMP JUMPDEST PUSH1 0x51 SLOAD SWAP1 SWAP2 POP PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0xD8 SHL SWAP1 DIV PUSH1 0xFF AND PUSH2 0x25D9 JUMPI DUP3 PUSH1 0x20 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD8 SHL SUB AND PUSH2 0x25DB JUMP JUMPDEST DUP2 JUMPDEST SWAP1 POP DUP1 PUSH1 0x0 SUB PUSH2 0x262D 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 0x494E56414C49445F5A45524F5F4D41585F52454445454D41424C450000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xD58 JUMP JUMPDEST PUSH1 0x0 DUP2 DUP6 GT PUSH2 0x263C JUMPI DUP5 PUSH2 0x263E JUMP JUMPDEST DUP2 JUMPDEST SWAP1 POP PUSH2 0x264C DUP8 DUP5 PUSH1 0x1 PUSH2 0x3697 JUMP JUMPDEST POP PUSH1 0x0 PUSH2 0x2658 DUP3 PUSH2 0x1324 JUMP JUMPDEST SWAP1 POP PUSH2 0x2664 DUP9 DUP4 PUSH2 0x3746 JUMP JUMPDEST DUP5 MLOAD PUSH5 0xFFFFFFFFFF AND ISZERO PUSH2 0x2731 JUMPI DUP2 DUP6 PUSH1 0x20 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD8 SHL SUB AND PUSH2 0x268B SWAP2 SWAP1 PUSH2 0x4EAA JUMP JUMPDEST PUSH1 0x0 SUB PUSH2 0x26B0 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP9 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3E PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SSTORE PUSH2 0x2731 JUMP JUMPDEST PUSH2 0x26B9 DUP3 PUSH2 0x3884 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP10 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3E PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH2 0x26F5 SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xB8 SHL SUB AND SWAP1 PUSH1 0x1 PUSH1 0x28 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0xD8 SHL SUB AND PUSH2 0x50A5 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP10 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3E PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD8 SHL SUB SWAP3 SWAP1 SWAP3 AND PUSH1 0x1 PUSH1 0x28 SHL MUL PUSH5 0xFFFFFFFFFF SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMPDEST PUSH2 0x2765 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND DUP9 DUP4 PUSH2 0x22BD JUMP JUMPDEST DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP9 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x3F693FFF038BB8A046AA76D9516190AC7444F7D69CF952C4CBDC086FDEF2D6FC DUP4 DUP6 PUSH1 0x40 MLOAD PUSH2 0x27B3 SWAP3 SWAP2 SWAP1 SWAP2 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x0 SUB PUSH2 0x27E7 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xD58 SWAP1 PUSH2 0x5078 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x27FD DUP6 PUSH2 0x27F6 DUP8 PUSH2 0x1389 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3697 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP2 DUP5 GT PUSH2 0x280E JUMPI DUP4 PUSH2 0x2810 JUMP JUMPDEST DUP2 JUMPDEST SWAP1 POP DUP1 PUSH1 0x0 SUB PUSH2 0x2832 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xD58 SWAP1 PUSH2 0x5078 JUMP JUMPDEST PUSH2 0x283C DUP2 DUP4 PUSH2 0x4EAA JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP9 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3D PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SWAP2 SWAP1 SWAP2 SSTORE PUSH2 0x28A7 SWAP1 PUSH32 0x0 AND PUSH32 0x0 DUP8 DUP5 PUSH2 0x2B85 JUMP JUMPDEST DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x9310CCFCB8DE723F578A9E4282EA9F521F05AE40DC08F3068DFAD528A65EE3C7 DUP4 PUSH1 0x40 MLOAD PUSH2 0x28EC SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2909 DUP5 DUP5 PUSH2 0x1E67 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 NOT DUP2 EQ PUSH2 0x169F JUMPI DUP2 DUP2 LT ISZERO PUSH2 0x2964 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 0x45524332303A20696E73756666696369656E7420616C6C6F77616E6365000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xD58 JUMP JUMPDEST PUSH2 0x169F DUP5 DUP5 DUP5 DUP5 SUB PUSH2 0x2320 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x297C DUP5 PUSH2 0x1389 JUMP JUMPDEST SWAP1 POP PUSH2 0x298A DUP5 DUP3 PUSH1 0x1 PUSH2 0x3697 JUMP JUMPDEST POP DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x2A97 JUMPI PUSH1 0x0 PUSH2 0x29AF DUP5 PUSH2 0x1389 JUMP JUMPDEST SWAP1 POP PUSH2 0x29BD DUP5 DUP3 PUSH1 0x1 PUSH2 0x3697 JUMP JUMPDEST POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3E PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 DUP3 MLOAD DUP1 DUP5 ADD SWAP1 SWAP4 MSTORE SLOAD PUSH5 0xFFFFFFFFFF DUP2 AND DUP1 DUP5 MSTORE PUSH1 0x1 PUSH1 0x28 SHL SWAP1 SWAP2 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0xD8 SHL SUB AND SWAP2 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE ISZERO PUSH2 0x2A94 JUMPI DUP4 DUP4 SUB PUSH2 0x2A30 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3E PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SSTORE PUSH2 0x2A94 JUMP JUMPDEST PUSH1 0x20 DUP2 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD8 SHL SUB AND PUSH2 0x2A48 DUP6 DUP6 PUSH2 0x4EAA JUMP JUMPDEST LT ISZERO PUSH2 0x2A94 JUMPI PUSH2 0x2A58 DUP5 DUP5 PUSH2 0x4EAA JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3E PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD8 SHL SUB SWAP3 SWAP1 SWAP3 AND PUSH1 0x1 PUSH1 0x28 SHL MUL PUSH5 0xFFFFFFFFFF SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMPDEST POP POP JUMPDEST PUSH2 0x169F DUP5 DUP5 DUP5 PUSH2 0x38ED JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2AAD DUP3 PUSH2 0x1389 JUMP JUMPDEST SWAP1 POP DUP1 PUSH1 0x0 SUB PUSH2 0x2AFF 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 0x494E56414C49445F42414C414E43455F4F4E5F434F4F4C444F574E0000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xD58 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD DUP3 MSTORE PUSH5 0xFFFFFFFFFF TIMESTAMP DUP2 AND DUP3 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xD8 SHL SUB DUP1 DUP6 AND PUSH1 0x20 DUP1 DUP6 ADD SWAP2 DUP3 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP9 AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x3E SWAP1 SWAP3 MSTORE SWAP1 DUP7 SWAP1 KECCAK256 SWAP5 MLOAD SWAP2 MLOAD SWAP1 SWAP3 AND PUSH1 0x1 PUSH1 0x28 SHL MUL SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SWAP2 SSTORE SWAP1 MLOAD PUSH32 0x8A05F911D8AB7FC50FEC37EF4BA7F9BFCB1A3C191C81DCD824AD0946C4E20D65 SWAP1 PUSH2 0x2142 SWAP1 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 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 0x169F SWAP1 DUP6 SWAP1 PUSH4 0x23B872DD PUSH1 0xE0 SHL SWAP1 PUSH1 0x84 ADD PUSH2 0x22E9 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x2C07 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x11 PUSH1 0x24 DUP3 ADD MSTORE PUSH17 0x494E56414C49445F44454C454741544545 PUSH1 0x78 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xD58 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2C12 DUP3 PUSH2 0x2CBE JUMP JUMPDEST SWAP3 POP POP POP PUSH1 0x0 PUSH2 0x2C21 DUP6 PUSH2 0x1389 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x2C2F DUP7 DUP5 PUSH2 0x2CFD JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP7 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND SWAP2 DUP9 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE SWAP1 POP PUSH2 0x2C6B DUP2 DUP7 DUP5 DUP8 PUSH2 0x3A9C JUMP JUMPDEST DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xE8D51C8E11BD570DB1734C8EC775785330E77007FEED45C43B608EF33FF914BD DUP7 PUSH1 0x40 MLOAD PUSH2 0x2CAE SWAP2 SWAP1 PUSH2 0x50E6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP1 DUP1 DUP5 PUSH1 0x1 DUP2 GT ISZERO PUSH2 0x2CD5 JUMPI PUSH2 0x2CD5 PUSH2 0x503D JUMP JUMPDEST SUB PUSH2 0x2CEA JUMPI POP PUSH1 0x6 SWAP2 POP PUSH1 0x7 SWAP1 POP PUSH1 0x3F PUSH2 0x2CF6 JUMP JUMPDEST POP PUSH1 0x40 SWAP2 POP PUSH1 0x41 SWAP1 POP PUSH1 0x42 JUMPDEST SWAP2 SWAP4 SWAP1 SWAP3 POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP4 SWAP1 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD SWAP1 SWAP2 AND DUP1 PUSH2 0x10C2 JUMPI DUP4 SWAP2 POP POP PUSH2 0xF54 JUMP JUMPDEST PUSH1 0x51 SLOAD PUSH1 0x1 PUSH1 0xD8 SHL SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0x2D75 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 PUSH16 0x534C415348494E475F4F4E474F494E47 PUSH1 0x80 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xD58 JUMP JUMPDEST DUP1 PUSH1 0x0 SUB PUSH2 0x2D95 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xD58 SWAP1 PUSH2 0x5078 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2DA0 DUP4 PUSH2 0x1389 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x2DB8 DUP5 ADDRESS DUP5 PUSH2 0x2DB3 PUSH1 0x2 SLOAD SWAP1 JUMP JUMPDEST PUSH2 0x3CA0 JUMP JUMPDEST SWAP1 POP DUP1 ISZERO PUSH2 0x2E3B JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3D PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH2 0x2DE4 SWAP1 DUP3 SWAP1 PUSH2 0x4F2E JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x3D PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 SWAP4 SWAP1 SWAP4 SSTORE DUP1 MLOAD SWAP2 DUP3 MSTORE SWAP2 DUP2 ADD DUP4 SWAP1 MSTORE PUSH32 0x2468F9268C60AD90E2D49EDB0032C8A001E733AE888B3AB8E982EDF535BE1A76 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMPDEST PUSH1 0x0 PUSH2 0x2E46 DUP5 PUSH2 0x13A4 JUMP JUMPDEST SWAP1 POP PUSH2 0x2E7D PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND DUP8 ADDRESS DUP8 PUSH2 0x2B85 JUMP JUMPDEST PUSH2 0x2E87 DUP6 DUP3 PUSH2 0x3D61 JUMP JUMPDEST DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x6C86F3FD5118B3AA8BB4F389A617046DE0A3D3D477DE1A1673D227F802F616DC DUP7 DUP5 PUSH1 0x40 MLOAD PUSH2 0x2CAE SWAP3 SWAP2 SWAP1 SWAP2 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 ADD SWAP1 JUMP JUMPDEST PUSH2 0x2710 DUP2 LT PUSH2 0x2F26 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 0x494E56414C49445F534C415348494E475F50455243454E544147450000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xD58 JUMP JUMPDEST PUSH1 0x50 DUP2 SWAP1 SSTORE PUSH1 0x40 MLOAD DUP2 DUP2 MSTORE PUSH32 0xB79C2D6C7F5C95EEC9DC05AFFC0ED002620A4EC6D72B7B0744CC8638168C600A SWAP1 PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP JUMP JUMPDEST PUSH1 0x4F DUP2 SWAP1 SSTORE PUSH1 0x40 MLOAD DUP2 DUP2 MSTORE PUSH32 0xBBF67247B5C97564E30FFC0A355E71C006836DE7B9149E09E3D5D6054CB03355 SWAP1 PUSH1 0x20 ADD PUSH2 0x2F57 JUMP JUMPDEST PUSH1 0x0 DUP1 DUP1 JUMPDEST DUP4 MLOAD DUP2 LT ISZERO PUSH2 0x3092 JUMPI PUSH1 0x0 PUSH1 0x3C PUSH1 0x0 DUP7 DUP5 DUP2 MLOAD DUP2 LT PUSH2 0x2FBD JUMPI PUSH2 0x2FBD PUSH2 0x4F7A JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD DUP2 ADD MLOAD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP3 MSTORE DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x40 ADD PUSH1 0x0 SWAP1 DUP2 KECCAK256 PUSH1 0x1 DUP2 ADD SLOAD DUP2 SLOAD DUP9 MLOAD SWAP3 SWAP5 POP PUSH2 0x302B SWAP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB DUP1 DUP4 AND SWAP3 PUSH1 0x1 PUSH1 0x80 SHL SWAP1 DIV AND SWAP1 DUP11 SWAP1 DUP9 SWAP1 DUP2 LT PUSH2 0x301A JUMPI PUSH2 0x301A PUSH2 0x4F7A JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x40 ADD MLOAD PUSH2 0x3E2C JUMP JUMPDEST SWAP1 POP PUSH2 0x307C DUP7 DUP5 DUP2 MLOAD DUP2 LT PUSH2 0x3042 JUMPI PUSH2 0x3042 PUSH2 0x4F7A JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x20 ADD MLOAD DUP3 DUP5 PUSH1 0x2 ADD PUSH1 0x0 DUP12 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD PUSH2 0x3F37 JUMP JUMPDEST PUSH2 0x3086 SWAP1 DUP6 PUSH2 0x4F2E JUMP JUMPDEST SWAP4 POP POP POP PUSH1 0x1 ADD PUSH2 0x2F9C JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x313D 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 0x5245574152445F544F4B454E5F49535F4E4F545F5354414B45445F544F4B454E PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xD58 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3153 DUP6 PUSH2 0x314C DUP8 PUSH2 0x1389 JUMP JUMPDEST PUSH1 0x1 PUSH2 0x3697 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP2 DUP5 GT PUSH2 0x3164 JUMPI DUP4 PUSH2 0x3166 JUMP JUMPDEST DUP2 JUMPDEST SWAP1 POP DUP1 ISZERO PUSH2 0x1A56 JUMPI PUSH2 0x3179 DUP7 ADDRESS DUP4 PUSH2 0x27C5 JUMP JUMPDEST POP PUSH2 0x1A56 ADDRESS DUP7 DUP4 PUSH2 0x2D28 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x3 DUP1 DUP3 MSTORE PUSH1 0x80 DUP3 ADD SWAP1 SWAP3 MSTORE PUSH1 0x0 SWAP2 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 0x319D JUMPI SWAP1 POP POP SWAP1 POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE PUSH1 0x20 ADD DUP8 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 MSTORE POP DUP2 PUSH1 0x0 DUP2 MLOAD DUP2 LT PUSH2 0x31F8 JUMPI PUSH2 0x31F8 PUSH2 0x4F7A JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 SWAP1 MSTORE POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x1 DUP2 MSTORE PUSH1 0x20 ADD DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 MSTORE POP DUP2 PUSH1 0x1 DUP2 MLOAD DUP2 LT PUSH2 0x3235 JUMPI PUSH2 0x3235 PUSH2 0x4F7A JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 SWAP1 MSTORE POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x2 DUP2 MSTORE PUSH1 0x20 ADD DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 MSTORE POP DUP2 PUSH1 0x2 DUP2 MLOAD DUP2 LT PUSH2 0x3272 JUMPI PUSH2 0x3272 PUSH2 0x4F7A JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 SWAP1 MSTORE POP PUSH2 0x3286 DUP2 PUSH2 0x3F63 JUMP JUMPDEST PUSH2 0x328F DUP4 PUSH2 0x2ED5 JUMP JUMPDEST PUSH2 0x3298 DUP3 PUSH2 0x2F62 JUMP JUMPDEST PUSH2 0x1478 PUSH8 0xDE0B6B3A7640000 PUSH2 0x2218 JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP2 MLOAD DUP2 LT ISZERO PUSH2 0x1074 JUMPI PUSH1 0x0 PUSH1 0x3C PUSH1 0x0 DUP5 DUP5 DUP2 MLOAD DUP2 LT PUSH2 0x32CD JUMPI PUSH2 0x32CD PUSH2 0x4F7A JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x40 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SWAP1 POP PUSH2 0x3340 DUP4 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x3310 JUMPI PUSH2 0x3310 PUSH2 0x4F7A JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x40 ADD MLOAD DUP3 DUP6 DUP6 DUP2 MLOAD DUP2 LT PUSH2 0x332F JUMPI PUSH2 0x332F PUSH2 0x4F7A JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x20 ADD MLOAD PUSH2 0x4135 JUMP JUMPDEST POP DUP3 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x3353 JUMPI PUSH2 0x3353 PUSH2 0x4F7A JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD MLOAD MLOAD DUP2 SLOAD PUSH16 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB SWAP1 SWAP2 AND OR DUP2 SSTORE DUP3 MLOAD DUP4 SWAP1 DUP4 SWAP1 DUP2 LT PUSH2 0x3396 JUMPI PUSH2 0x3396 PUSH2 0x4F7A JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x40 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x87FA03892A0556CB6B8F97E6D533A150D4D55FCBF275FFF5FA003FA636BCC7FA DUP5 DUP5 DUP2 MLOAD DUP2 LT PUSH2 0x33DE JUMPI PUSH2 0x33DE PUSH2 0x4F7A JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD DUP2 ADD MLOAD MLOAD PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP PUSH1 0x1 ADD PUSH2 0x32AC JUMP JUMPDEST PUSH1 0x51 SLOAD PUSH1 0x0 SWAP1 PUSH2 0x342D SWAP1 PUSH1 0x52 SWAP1 PUSH1 0x1 PUSH1 0xE0 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND DUP5 PUSH2 0x41ED JUMP JUMPDEST PUSH8 0xDE0B6B3A7640000 PUSH2 0x3442 DUP8 DUP8 DUP8 DUP8 PUSH2 0x42FA JUMP JUMPDEST PUSH2 0x344C SWAP2 SWAP1 PUSH2 0x4F41 JUMP JUMPDEST PUSH2 0x1A56 SWAP2 SWAP1 PUSH2 0x4F58 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xD8 SHL SUB DUP3 GT ISZERO PUSH2 0x34BF 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 PUSH7 0x31362062697473 PUSH1 0xC8 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0xD58 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH5 0xFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x34BF 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 0x53616665436173743A2076616C756520646F65736E27742066697420696E2034 PUSH1 0x44 DUP3 ADD MSTORE PUSH6 0x302062697473 PUSH1 0xD0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0xD58 JUMP JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xD8 SHL SUB AND PUSH1 0x0 SUB PUSH2 0x3577 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 PUSH18 0x5A45524F5F45584348414E47455F52415445 PUSH1 0x70 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xD58 JUMP JUMPDEST PUSH1 0x51 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD8 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xD8 SHL SUB DUP4 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH32 0xA9C433F9734BAA3CF48B209454BB0ACE054E191F677BA50E74B696C0D35EF262 SWAP1 PUSH1 0x20 ADD PUSH2 0x2F57 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x361A 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 0x43D4 SWAP1 SWAP3 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST DUP1 MLOAD SWAP1 SWAP2 POP ISZERO PUSH2 0x1064 JUMPI DUP1 DUP1 PUSH1 0x20 ADD SWAP1 MLOAD DUP2 ADD SWAP1 PUSH2 0x3638 SWAP2 SWAP1 PUSH2 0x4F90 JUMP JUMPDEST PUSH2 0x1064 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 PUSH10 0x1BDD081CDD58D8D95959 PUSH1 0xB2 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0xD58 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x36A9 DUP6 ADDRESS DUP7 PUSH2 0x2DB3 PUSH1 0x2 SLOAD SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3D PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD SWAP2 SWAP3 POP SWAP1 PUSH2 0x36D1 SWAP1 DUP4 SWAP1 PUSH2 0x4F2E JUMP JUMPDEST SWAP1 POP DUP2 ISZERO PUSH2 0x1A56 JUMPI DUP4 ISZERO PUSH2 0x36FB JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3D PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP2 SWAP1 SSTORE JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP9 AND DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 SWAP1 MSTORE PUSH32 0x2468F9268C60AD90E2D49EDB0032C8A001E733AE888B3AB8E982EDF535BE1A76 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x37A6 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 PUSH1 0x73 PUSH1 0xF8 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0xD58 JUMP JUMPDEST PUSH2 0x37B2 DUP3 PUSH1 0x0 DUP4 PUSH2 0x43E3 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 0x3826 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 PUSH2 0x6365 PUSH1 0xF0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0xD58 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 DUP7 DUP7 SUB SWAP1 SSTORE PUSH1 0x2 DUP1 SLOAD DUP8 SWAP1 SUB SWAP1 SSTORE MLOAD DUP6 DUP2 MSTORE SWAP2 SWAP3 SWAP2 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xB8 SHL SUB DUP3 GT ISZERO PUSH2 0x34BF 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 PUSH7 0x38342062697473 PUSH1 0xC8 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0xD58 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x3951 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 PUSH5 0x6472657373 PUSH1 0xD8 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0xD58 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x39B3 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 PUSH3 0x657373 PUSH1 0xE8 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0xD58 JUMP JUMPDEST PUSH2 0x39BE DUP4 DUP4 DUP4 PUSH2 0x43E3 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 0x3A36 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 PUSH6 0x616C616E6365 PUSH1 0xD0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0xD58 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 DUP2 AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 DUP8 DUP8 SUB SWAP1 SSTORE SWAP4 DUP8 AND DUP1 DUP4 MSTORE SWAP2 DUP5 SWAP1 KECCAK256 DUP1 SLOAD DUP8 ADD SWAP1 SSTORE SWAP3 MLOAD DUP6 DUP2 MSTORE SWAP1 SWAP3 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH2 0x169F JUMP JUMPDEST DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SUB ISZERO PUSH2 0x169F JUMPI PUSH1 0x0 DUP1 PUSH2 0x3AC2 DUP4 PUSH2 0x2CBE JUMP JUMPDEST POP SWAP1 SWAP3 POP SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND ISZERO PUSH2 0x3BB3 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP3 SWAP1 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD DUP1 ISZERO PUSH2 0x3B42 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP9 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP6 SWAP1 MSTORE PUSH1 0x40 DUP2 KECCAK256 SWAP1 PUSH2 0x3B1A PUSH1 0x1 DUP5 PUSH2 0x4EAA JUMP JUMPDEST DUP2 MSTORE PUSH1 0x20 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x40 ADD PUSH1 0x0 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x80 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND SWAP2 POP PUSH2 0x3B4E JUMP JUMPDEST PUSH2 0x3B4B DUP9 PUSH2 0x1389 JUMP JUMPDEST SWAP2 POP JUMPDEST PUSH2 0x3B64 DUP5 DUP5 DUP11 DUP6 PUSH2 0x3B5F DUP12 DUP3 PUSH2 0x4EAA JUMP JUMPDEST PUSH2 0x4562 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP9 AND PUSH32 0xA0A19463EE116110C9B282012D9B65CC5522DC38A9520340CBAF3142E550127F PUSH2 0x3B99 DUP9 DUP6 PUSH2 0x4EAA JUMP JUMPDEST DUP8 PUSH1 0x40 MLOAD PUSH2 0x3BA8 SWAP3 SWAP2 SWAP1 PUSH2 0x50F4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND ISZERO PUSH2 0x1478 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP3 SWAP1 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD DUP1 ISZERO PUSH2 0x3C2D JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP6 SWAP1 MSTORE PUSH1 0x40 DUP2 KECCAK256 SWAP1 PUSH2 0x3C05 PUSH1 0x1 DUP5 PUSH2 0x4EAA JUMP JUMPDEST DUP2 MSTORE PUSH1 0x20 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x40 ADD PUSH1 0x0 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x80 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND SWAP2 POP PUSH2 0x3C39 JUMP JUMPDEST PUSH2 0x3C36 DUP8 PUSH2 0x1389 JUMP JUMPDEST SWAP2 POP JUMPDEST PUSH2 0x3C4A DUP5 DUP5 DUP10 DUP6 PUSH2 0x3B5F DUP12 DUP3 PUSH2 0x4F2E JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND PUSH32 0xA0A19463EE116110C9B282012D9B65CC5522DC38A9520340CBAF3142E550127F PUSH2 0x3C7F DUP9 DUP6 PUSH2 0x4F2E JUMP JUMPDEST DUP8 PUSH1 0x40 MLOAD PUSH2 0x3C8E SWAP3 SWAP2 SWAP1 PUSH2 0x50F4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP5 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3C PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 DUP9 AND DUP4 MSTORE PUSH1 0x2 DUP5 ADD SWAP1 SWAP2 MSTORE DUP2 KECCAK256 SLOAD SWAP1 SWAP2 SWAP1 DUP3 DUP1 PUSH2 0x3CDB DUP9 DUP6 DUP9 PUSH2 0x4135 JUMP JUMPDEST SWAP1 POP DUP1 DUP4 EQ PUSH2 0x3D55 JUMPI DUP7 ISZERO PUSH2 0x3CF8 JUMPI PUSH2 0x3CF5 DUP8 DUP3 DUP6 PUSH2 0x3F37 JUMP JUMPDEST SWAP2 POP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP11 AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x2 DUP8 ADD PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 DUP2 SWAP1 KECCAK256 DUP5 SWAP1 SSTORE MLOAD SWAP2 DUP11 AND SWAP2 PUSH32 0xBB123B5C06D5408BBEA3C4FEF481578175CFB432E3B482C6186F02ED9086585B SWAP1 PUSH2 0x3D4C SWAP1 DUP6 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 JUMPDEST POP SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x3DB7 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 0xD58 JUMP JUMPDEST PUSH2 0x3DC3 PUSH1 0x0 DUP4 DUP4 PUSH2 0x43E3 JUMP JUMPDEST DUP1 PUSH1 0x2 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x3DD5 SWAP2 SWAP1 PUSH2 0x4F2E JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 DUP1 SLOAD DUP7 ADD SWAP1 SSTORE MLOAD DUP5 DUP2 MSTORE PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x0 DUP4 ISZERO DUP1 PUSH2 0x3E39 JUMPI POP DUP2 ISZERO JUMPDEST DUP1 PUSH2 0x3E4C JUMPI POP TIMESTAMP DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND EQ JUMPDEST DUP1 PUSH2 0x3E80 JUMPI POP PUSH32 0x0 DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND LT ISZERO JUMPDEST ISZERO PUSH2 0x3E8C JUMPI POP DUP4 PUSH2 0x1381 JUMP JUMPDEST PUSH1 0x0 PUSH32 0x0 TIMESTAMP GT PUSH2 0x3EBB JUMPI TIMESTAMP PUSH2 0x3EDD JUMP JUMPDEST PUSH32 0x0 JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x3EF4 PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB DUP7 AND DUP4 PUSH2 0x4EAA JUMP JUMPDEST SWAP1 POP DUP7 DUP5 PUSH2 0x3F04 PUSH1 0x12 PUSH1 0xA PUSH2 0x51EF JUMP JUMPDEST PUSH2 0x3F0E DUP5 DUP11 PUSH2 0x4F41 JUMP JUMPDEST PUSH2 0x3F18 SWAP2 SWAP1 PUSH2 0x4F41 JUMP JUMPDEST PUSH2 0x3F22 SWAP2 SWAP1 PUSH2 0x4F58 JUMP JUMPDEST PUSH2 0x3F2C SWAP2 SWAP1 PUSH2 0x4F2E JUMP JUMPDEST SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3F45 PUSH1 0x12 PUSH1 0xA PUSH2 0x51EF JUMP JUMPDEST PUSH2 0x3F4F DUP4 DUP6 PUSH2 0x4EAA JUMP JUMPDEST PUSH2 0x3F59 SWAP1 DUP7 PUSH2 0x4F41 JUMP JUMPDEST PUSH2 0x10BF SWAP2 SWAP1 PUSH2 0x4F58 JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP2 MLOAD DUP2 LT ISZERO PUSH2 0x1074 JUMPI PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x45 PUSH1 0x0 DUP5 DUP5 DUP2 MLOAD DUP2 LT PUSH2 0x3F90 JUMPI PUSH2 0x3F90 PUSH2 0x4F7A JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD DUP2 ADD MLOAD MLOAD DUP3 MSTORE DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x40 ADD PUSH1 0x0 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ DUP1 ISZERO PUSH2 0x3FF2 JUMPI POP PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP3 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x3FDA JUMPI PUSH2 0x3FDA PUSH2 0x4F7A JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x20 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ ISZERO JUMPDEST PUSH2 0x403E 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 0x41444D494E5F43414E4E4F545F42455F494E495449414C495A45440000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xD58 JUMP JUMPDEST DUP2 DUP2 DUP2 MLOAD DUP2 LT PUSH2 0x4050 JUMPI PUSH2 0x4050 PUSH2 0x4F7A JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x20 ADD MLOAD PUSH1 0x45 PUSH1 0x0 DUP5 DUP5 DUP2 MLOAD DUP2 LT PUSH2 0x4072 JUMPI PUSH2 0x4072 PUSH2 0x4F7A JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x0 ADD MLOAD DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB MUL NOT AND SWAP1 DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND MUL OR SWAP1 SSTORE POP DUP2 DUP2 DUP2 MLOAD DUP2 LT PUSH2 0x40C2 JUMPI PUSH2 0x40C2 PUSH2 0x4F7A JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x20 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x83A9DDAD961DCB7C6894C9585A16FF7792C2EC8281256A3CC7303AE830152DCF DUP4 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x410A JUMPI PUSH2 0x410A PUSH2 0x4F7A JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x0 ADD MLOAD PUSH1 0x40 MLOAD PUSH2 0x4125 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 PUSH1 0x1 ADD PUSH2 0x3F66 JUMP JUMPDEST PUSH1 0x1 DUP3 ADD SLOAD DUP3 SLOAD PUSH1 0x0 SWAP2 SWAP1 PUSH1 0x1 PUSH1 0x80 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND TIMESTAMP DUP2 SWAP1 SUB PUSH2 0x4160 JUMPI POP SWAP1 POP PUSH2 0x10C2 JUMP JUMPDEST DUP5 SLOAD PUSH1 0x0 SWAP1 PUSH2 0x417B SWAP1 DUP5 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND DUP5 DUP9 PUSH2 0x3E2C JUMP JUMPDEST SWAP1 POP DUP3 DUP2 EQ PUSH2 0x41CA JUMPI PUSH1 0x1 DUP7 ADD DUP2 SWAP1 SSTORE PUSH1 0x40 MLOAD DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP9 AND SWAP1 PUSH32 0x5777CA300DFE5BEAD41006FBCE4389794DBC0ED8D6CCCEBFAF94630AA04184BC SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 JUMPDEST DUP6 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB TIMESTAMP DUP2 AND PUSH1 0x1 PUSH1 0x80 SHL MUL SWAP2 AND OR DUP7 SSTORE SWAP3 POP POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 NOT DUP3 ADD PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP5 SWAP1 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD PUSH5 0xFFFFFFFFFF AND DUP3 LT PUSH2 0x4238 JUMPI POP PUSH1 0x0 NOT DUP3 ADD PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP5 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x28 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0xD8 SHL SUB AND PUSH2 0x10C2 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x0 NOT DUP5 ADD JUMPDEST DUP2 DUP2 GT ISZERO PUSH2 0x42D1 JUMPI PUSH1 0x2 DUP3 DUP3 SUB DIV DUP2 SUB PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x20 DUP9 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 DUP3 MLOAD DUP1 DUP5 ADD SWAP1 SWAP4 MSTORE SLOAD PUSH5 0xFFFFFFFFFF DUP2 AND DUP1 DUP5 MSTORE PUSH1 0x1 PUSH1 0x28 SHL SWAP1 SWAP2 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0xD8 SHL SUB AND SWAP2 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE DUP7 SWAP1 SUB PUSH2 0x42AB JUMPI PUSH1 0x20 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD8 SHL SUB AND SWAP4 POP PUSH2 0x10C2 SWAP3 POP POP POP JUMP JUMPDEST DUP1 MLOAD PUSH5 0xFFFFFFFFFF AND DUP7 GT ISZERO PUSH2 0x42C3 JUMPI DUP2 SWAP4 POP PUSH2 0x42CA JUMP JUMPDEST PUSH1 0x1 DUP3 SUB SWAP3 POP JUMPDEST POP POP PUSH2 0x4240 JUMP JUMPDEST POP PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 SWAP5 SWAP1 SWAP5 MSTORE POP POP PUSH1 0x40 SWAP1 SWAP2 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x28 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0xD8 SHL SUB AND SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 NUMBER DUP3 GT ISZERO PUSH2 0x4343 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 PUSH20 0x24A72B20A624A22FA12627A1A5AFA72AA6A122A9 PUSH1 0x61 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xD58 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP6 SWAP1 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD SWAP1 DUP2 SWAP1 SUB PUSH2 0x4375 JUMPI PUSH2 0x436D DUP5 PUSH2 0x1389 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x1381 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP8 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 DUP4 DUP1 MSTORE SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND DUP4 LT ISZERO PUSH2 0x43B1 JUMPI PUSH1 0x0 SWAP2 POP POP PUSH2 0x1381 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP8 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH2 0x1AC5 SWAP1 DUP3 DUP6 PUSH2 0x4678 JUMP JUMPDEST PUSH1 0x60 PUSH2 0x10BF DUP5 DUP5 PUSH1 0x0 DUP6 PUSH2 0x4784 JUMP JUMPDEST PUSH1 0x53 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP1 ISZERO PUSH2 0x44BA JUMPI DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x5B9C4CF1 DUP6 DUP6 PUSH2 0x440F DUP9 PUSH2 0x1389 JUMP JUMPDEST PUSH2 0x4418 DUP9 PUSH2 0x1389 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0xE0 DUP8 SWAP1 SHL AND DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP5 DUP6 AND PUSH1 0x4 DUP3 ADD MSTORE SWAP4 SWAP1 SWAP3 AND PUSH1 0x24 DUP5 ADD MSTORE PUSH1 0x44 DUP4 ADD MSTORE PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 DUP2 ADD DUP6 SWAP1 MSTORE PUSH1 0xA4 ADD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x4473 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x4484 JUMPI POP PUSH1 0x1 JUMPDEST PUSH2 0x44BA JUMPI RETURNDATASIZE DUP1 DUP1 ISZERO PUSH2 0x44B2 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 0x44B7 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP POP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP6 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3F PUSH1 0x20 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 SLOAD DUP7 DUP5 AND DUP4 MSTORE SWAP2 KECCAK256 SLOAD SWAP1 DUP3 AND SWAP2 AND DUP2 PUSH2 0x44EB JUMPI DUP6 SWAP2 POP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x44FC JUMPI POP DUP4 JUMPDEST PUSH2 0x4509 DUP3 DUP3 DUP7 PUSH1 0x0 PUSH2 0x3A9C JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP8 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x42 PUSH1 0x20 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 SLOAD DUP9 DUP5 AND DUP4 MSTORE SWAP2 KECCAK256 SLOAD SWAP1 DUP3 AND SWAP2 AND DUP2 PUSH2 0x453A JUMPI DUP8 SWAP2 POP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x454B JUMPI POP DUP6 JUMPDEST PUSH2 0x4558 DUP3 DUP3 DUP9 PUSH1 0x1 PUSH2 0x3A9C JUMP JUMPDEST POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP6 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SLOAD SWAP2 DUP9 SWAP1 MSTORE SWAP1 SWAP2 KECCAK256 NUMBER SWAP2 SWAP1 DUP2 ISZERO DUP1 ISZERO SWAP1 PUSH2 0x45C4 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB DUP4 AND DUP2 PUSH1 0x0 PUSH2 0x45A8 PUSH1 0x1 DUP7 PUSH2 0x4EAA JUMP JUMPDEST DUP2 MSTORE PUSH1 0x20 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x40 ADD PUSH1 0x0 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND EQ JUMPDEST ISZERO PUSH2 0x4608 JUMPI DUP4 DUP2 PUSH1 0x0 PUSH2 0x45D8 PUSH1 0x1 DUP7 PUSH2 0x4EAA JUMP JUMPDEST DUP2 MSTORE PUSH1 0x20 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x40 ADD PUSH1 0x0 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB SWAP3 DUP4 AND PUSH1 0x1 PUSH1 0x80 SHL MUL SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE PUSH2 0x4558 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD DUP3 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB DUP1 DUP7 AND DUP3 MSTORE DUP7 DUP2 AND PUSH1 0x20 DUP1 DUP5 ADD SWAP2 DUP3 MSTORE PUSH1 0x0 DUP8 DUP2 MSTORE SWAP1 DUP7 SWAP1 MSTORE SWAP4 SWAP1 SWAP4 KECCAK256 SWAP2 MLOAD SWAP3 MLOAD DUP2 AND PUSH1 0x1 PUSH1 0x80 SHL MUL SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE PUSH2 0x4655 DUP3 PUSH1 0x1 PUSH2 0x4F2E JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP10 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SSTORE POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 NOT DUP3 ADD PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP5 SWAP1 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND DUP3 LT PUSH2 0x46C5 JUMPI POP PUSH1 0x0 NOT DUP3 ADD PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP5 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x80 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND PUSH2 0x10C2 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x0 NOT DUP5 ADD JUMPDEST DUP2 DUP2 GT ISZERO PUSH2 0x475B JUMPI PUSH1 0x2 DUP3 DUP3 SUB DIV DUP2 SUB PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x20 DUP9 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 DUP3 MLOAD DUP1 DUP5 ADD SWAP1 SWAP4 MSTORE SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB DUP1 DUP3 AND DUP1 DUP6 MSTORE PUSH1 0x1 PUSH1 0x80 SHL SWAP1 SWAP3 DIV AND SWAP2 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE DUP7 SWAP1 SUB PUSH2 0x4733 JUMPI PUSH1 0x20 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND SWAP4 POP PUSH2 0x10C2 SWAP3 POP POP POP JUMP JUMPDEST DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND DUP7 GT ISZERO PUSH2 0x474D JUMPI DUP2 SWAP4 POP PUSH2 0x4754 JUMP JUMPDEST PUSH1 0x1 DUP3 SUB SWAP3 POP JUMPDEST POP POP PUSH2 0x46CD JUMP JUMPDEST POP PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 SWAP5 SWAP1 SWAP5 MSTORE POP POP PUSH1 0x40 SWAP1 SWAP2 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x80 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 DUP3 SELFBALANCE LT ISZERO PUSH2 0x47E5 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 PUSH6 0x1C8818D85B1B PUSH1 0xD2 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0xD58 JUMP JUMPDEST PUSH1 0x0 DUP1 DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP6 DUP8 PUSH1 0x40 MLOAD PUSH2 0x4801 SWAP2 SWAP1 PUSH2 0x51FB 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 0x483E 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 0x4843 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP SWAP2 POP SWAP2 POP PUSH2 0x3F2C DUP8 DUP4 DUP4 DUP8 PUSH1 0x60 DUP4 ISZERO PUSH2 0x48BE JUMPI DUP3 MLOAD PUSH1 0x0 SUB PUSH2 0x48B7 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND EXTCODESIZE PUSH2 0x48B7 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 0xD58 JUMP JUMPDEST POP DUP2 PUSH2 0x1381 JUMP JUMPDEST PUSH2 0x1381 DUP4 DUP4 DUP2 MLOAD ISZERO PUSH2 0x48D3 JUMPI DUP2 MLOAD DUP1 DUP4 PUSH1 0x20 ADD REVERT JUMPDEST DUP1 PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xD58 SWAP2 SWAP1 PUSH2 0x497E JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x1130 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x4915 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x4920 DUP2 PUSH2 0x48ED JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x4949 JUMPI DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH2 0x4931 JUMP JUMPDEST POP POP PUSH1 0x0 SWAP2 ADD MSTORE JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD DUP1 DUP5 MSTORE PUSH2 0x496A DUP2 PUSH1 0x20 DUP7 ADD PUSH1 0x20 DUP7 ADD PUSH2 0x492E JUMP JUMPDEST PUSH1 0x1F ADD PUSH1 0x1F NOT AND SWAP3 SWAP1 SWAP3 ADD PUSH1 0x20 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH1 0x0 PUSH2 0x10C2 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x4952 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x49A3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x10C2 DUP2 PUSH2 0x48ED JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x49C0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x49DC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x49E7 DUP2 PUSH2 0x48ED JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH2 0x49F7 DUP2 PUSH2 0x48ED JUMP JUMPDEST SWAP3 SWAP6 SWAP3 SWAP5 POP POP POP PUSH1 0x40 SWAP2 SWAP1 SWAP2 ADD CALLDATALOAD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x4A1B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x4A26 DUP2 PUSH2 0x48ED JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x4A36 DUP2 PUSH2 0x48ED JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x2 DUP2 LT PUSH2 0x4A50 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x4A68 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x4A73 DUP2 PUSH2 0x48ED JUMP JUMPDEST SWAP2 POP PUSH2 0x4A81 PUSH1 0x20 DUP5 ADD PUSH2 0x4A41 JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0xFF DUP2 AND DUP2 EQ PUSH2 0x4A50 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0xC0 DUP8 DUP10 SUB SLT ISZERO PUSH2 0x4AB4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP7 CALLDATALOAD PUSH2 0x4ABF DUP2 PUSH2 0x48ED JUMP JUMPDEST SWAP6 POP PUSH1 0x20 DUP8 ADD CALLDATALOAD SWAP5 POP PUSH1 0x40 DUP8 ADD CALLDATALOAD SWAP4 POP PUSH2 0x4ADB PUSH1 0x60 DUP9 ADD PUSH2 0x4A8A JUMP JUMPDEST SWAP6 SWAP9 SWAP5 SWAP8 POP SWAP3 SWAP6 PUSH1 0x80 DUP2 ADD CALLDATALOAD SWAP5 PUSH1 0xA0 SWAP1 SWAP2 ADD CALLDATALOAD SWAP4 POP SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4B07 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH4 0xFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x10C2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x4B31 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH2 0x4B3C DUP2 PUSH2 0x48ED JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD CALLDATALOAD PUSH2 0x4B4C DUP2 PUSH2 0x48ED JUMP JUMPDEST SWAP4 SWAP7 SWAP4 SWAP6 POP POP POP POP PUSH1 0x40 DUP3 ADD CALLDATALOAD SWAP2 PUSH1 0x60 ADD CALLDATALOAD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0xA0 DUP7 DUP9 SUB SLT ISZERO PUSH2 0x4B79 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP6 CALLDATALOAD PUSH2 0x4B84 DUP2 PUSH2 0x48ED JUMP JUMPDEST SWAP5 POP PUSH1 0x20 DUP7 ADD CALLDATALOAD PUSH2 0x4B94 DUP2 PUSH2 0x48ED JUMP JUMPDEST SWAP4 POP PUSH1 0x40 DUP7 ADD CALLDATALOAD PUSH2 0x4BA4 DUP2 PUSH2 0x48ED JUMP JUMPDEST SWAP5 SWAP8 SWAP4 SWAP7 POP SWAP4 SWAP5 PUSH1 0x60 DUP2 ADD CALLDATALOAD SWAP5 POP PUSH1 0x80 ADD CALLDATALOAD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x4BCF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x4A36 DUP2 PUSH2 0x48ED JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x60 DUP2 ADD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x4C1A JUMPI PUSH2 0x4C1A PUSH2 0x4BE1 JUMP JUMPDEST PUSH1 0x40 MSTORE SWAP1 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 0x4C49 JUMPI PUSH2 0x4C49 PUSH2 0x4BE1 JUMP JUMPDEST PUSH1 0x40 MSTORE SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4C63 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x4C7A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 ADD PUSH1 0x1F DUP2 ADD DUP5 SGT PUSH2 0x4C8B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x4CA5 JUMPI PUSH2 0x4CA5 PUSH2 0x4BE1 JUMP JUMPDEST PUSH2 0x4CB4 PUSH1 0x20 DUP3 PUSH1 0x5 SHL ADD PUSH2 0x4C20 JUMP JUMPDEST DUP1 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP2 POP PUSH1 0x20 PUSH1 0x60 DUP5 MUL DUP6 ADD ADD SWAP3 POP DUP7 DUP4 GT ISZERO PUSH2 0x4CD6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x20 DUP5 ADD SWAP4 POP JUMPDEST DUP3 DUP5 LT ISZERO PUSH2 0x1AC5 JUMPI PUSH1 0x60 DUP5 DUP9 SUB SLT ISZERO PUSH2 0x4CF5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x4CFD PUSH2 0x4BF7 JUMP JUMPDEST DUP5 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x4D14 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MSTORE PUSH1 0x20 DUP6 DUP2 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x40 DUP6 ADD CALLDATALOAD PUSH2 0x4D2E DUP2 PUSH2 0x48ED JUMP JUMPDEST PUSH1 0x40 DUP3 ADD MSTORE DUP3 MSTORE PUSH1 0x60 SWAP4 SWAP1 SWAP4 ADD SWAP3 PUSH1 0x20 SWAP1 SWAP2 ADD SWAP1 PUSH2 0x4CDD JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x4D5C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x4D67 DUP2 PUSH2 0x48ED JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD SWAP2 POP PUSH2 0x4D7C PUSH1 0x40 DUP6 ADD PUSH2 0x4A41 JUMP JUMPDEST 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 0x4DA0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP8 CALLDATALOAD PUSH2 0x4DAB DUP2 PUSH2 0x48ED JUMP JUMPDEST SWAP7 POP PUSH1 0x20 DUP9 ADD CALLDATALOAD PUSH2 0x4DBB DUP2 PUSH2 0x48ED JUMP JUMPDEST SWAP6 POP PUSH1 0x40 DUP9 ADD CALLDATALOAD SWAP5 POP PUSH1 0x60 DUP9 ADD CALLDATALOAD SWAP4 POP PUSH2 0x4DD7 PUSH1 0x80 DUP10 ADD PUSH2 0x4A8A JUMP 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 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x4E09 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x4E14 DUP2 PUSH2 0x48ED JUMP JUMPDEST SWAP6 PUSH1 0x20 DUP6 ADD CALLDATALOAD SWAP6 POP PUSH1 0x40 SWAP1 SWAP5 ADD CALLDATALOAD SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0xE0 DUP9 DUP11 SUB SLT ISZERO PUSH2 0x4E44 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP8 CALLDATALOAD PUSH2 0x4E4F DUP2 PUSH2 0x48ED JUMP JUMPDEST SWAP7 POP PUSH2 0x4DBB PUSH1 0x20 DUP10 ADD PUSH2 0x4A41 JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE PUSH1 0x19 SWAP1 DUP3 ADD MSTORE PUSH32 0x43414C4C45525F4E4F545F534C415348494E475F41444D494E00000000000000 PUSH1 0x40 DUP3 ADD MSTORE PUSH1 0x60 ADD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST DUP2 DUP2 SUB DUP2 DUP2 GT ISZERO PUSH2 0xF54 JUMPI PUSH2 0xF54 PUSH2 0x4E94 JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0x4ED1 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x4EF1 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 0x20 DUP1 DUP3 MSTORE PUSH1 0x17 SWAP1 DUP3 ADD MSTORE PUSH32 0x43414C4C45525F4E4F545F434C41494D5F48454C504552000000000000000000 PUSH1 0x40 DUP3 ADD MSTORE PUSH1 0x60 ADD SWAP1 JUMP JUMPDEST DUP1 DUP3 ADD DUP1 DUP3 GT ISZERO PUSH2 0xF54 JUMPI PUSH2 0xF54 PUSH2 0x4E94 JUMP JUMPDEST DUP1 DUP3 MUL DUP2 ISZERO DUP3 DUP3 DIV DUP5 EQ OR PUSH2 0xF54 JUMPI PUSH2 0xF54 PUSH2 0x4E94 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x4F75 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 PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4FA2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0x10C2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1901 PUSH1 0xF0 SHL DUP2 MSTORE PUSH1 0x2 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x22 DUP3 ADD MSTORE PUSH1 0x42 ADD SWAP1 JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE PUSH1 0x11 SWAP1 DUP3 ADD MSTORE PUSH17 0x494E56414C49445F5349474E4154555245 PUSH1 0x78 SHL PUSH1 0x40 DUP3 ADD MSTORE PUSH1 0x60 ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 DUP3 ADD PUSH2 0x500A JUMPI PUSH2 0x500A PUSH2 0x4E94 JUMP JUMPDEST POP PUSH1 0x1 ADD SWAP1 JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE PUSH1 0x12 SWAP1 DUP3 ADD MSTORE PUSH18 0x24A72B20A624A22FA2AC2824A920AA24A7A7 PUSH1 0x71 SHL PUSH1 0x40 DUP3 ADD MSTORE PUSH1 0x60 ADD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH4 0xFFFFFFFF DUP3 AND PUSH4 0xFFFFFFFF DUP2 SUB PUSH2 0x506F JUMPI PUSH2 0x506F PUSH2 0x4E94 JUMP JUMPDEST PUSH1 0x1 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE PUSH1 0x13 SWAP1 DUP3 ADD MSTORE PUSH19 0x1253959053125117D6915493D7D05353D55395 PUSH1 0x6A SHL PUSH1 0x40 DUP3 ADD MSTORE PUSH1 0x60 ADD SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xD8 SHL SUB DUP3 DUP2 AND DUP3 DUP3 AND SUB SWAP1 DUP2 GT ISZERO PUSH2 0xF54 JUMPI PUSH2 0xF54 PUSH2 0x4E94 JUMP JUMPDEST PUSH1 0x2 DUP2 LT PUSH2 0x50E2 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST SWAP1 MSTORE JUMP JUMPDEST PUSH1 0x20 DUP2 ADD PUSH2 0xF54 DUP3 DUP5 PUSH2 0x50C4 JUMP JUMPDEST DUP3 DUP2 MSTORE PUSH1 0x40 DUP2 ADD PUSH2 0x10C2 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x50C4 JUMP JUMPDEST PUSH1 0x1 DUP2 JUMPDEST PUSH1 0x1 DUP5 GT ISZERO PUSH2 0x5143 JUMPI DUP1 DUP6 DIV DUP2 GT ISZERO PUSH2 0x5127 JUMPI PUSH2 0x5127 PUSH2 0x4E94 JUMP JUMPDEST PUSH1 0x1 DUP5 AND ISZERO PUSH2 0x5135 JUMPI SWAP1 DUP2 MUL SWAP1 JUMPDEST PUSH1 0x1 SWAP4 SWAP1 SWAP4 SHR SWAP3 DUP1 MUL PUSH2 0x510C JUMP JUMPDEST SWAP4 POP SWAP4 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x515A JUMPI POP PUSH1 0x1 PUSH2 0xF54 JUMP JUMPDEST DUP2 PUSH2 0x5167 JUMPI POP PUSH1 0x0 PUSH2 0xF54 JUMP JUMPDEST DUP2 PUSH1 0x1 DUP2 EQ PUSH2 0x517D JUMPI PUSH1 0x2 DUP2 EQ PUSH2 0x5187 JUMPI PUSH2 0x51A3 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP PUSH2 0xF54 JUMP JUMPDEST PUSH1 0xFF DUP5 GT ISZERO PUSH2 0x5198 JUMPI PUSH2 0x5198 PUSH2 0x4E94 JUMP JUMPDEST POP POP PUSH1 0x1 DUP3 SHL PUSH2 0xF54 JUMP JUMPDEST POP PUSH1 0x20 DUP4 LT PUSH2 0x133 DUP4 LT AND PUSH1 0x4E DUP5 LT PUSH1 0xB DUP5 LT AND OR ISZERO PUSH2 0x51C6 JUMPI POP DUP2 DUP2 EXP PUSH2 0xF54 JUMP JUMPDEST PUSH2 0x51D3 PUSH1 0x0 NOT DUP5 DUP5 PUSH2 0x5108 JUMP JUMPDEST DUP1 PUSH1 0x0 NOT DIV DUP3 GT ISZERO PUSH2 0x51E7 JUMPI PUSH2 0x51E7 PUSH2 0x4E94 JUMP JUMPDEST MUL SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x10C2 DUP4 DUP4 PUSH2 0x514B JUMP JUMPDEST PUSH1 0x0 DUP3 MLOAD PUSH2 0x520D DUP2 DUP5 PUSH1 0x20 DUP8 ADD PUSH2 0x492E JUMP JUMPDEST SWAP2 SWAP1 SWAP2 ADD SWAP3 SWAP2 POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 CALLVALUE 0xCB MULMOD POP 0xB0 0xD4 SWAP2 XOR 0xBD MSTORE8 0xC4 PUSH16 0x37B2848F71BF75BB2F312219565B1A1D PUSH27 0x6EFC1664736F6C634300081B003300000000000000000000000000 ","sourceMap":"130302:6617:0:-:0;;;102569:1;102526:44;;130798:407;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;131003:11;131022;131041:13;131062:12;131082:15;131105:20;131003:11;131022;131041:13;131062:12;131082:15;131105:20;131082:15;-1:-1:-1;;;;;57634:175:0;;57726:38;57634:175;57726:15;:38;:::i;:::-;57707:57;;-1:-1:-1;;;;;;57770:34:0;;;;;105312:26;;::::2;;::::0;-1:-1:-1;;105344:26:0;;::::2;;::::0;105376:30:::2;::::0;105412:28:::2;;::::0;130788:1;116405:23:::1;:36;;;;116447:16;116489:11;-1:-1:-1::0;;;;;116466:45:0::1;;:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;116447:66;;::::0;-1:-1:-1;116533:12:0::1;116447:66:::0;116533:2:::1;:12;:::i;:::-;116519:26;::::0;-1:-1:-1;131190:10:0::1;::::0;-1:-1:-1;;131190:8:0::1;:10:::0;-1:-1:-1;;;;131190:10:0:i:1;:::-;131164:23;:36:::0;-1:-1:-1;130302:6617:0;;-1:-1:-1;;;;;130302:6617:0;130708:86;130788:1;;130708:86::o;14:139:1:-;-1:-1:-1;;;;;97:31:1;;87:42;;77:70;;143:1;140;133:12;77:70;14:139;:::o;158:950::-;299:6;307;315;323;331;339;392:3;380:9;371:7;367:23;363:33;360:53;;;409:1;406;399:12;360:53;441:9;435:16;460:39;493:5;460:39;:::i;:::-;568:2;553:18;;547:25;518:5;;-1:-1:-1;581:41:1;547:25;581:41;:::i;:::-;688:2;673:18;;667:25;737:2;722:18;;716:25;641:7;;-1:-1:-1;667:25:1;-1:-1:-1;750:41:1;716:25;750:41;:::i;:::-;862:3;847:19;;841:26;810:7;;-1:-1:-1;876:41:1;841:26;876:41;:::i;:::-;988:3;973:19;;967:26;936:7;;-1:-1:-1;;;;;;1024:33:1;;1012:46;;1002:74;;1072:1;1069;1062:12;1002:74;1095:7;1085:17;;;158:950;;;;;;;;:::o;1113:127::-;1174:10;1169:3;1165:20;1162:1;1155:31;1205:4;1202:1;1195:15;1229:4;1226:1;1219:15;1245:125;1310:9;;;1331:10;;;1328:36;;;1344:18;;:::i;:::-;1245:125;;;;:::o;1375:273::-;1443:6;1496:2;1484:9;1475:7;1471:23;1467:32;1464:52;;;1512:1;1509;1502:12;1464:52;1544:9;1538:16;1594:4;1587:5;1583:16;1576:5;1573:27;1563:55;;1614:1;1611;1604:12;1563:55;1637:5;1375:273;-1:-1:-1;;;1375:273:1:o;1653:375::-;1741:1;1759:5;1773:249;1794:1;1784:8;1781:15;1773:249;;;1844:4;1839:3;1835:14;1829:4;1826:24;1823:50;;;1853:18;;:::i;:::-;1903:1;1893:8;1889:16;1886:49;;;1917:16;;;;1886:49;2000:1;1996:16;;;;;1956:15;;1773:249;;;1653:375;;;;;;:::o;2033:902::-;2082:5;2112:8;2102:80;;-1:-1:-1;2153:1:1;2167:5;;2102:80;2201:4;2191:76;;-1:-1:-1;2238:1:1;2252:5;;2191:76;2283:4;2301:1;2296:59;;;;2369:1;2364:174;;;;2276:262;;2296:59;2326:1;2317:10;;2340:5;;;2364:174;2401:3;2391:8;2388:17;2385:43;;;2408:18;;:::i;:::-;-1:-1:-1;;2464:1:1;2450:16;;2523:5;;2276:262;;2622:2;2612:8;2609:16;2603:3;2597:4;2594:13;2590:36;2584:2;2574:8;2571:16;2566:2;2560:4;2557:12;2553:35;2550:77;2547:203;;;-1:-1:-1;2659:19:1;;;2735:5;;2547:203;2782:42;-1:-1:-1;;2807:8:1;2801:4;2782:42;:::i;:::-;2860:6;2856:1;2852:6;2848:19;2839:7;2836:32;2833:58;;;2871:18;;:::i;:::-;2909:20;;2033:902;-1:-1:-1;;;2033:902:1:o;2940:131::-;3000:5;3029:36;3056:8;3050:4;3029:36;:::i;2940:131::-;130302:6617:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{"@CLAIM_HELPER_ROLE_5448":{"entryPoint":null,"id":5448,"parameterSlots":0,"returnSlots":0},"@COOLDOWN_ADMIN_ROLE_5445":{"entryPoint":null,"id":5445,"parameterSlots":0,"returnSlots":0},"@COOLDOWN_SECONDS_6201":{"entryPoint":null,"id":6201,"parameterSlots":0,"returnSlots":1},"@DELEGATE_BY_TYPE_TYPEHASH_1179":{"entryPoint":null,"id":1179,"parameterSlots":0,"returnSlots":0},"@DELEGATE_TYPEHASH_1184":{"entryPoint":null,"id":1184,"parameterSlots":0,"returnSlots":0},"@DISTRIBUTION_END_2471":{"entryPoint":null,"id":2471,"parameterSlots":0,"returnSlots":0},"@DOMAIN_SEPARATOR_4699":{"entryPoint":null,"id":4699,"parameterSlots":0,"returnSlots":0},"@EIP712_REVISION_4705":{"entryPoint":null,"id":4705,"parameterSlots":0,"returnSlots":0},"@EMISSION_MANAGER_2473":{"entryPoint":null,"id":2473,"parameterSlots":0,"returnSlots":0},"@EXCHANGE_RATE_UNIT_5454":{"entryPoint":null,"id":5454,"parameterSlots":0,"returnSlots":0},"@INITIAL_EXCHANGE_RATE_5451":{"entryPoint":null,"id":5451,"parameterSlots":0,"returnSlots":0},"@LOWER_BOUND_5457":{"entryPoint":null,"id":5457,"parameterSlots":0,"returnSlots":0},"@PERMIT_TYPEHASH_4715":{"entryPoint":null,"id":4715,"parameterSlots":0,"returnSlots":0},"@PRECISION_2476":{"entryPoint":null,"id":2476,"parameterSlots":0,"returnSlots":0},"@REVISION_6790":{"entryPoint":null,"id":6790,"parameterSlots":0,"returnSlots":1},"@REWARDS_VAULT_4668":{"entryPoint":null,"id":4668,"parameterSlots":0,"returnSlots":0},"@REWARD_TOKEN_4662":{"entryPoint":null,"id":4662,"parameterSlots":0,"returnSlots":0},"@SLASH_ADMIN_ROLE_5442":{"entryPoint":null,"id":5442,"parameterSlots":0,"returnSlots":0},"@STAKED_TOKEN_4659":{"entryPoint":null,"id":4659,"parameterSlots":0,"returnSlots":0},"@UNSTAKE_WINDOW_4665":{"entryPoint":null,"id":4665,"parameterSlots":0,"returnSlots":0},"@_aaveGovernance_1905":{"entryPoint":null,"id":1905,"parameterSlots":0,"returnSlots":0},"@_afterTokenTransfer_1083":{"entryPoint":null,"id":1083,"parameterSlots":3,"returnSlots":0},"@_approve_1018":{"entryPoint":8992,"id":1018,"parameterSlots":3,"returnSlots":0},"@_beforeTokenTransfer_7130":{"entryPoint":17379,"id":7130,"parameterSlots":3,"returnSlots":0},"@_binarySearchExchangeRate_7296":{"entryPoint":16877,"id":7296,"parameterSlots":3,"returnSlots":1},"@_binarySearch_1734":{"entryPoint":18040,"id":1734,"parameterSlots":3,"returnSlots":1},"@_burn_973":{"entryPoint":14150,"id":973,"parameterSlots":2,"returnSlots":0},"@_callOptionalReturn_2455":{"entryPoint":13765,"id":2455,"parameterSlots":2,"returnSlots":0},"@_claimRewardsAndStakeOnBehalf_6375":{"entryPoint":12442,"id":6375,"parameterSlots":3,"returnSlots":1},"@_claimRewards_6310":{"entryPoint":10181,"id":6310,"parameterSlots":3,"returnSlots":1},"@_configureAssets_2584":{"entryPoint":12969,"id":2584,"parameterSlots":1,"returnSlots":0},"@_cooldown_5822":{"entryPoint":10914,"id":5822,"parameterSlots":1,"returnSlots":0},"@_delegateByType_1407":{"entryPoint":11197,"id":1407,"parameterSlots":3,"returnSlots":0},"@_getAssetIndex_2953":{"entryPoint":15916,"id":2953,"parameterSlots":4,"returnSlots":1},"@_getDelegatee_1873":{"entryPoint":11517,"id":1873,"parameterSlots":2,"returnSlots":1},"@_getDelegationDataByType_5208":{"entryPoint":11454,"id":5208,"parameterSlots":1,"returnSlots":3},"@_getExchangeRate_6668":{"entryPoint":8666,"id":6668,"parameterSlots":2,"returnSlots":1},"@_getRewards_2883":{"entryPoint":16183,"id":2883,"parameterSlots":3,"returnSlots":1},"@_getUnclaimedRewards_2854":{"entryPoint":12183,"id":2854,"parameterSlots":2,"returnSlots":1},"@_initAdmins_5418":{"entryPoint":16227,"id":5418,"parameterSlots":1,"returnSlots":0},"@_initialize_5677":{"entryPoint":12677,"id":5677,"parameterSlots":5,"returnSlots":0},"@_mint_901":{"entryPoint":15713,"id":901,"parameterSlots":2,"returnSlots":0},"@_moveDelegatesByType_1572":{"entryPoint":15004,"id":1572,"parameterSlots":4,"returnSlots":0},"@_msgSender_501":{"entryPoint":null,"id":501,"parameterSlots":0,"returnSlots":1},"@_nonces_4720":{"entryPoint":null,"id":4720,"parameterSlots":0,"returnSlots":0},"@_redeem_6620":{"entryPoint":9284,"id":6620,"parameterSlots":3,"returnSlots":0},"@_revert_2234":{"entryPoint":null,"id":2234,"parameterSlots":2,"returnSlots":0},"@_searchByBlockNumber_1637":{"entryPoint":17146,"id":1637,"parameterSlots":4,"returnSlots":1},"@_searchByBlockNumber_7170":{"entryPoint":13325,"id":7170,"parameterSlots":4,"returnSlots":1},"@_setCooldownSeconds_6239":{"entryPoint":12130,"id":6239,"parameterSlots":1,"returnSlots":0},"@_setMaxSlashablePercentage_6224":{"entryPoint":11989,"id":6224,"parameterSlots":1,"returnSlots":0},"@_spendAllowance_1061":{"entryPoint":10493,"id":1061,"parameterSlots":3,"returnSlots":0},"@_stake_6467":{"entryPoint":11560,"id":6467,"parameterSlots":3,"returnSlots":0},"@_transfer_6759":{"entryPoint":10609,"id":6759,"parameterSlots":3,"returnSlots":0},"@_transfer_844":{"entryPoint":14573,"id":844,"parameterSlots":3,"returnSlots":0},"@_updateAssetStateInternal_2654":{"entryPoint":16693,"id":2654,"parameterSlots":3,"returnSlots":1},"@_updateCurrentUnclaimedRewards_5167":{"entryPoint":13975,"id":5167,"parameterSlots":3,"returnSlots":1},"@_updateExchangeRate_6642":{"entryPoint":13609,"id":6642,"parameterSlots":1,"returnSlots":0},"@_updateExchangeRate_7199":{"entryPoint":8728,"id":7199,"parameterSlots":1,"returnSlots":0},"@_updateUserAssetInternal_2729":{"entryPoint":15520,"id":2729,"parameterSlots":4,"returnSlots":1},"@_votingSnapshotsCounts_1901":{"entryPoint":null,"id":1901,"parameterSlots":0,"returnSlots":0},"@_votingSnapshots_1897":{"entryPoint":null,"id":1897,"parameterSlots":0,"returnSlots":0},"@_writeSnapshot_1842":{"entryPoint":17762,"id":1842,"parameterSlots":5,"returnSlots":0},"@allowance_639":{"entryPoint":7783,"id":639,"parameterSlots":2,"returnSlots":1},"@approve_664":{"entryPoint":4076,"id":664,"parameterSlots":2,"returnSlots":1},"@assets_2481":{"entryPoint":null,"id":2481,"parameterSlots":0,"returnSlots":0},"@balanceOf_596":{"entryPoint":5001,"id":596,"parameterSlots":1,"returnSlots":1},"@claimRewardsAndRedeemOnBehalf_5956":{"entryPoint":5710,"id":5956,"parameterSlots":4,"returnSlots":0},"@claimRewardsAndRedeem_5928":{"entryPoint":7826,"id":5928,"parameterSlots":3,"returnSlots":0},"@claimRewardsAndStakeOnBehalf_6928":{"entryPoint":6751,"id":6928,"parameterSlots":3,"returnSlots":1},"@claimRewardsAndStake_6906":{"entryPoint":5660,"id":6906,"parameterSlots":2,"returnSlots":1},"@claimRewardsOnBehalf_5902":{"entryPoint":4216,"id":5902,"parameterSlots":3,"returnSlots":1},"@claimRewards_5880":{"entryPoint":5699,"id":5880,"parameterSlots":2,"returnSlots":0},"@claimRoleAdmin_5349":{"entryPoint":8317,"id":5349,"parameterSlots":1,"returnSlots":0},"@configureAssets_5720":{"entryPoint":6534,"id":5720,"parameterSlots":1,"returnSlots":0},"@cooldownOnBehalfOf_5782":{"entryPoint":4333,"id":5782,"parameterSlots":1,"returnSlots":0},"@cooldown_5768":{"entryPoint":5315,"id":5768,"parameterSlots":0,"returnSlots":0},"@decimals_572":{"entryPoint":null,"id":572,"parameterSlots":0,"returnSlots":1},"@decreaseAllowance_767":{"entryPoint":5797,"id":767,"parameterSlots":2,"returnSlots":1},"@delegateBySig_5112":{"entryPoint":6863,"id":5112,"parameterSlots":6,"returnSlots":0},"@delegateByTypeBySig_5021":{"entryPoint":7849,"id":5021,"parameterSlots":7,"returnSlots":0},"@delegateByType_1208":{"entryPoint":7772,"id":1208,"parameterSlots":2,"returnSlots":0},"@delegate_1232":{"entryPoint":4943,"id":1232,"parameterSlots":1,"returnSlots":0},"@functionCallWithValue_2059":{"entryPoint":18308,"id":2059,"parameterSlots":4,"returnSlots":1},"@functionCall_1995":{"entryPoint":17364,"id":1995,"parameterSlots":3,"returnSlots":1},"@getAdmin_5281":{"entryPoint":4100,"id":5281,"parameterSlots":1,"returnSlots":1},"@getCooldownSeconds_6192":{"entryPoint":null,"id":6192,"parameterSlots":0,"returnSlots":1},"@getDelegateeByType_1258":{"entryPoint":4967,"id":1258,"parameterSlots":2,"returnSlots":1},"@getExchangeRateSnapshot_6994":{"entryPoint":null,"id":6994,"parameterSlots":1,"returnSlots":1},"@getExchangeRateSnapshotsCount_6980":{"entryPoint":null,"id":6980,"parameterSlots":0,"returnSlots":1},"@getExchangeRate_5966":{"entryPoint":null,"id":5966,"parameterSlots":0,"returnSlots":1},"@getMaxSlashablePercentage_6170":{"entryPoint":null,"id":6170,"parameterSlots":0,"returnSlots":1},"@getPendingAdmin_5294":{"entryPoint":null,"id":5294,"parameterSlots":1,"returnSlots":1},"@getPowerAtBlock_1331":{"entryPoint":6822,"id":1331,"parameterSlots":3,"returnSlots":1},"@getPowerCurrent_1294":{"entryPoint":6711,"id":1294,"parameterSlots":2,"returnSlots":1},"@getRevision_5583":{"entryPoint":null,"id":5583,"parameterSlots":0,"returnSlots":1},"@getTotalRewardsBalance_4840":{"entryPoint":5441,"id":4840,"parameterSlots":1,"returnSlots":1},"@getUserAssetData_2971":{"entryPoint":null,"id":2971,"parameterSlots":2,"returnSlots":1},"@ghoDebtToken_6781":{"entryPoint":null,"id":6781,"parameterSlots":0,"returnSlots":0},"@inPostSlashingPeriod_5473":{"entryPoint":null,"id":5473,"parameterSlots":0,"returnSlots":0},"@increaseAllowance_726":{"entryPoint":4403,"id":726,"parameterSlots":2,"returnSlots":1},"@initialize_6861":{"entryPoint":5920,"id":6861,"parameterSlots":5,"returnSlots":0},"@isContract_1923":{"entryPoint":null,"id":1923,"parameterSlots":1,"returnSlots":1},"@name_552":{"entryPoint":3930,"id":552,"parameterSlots":0,"returnSlots":1},"@percentMul_4565":{"entryPoint":8526,"id":4565,"parameterSlots":2,"returnSlots":1},"@permit_4931":{"entryPoint":7316,"id":4931,"parameterSlots":7,"returnSlots":0},"@previewRedeem_5983":{"entryPoint":4900,"id":5983,"parameterSlots":1,"returnSlots":1},"@previewStake_5736":{"entryPoint":5028,"id":5736,"parameterSlots":1,"returnSlots":1},"@redeemOnBehalf_5861":{"entryPoint":4127,"id":5861,"parameterSlots":3,"returnSlots":0},"@redeem_5841":{"entryPoint":4201,"id":5841,"parameterSlots":2,"returnSlots":0},"@returnFunds_6131":{"entryPoint":4437,"id":6131,"parameterSlots":1,"returnSlots":0},"@safeTransferFrom_2289":{"entryPoint":11141,"id":2289,"parameterSlots":4,"returnSlots":0},"@safeTransfer_2263":{"entryPoint":8893,"id":2263,"parameterSlots":3,"returnSlots":0},"@setCooldownSeconds_6183":{"entryPoint":5326,"id":6183,"parameterSlots":1,"returnSlots":0},"@setGHODebtToken_6887":{"entryPoint":4794,"id":6887,"parameterSlots":1,"returnSlots":0},"@setMaxSlashablePercentage_6160":{"entryPoint":5248,"id":6160,"parameterSlots":1,"returnSlots":0},"@setPendingAdmin_5317":{"entryPoint":6214,"id":5317,"parameterSlots":2,"returnSlots":0},"@settleSlashing_6146":{"entryPoint":6420,"id":6146,"parameterSlots":0,"returnSlots":0},"@slash_6073":{"entryPoint":3356,"id":6073,"parameterSlots":2,"returnSlots":1},"@stakeWithPermit_6971":{"entryPoint":5063,"id":6971,"parameterSlots":6,"returnSlots":0},"@stake_5755":{"entryPoint":6409,"id":5755,"parameterSlots":2,"returnSlots":0},"@stakerRewardsToClaim_4672":{"entryPoint":null,"id":4672,"parameterSlots":0,"returnSlots":0},"@stakersCooldowns_4677":{"entryPoint":null,"id":4677,"parameterSlots":0,"returnSlots":0},"@symbol_562":{"entryPoint":5673,"id":562,"parameterSlots":0,"returnSlots":1},"@toUint184_3199":{"entryPoint":14468,"id":3199,"parameterSlots":1,"returnSlots":1},"@toUint216_3099":{"entryPoint":13398,"id":3099,"parameterSlots":1,"returnSlots":1},"@toUint40_3649":{"entryPoint":13507,"id":3649,"parameterSlots":1,"returnSlots":1},"@totalSupplyAt_1345":{"entryPoint":5688,"id":1345,"parameterSlots":1,"returnSlots":1},"@totalSupply_582":{"entryPoint":null,"id":582,"parameterSlots":0,"returnSlots":1},"@transferFrom_697":{"entryPoint":4297,"id":697,"parameterSlots":3,"returnSlots":1},"@transfer_621":{"entryPoint":6200,"id":621,"parameterSlots":2,"returnSlots":1},"@verifyCallResultFromTarget_2190":{"entryPoint":null,"id":2190,"parameterSlots":4,"returnSlots":1},"abi_decode_enum_DelegationType":{"entryPoint":19009,"id":null,"parameterSlots":1,"returnSlots":1},"abi_decode_tuple_t_address":{"entryPoint":18833,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_addresst_address":{"entryPoint":18952,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_addresst_addresst_addresst_uint256t_uint256":{"entryPoint":19297,"id":null,"parameterSlots":2,"returnSlots":5},"abi_decode_tuple_t_addresst_addresst_uint256":{"entryPoint":18887,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_addresst_addresst_uint256t_uint256":{"entryPoint":19227,"id":null,"parameterSlots":2,"returnSlots":4},"abi_decode_tuple_t_addresst_addresst_uint256t_uint256t_uint8t_bytes32t_bytes32":{"entryPoint":19845,"id":null,"parameterSlots":2,"returnSlots":7},"abi_decode_tuple_t_addresst_enum$_DelegationType_$1088":{"entryPoint":19029,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_addresst_enum$_DelegationType_$1088t_uint256t_uint256t_uint8t_bytes32t_bytes32":{"entryPoint":20009,"id":null,"parameterSlots":2,"returnSlots":7},"abi_decode_tuple_t_addresst_uint256":{"entryPoint":18690,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_addresst_uint256t_enum$_DelegationType_$1088":{"entryPoint":19783,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_addresst_uint256t_uint256":{"entryPoint":19956,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_addresst_uint256t_uint256t_uint8t_bytes32t_bytes32":{"entryPoint":19099,"id":null,"parameterSlots":2,"returnSlots":6},"abi_decode_tuple_t_array$_t_struct$_AssetConfigInput_$129_memory_ptr_$dyn_memory_ptr":{"entryPoint":19537,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_bool_fromMemory":{"entryPoint":20368,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_contract$_IGhoVariableDebtTokenTransferHook_$162":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_uint256":{"entryPoint":18862,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_uint256t_address":{"entryPoint":19388,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_uint32":{"entryPoint":19189,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_uint8":{"entryPoint":19082,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_enum_DelegationType":{"entryPoint":20676,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_string":{"entryPoint":18770,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_packed_t_bytes_memory_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed":{"entryPoint":20987,"id":null,"parameterSlots":2,"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":20402,"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__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_uint256__to_t_address_t_address_t_uint256_t_uint256_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":6,"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_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_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_address_t_uint256_t_uint256__to_t_bytes32_t_address_t_uint256_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":5,"returnSlots":1},"abi_encode_tuple_t_bytes32_t_address_t_uint256_t_uint256_t_uint256__to_t_bytes32_t_address_t_uint256_t_uint256_t_uint256__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_bytes_memory_ptr__to_t_bytes_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_contract$_IERC20_$77__to_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_contract$_IGhoVariableDebtTokenTransferHook_$162__to_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_contract$_ITransferHook_$1885__to_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_enum$_DelegationType_$1088__to_t_uint8__fromStack_reversed":{"entryPoint":20710,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":18814,"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_2783cc94d2815145fca23f61c101ffc8ff8c6a01d5b51321a6791062a0684adf__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":20215,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_2f1333997521c1f7b64fb9baad89e36b71dfc7265a9804df600ce8ae5c1f6f36__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_33d2eb294587ef7b32eb48e48695ebfec45a9c8922ec7d1c444cfad1fb208e8d__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":20600,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe__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_5407ed0094c102003a23cbee6bcb44020e6bb1be4fa76486e3d76e28e8ab8c65__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_5e135040f8dc35152fcfe1ddf129384a9ce13d1776c5e6dc86a62f244bfcfc0b__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_5e2e9eaa2d734966dea0900deacd15b20129fbce05255d633a3ce5ebca181b88__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":20429,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_621f50d6436d0a4dd01bdd0a290cbd90a33871f85d2f75ec24041520fb128387__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_66cceaab4b8a6f427cff5482a526862a61c3ef92948b70aceb4a8f720a8f0ead__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_6b96bc99e56604df6600e4ce66f7e91bdc3417f453200fce123d801c60b50ff8__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_6fb33ededa50927431023a1ca5722fb9abe7b87aeeb47e46d1f13b646b0719ba__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":20061,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_86c53d89b1944d561ecfa42e859033241d1df6ea8d42a57ae02f79d45de4aa75__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_8966adc0aad8dc91b207c69c3eb4937e498af8cc706cfe7edd55f3a6ea53488d__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_9fbba6c4dcac9134893b633b9564f36435b3f927c1d5fa152c5c14b20cecb1a4__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_9fe3e5cf49f72bf8a6a8455c3e990f8479f5dfa09ac808886f330a39b0029c2d__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":20497,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_a19e25beaf00f467d35fbe7e167b5794fca796dbfd417dd2accc8f5303300b99__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_a28d34ff463a8cc689c6ec4b8c995983f85d0a40987242bc4cc3cec37303c18e__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_a30e2b4f22d955e30086ae3aef0adfd87eec9d0d3f055d6aa9af61f522dda886__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_ad8e292265788ac5c19f708ed96612bf3229f5fbdf9e1b9b3466c3f5a1b60243__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_b23559c58b98a5d3ed7016699c7171ac8defa5a1d180f9a9ffa60468a5701d37__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_b2af192d647f8b8a9f94a546a11b40d3536722e4b74d77e3330eb171e0c93079__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_c6959acf2335419e4a75195e2fb1c276a96baa5b7fab6be19b14b9420a4bd962__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_ca68b1751ae29c5f09bd0021f927ba7e466485e5196910ff5ec2e20b861ddf43__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_ce93b50079b62f2df0cdb8205f7bed11a1c18f1ff774f2e6b4f84f4f62875ed5__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_d49ebb848086492947fc93c9ef60d839aa895187a88d01c0575e0469055263d2__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_dd61c748dcfe71393203093270c457f6ceb8834cce0160376620e7b2f811559c__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_e42e312e91b2c7decf2c17d44adbe92f5dbd21dd2fe6c255c257f03ae436b4f4__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_e5f9ee9777b2bbd505a43328a4cc6b61e9df46610a556d5402b9bc072df973d7__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_e80295a9867834b2dfe1d7606b122307d35ebaa940c20b448f18824a9256df9d__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_f448a4555410856eaebeffbdb1aef2dfca19f9de0904eb1029e0bbcd0330450f__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_f4a42223776f3ea267c2495ef3dc746d28101276fa8315b76ae8b45133d59a50__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_f77daace20469de8df4d27824d8f88ae642c918133f638a98e78576c5af835a5__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_fa2c368672f35856ca139c6dfba7cf36845bc24e7a2795ed29d2eba4e8313209__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$_ExchangeRateSnapshot_$425_memory_ptr__to_t_struct$_ExchangeRateSnapshot_$425_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_uint128__to_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_uint128_t_uint128__to_t_uint128_t_uint128__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_uint128_t_uint128_t_uint256__to_t_uint128_t_uint128_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_tuple_t_uint216__to_t_uint216__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_uint256_t_enum$_DelegationType_$1088__to_t_uint256_t_uint8__fromStack_reversed":{"entryPoint":20724,"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},"abi_encode_tuple_t_uint32__to_t_uint32__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_uint40_t_uint216__to_t_uint40_t_uint216__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"allocate_memory":{"entryPoint":19488,"id":null,"parameterSlots":1,"returnSlots":1},"allocate_memory_4847":{"entryPoint":19447,"id":null,"parameterSlots":0,"returnSlots":1},"checked_add_t_uint256":{"entryPoint":20270,"id":null,"parameterSlots":2,"returnSlots":1},"checked_div_t_uint256":{"entryPoint":20312,"id":null,"parameterSlots":2,"returnSlots":1},"checked_exp_helper":{"entryPoint":20744,"id":null,"parameterSlots":3,"returnSlots":2},"checked_exp_t_uint256_t_uint256":{"entryPoint":20975,"id":null,"parameterSlots":2,"returnSlots":1},"checked_exp_unsigned":{"entryPoint":20811,"id":null,"parameterSlots":2,"returnSlots":1},"checked_mul_t_uint256":{"entryPoint":20289,"id":null,"parameterSlots":2,"returnSlots":1},"checked_sub_t_uint216":{"entryPoint":20645,"id":null,"parameterSlots":2,"returnSlots":1},"checked_sub_t_uint256":{"entryPoint":20138,"id":null,"parameterSlots":2,"returnSlots":1},"copy_memory_to_memory_with_cleanup":{"entryPoint":18734,"id":null,"parameterSlots":3,"returnSlots":0},"extract_byte_array_length":{"entryPoint":20157,"id":null,"parameterSlots":1,"returnSlots":1},"increment_t_uint256":{"entryPoint":20472,"id":null,"parameterSlots":1,"returnSlots":1},"increment_t_uint32":{"entryPoint":20563,"id":null,"parameterSlots":1,"returnSlots":1},"panic_error_0x11":{"entryPoint":20116,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x12":{"entryPoint":null,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x21":{"entryPoint":20541,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x32":{"entryPoint":20346,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x41":{"entryPoint":19425,"id":null,"parameterSlots":0,"returnSlots":0},"validator_revert_address":{"entryPoint":18669,"id":null,"parameterSlots":1,"returnSlots":0}},"generatedSources":[{"ast":{"nativeSrc":"0:41284:1","nodeType":"YulBlock","src":"0:41284:1","statements":[{"nativeSrc":"6:3:1","nodeType":"YulBlock","src":"6:3:1","statements":[]},{"body":{"nativeSrc":"59:86:1","nodeType":"YulBlock","src":"59:86:1","statements":[{"body":{"nativeSrc":"123:16:1","nodeType":"YulBlock","src":"123:16:1","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"132:1:1","nodeType":"YulLiteral","src":"132:1:1","type":"","value":"0"},{"kind":"number","nativeSrc":"135:1:1","nodeType":"YulLiteral","src":"135:1:1","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"125:6:1","nodeType":"YulIdentifier","src":"125:6:1"},"nativeSrc":"125:12:1","nodeType":"YulFunctionCall","src":"125:12:1"},"nativeSrc":"125:12:1","nodeType":"YulExpressionStatement","src":"125:12:1"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"82:5:1","nodeType":"YulIdentifier","src":"82:5:1"},{"arguments":[{"name":"value","nativeSrc":"93:5:1","nodeType":"YulIdentifier","src":"93:5:1"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"108:3:1","nodeType":"YulLiteral","src":"108:3:1","type":"","value":"160"},{"kind":"number","nativeSrc":"113:1:1","nodeType":"YulLiteral","src":"113:1:1","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"104:3:1","nodeType":"YulIdentifier","src":"104:3:1"},"nativeSrc":"104:11:1","nodeType":"YulFunctionCall","src":"104:11:1"},{"kind":"number","nativeSrc":"117:1:1","nodeType":"YulLiteral","src":"117:1:1","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"100:3:1","nodeType":"YulIdentifier","src":"100:3:1"},"nativeSrc":"100:19:1","nodeType":"YulFunctionCall","src":"100:19:1"}],"functionName":{"name":"and","nativeSrc":"89:3:1","nodeType":"YulIdentifier","src":"89:3:1"},"nativeSrc":"89:31:1","nodeType":"YulFunctionCall","src":"89:31:1"}],"functionName":{"name":"eq","nativeSrc":"79:2:1","nodeType":"YulIdentifier","src":"79:2:1"},"nativeSrc":"79:42:1","nodeType":"YulFunctionCall","src":"79:42:1"}],"functionName":{"name":"iszero","nativeSrc":"72:6:1","nodeType":"YulIdentifier","src":"72:6:1"},"nativeSrc":"72:50:1","nodeType":"YulFunctionCall","src":"72:50:1"},"nativeSrc":"69:70:1","nodeType":"YulIf","src":"69:70:1"}]},"name":"validator_revert_address","nativeSrc":"14:131:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"48:5:1","nodeType":"YulTypedName","src":"48:5:1","type":""}],"src":"14:131:1"},{"body":{"nativeSrc":"237:280:1","nodeType":"YulBlock","src":"237:280:1","statements":[{"body":{"nativeSrc":"283:16:1","nodeType":"YulBlock","src":"283:16:1","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"292:1:1","nodeType":"YulLiteral","src":"292:1:1","type":"","value":"0"},{"kind":"number","nativeSrc":"295:1:1","nodeType":"YulLiteral","src":"295:1:1","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"285:6:1","nodeType":"YulIdentifier","src":"285:6:1"},"nativeSrc":"285:12:1","nodeType":"YulFunctionCall","src":"285:12:1"},"nativeSrc":"285:12:1","nodeType":"YulExpressionStatement","src":"285:12:1"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"258:7:1","nodeType":"YulIdentifier","src":"258:7:1"},{"name":"headStart","nativeSrc":"267:9:1","nodeType":"YulIdentifier","src":"267:9:1"}],"functionName":{"name":"sub","nativeSrc":"254:3:1","nodeType":"YulIdentifier","src":"254:3:1"},"nativeSrc":"254:23:1","nodeType":"YulFunctionCall","src":"254:23:1"},{"kind":"number","nativeSrc":"279:2:1","nodeType":"YulLiteral","src":"279:2:1","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"250:3:1","nodeType":"YulIdentifier","src":"250:3:1"},"nativeSrc":"250:32:1","nodeType":"YulFunctionCall","src":"250:32:1"},"nativeSrc":"247:52:1","nodeType":"YulIf","src":"247:52:1"},{"nativeSrc":"308:36:1","nodeType":"YulVariableDeclaration","src":"308:36:1","value":{"arguments":[{"name":"headStart","nativeSrc":"334:9:1","nodeType":"YulIdentifier","src":"334:9:1"}],"functionName":{"name":"calldataload","nativeSrc":"321:12:1","nodeType":"YulIdentifier","src":"321:12:1"},"nativeSrc":"321:23:1","nodeType":"YulFunctionCall","src":"321:23:1"},"variables":[{"name":"value","nativeSrc":"312:5:1","nodeType":"YulTypedName","src":"312:5:1","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"378:5:1","nodeType":"YulIdentifier","src":"378:5:1"}],"functionName":{"name":"validator_revert_address","nativeSrc":"353:24:1","nodeType":"YulIdentifier","src":"353:24:1"},"nativeSrc":"353:31:1","nodeType":"YulFunctionCall","src":"353:31:1"},"nativeSrc":"353:31:1","nodeType":"YulExpressionStatement","src":"353:31:1"},{"nativeSrc":"393:15:1","nodeType":"YulAssignment","src":"393:15:1","value":{"name":"value","nativeSrc":"403:5:1","nodeType":"YulIdentifier","src":"403:5:1"},"variableNames":[{"name":"value0","nativeSrc":"393:6:1","nodeType":"YulIdentifier","src":"393:6:1"}]},{"nativeSrc":"417:16:1","nodeType":"YulVariableDeclaration","src":"417:16:1","value":{"kind":"number","nativeSrc":"432:1:1","nodeType":"YulLiteral","src":"432:1:1","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"421:7:1","nodeType":"YulTypedName","src":"421:7:1","type":""}]},{"nativeSrc":"442:43:1","nodeType":"YulAssignment","src":"442:43:1","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"470:9:1","nodeType":"YulIdentifier","src":"470:9:1"},{"kind":"number","nativeSrc":"481:2:1","nodeType":"YulLiteral","src":"481:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"466:3:1","nodeType":"YulIdentifier","src":"466:3:1"},"nativeSrc":"466:18:1","nodeType":"YulFunctionCall","src":"466:18:1"}],"functionName":{"name":"calldataload","nativeSrc":"453:12:1","nodeType":"YulIdentifier","src":"453:12:1"},"nativeSrc":"453:32:1","nodeType":"YulFunctionCall","src":"453:32:1"},"variableNames":[{"name":"value_1","nativeSrc":"442:7:1","nodeType":"YulIdentifier","src":"442:7:1"}]},{"nativeSrc":"494:17:1","nodeType":"YulAssignment","src":"494:17:1","value":{"name":"value_1","nativeSrc":"504:7:1","nodeType":"YulIdentifier","src":"504:7:1"},"variableNames":[{"name":"value1","nativeSrc":"494:6:1","nodeType":"YulIdentifier","src":"494:6:1"}]}]},"name":"abi_decode_tuple_t_addresst_uint256","nativeSrc":"150:367:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"195:9:1","nodeType":"YulTypedName","src":"195:9:1","type":""},{"name":"dataEnd","nativeSrc":"206:7:1","nodeType":"YulTypedName","src":"206:7:1","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"218:6:1","nodeType":"YulTypedName","src":"218:6:1","type":""},{"name":"value1","nativeSrc":"226:6:1","nodeType":"YulTypedName","src":"226:6:1","type":""}],"src":"150:367:1"},{"body":{"nativeSrc":"623:76:1","nodeType":"YulBlock","src":"623:76:1","statements":[{"nativeSrc":"633:26:1","nodeType":"YulAssignment","src":"633:26:1","value":{"arguments":[{"name":"headStart","nativeSrc":"645:9:1","nodeType":"YulIdentifier","src":"645:9:1"},{"kind":"number","nativeSrc":"656:2:1","nodeType":"YulLiteral","src":"656:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"641:3:1","nodeType":"YulIdentifier","src":"641:3:1"},"nativeSrc":"641:18:1","nodeType":"YulFunctionCall","src":"641:18:1"},"variableNames":[{"name":"tail","nativeSrc":"633:4:1","nodeType":"YulIdentifier","src":"633:4:1"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"675:9:1","nodeType":"YulIdentifier","src":"675:9:1"},{"name":"value0","nativeSrc":"686:6:1","nodeType":"YulIdentifier","src":"686:6:1"}],"functionName":{"name":"mstore","nativeSrc":"668:6:1","nodeType":"YulIdentifier","src":"668:6:1"},"nativeSrc":"668:25:1","nodeType":"YulFunctionCall","src":"668:25:1"},"nativeSrc":"668:25:1","nodeType":"YulExpressionStatement","src":"668:25:1"}]},"name":"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed","nativeSrc":"522:177:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"592:9:1","nodeType":"YulTypedName","src":"592:9:1","type":""},{"name":"value0","nativeSrc":"603:6:1","nodeType":"YulTypedName","src":"603:6:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"614:4:1","nodeType":"YulTypedName","src":"614:4:1","type":""}],"src":"522:177:1"},{"body":{"nativeSrc":"770:184:1","nodeType":"YulBlock","src":"770:184:1","statements":[{"nativeSrc":"780:10:1","nodeType":"YulVariableDeclaration","src":"780:10:1","value":{"kind":"number","nativeSrc":"789:1:1","nodeType":"YulLiteral","src":"789:1:1","type":"","value":"0"},"variables":[{"name":"i","nativeSrc":"784:1:1","nodeType":"YulTypedName","src":"784:1:1","type":""}]},{"body":{"nativeSrc":"849:63:1","nodeType":"YulBlock","src":"849:63:1","statements":[{"expression":{"arguments":[{"arguments":[{"name":"dst","nativeSrc":"874:3:1","nodeType":"YulIdentifier","src":"874:3:1"},{"name":"i","nativeSrc":"879:1:1","nodeType":"YulIdentifier","src":"879:1:1"}],"functionName":{"name":"add","nativeSrc":"870:3:1","nodeType":"YulIdentifier","src":"870:3:1"},"nativeSrc":"870:11:1","nodeType":"YulFunctionCall","src":"870:11:1"},{"arguments":[{"arguments":[{"name":"src","nativeSrc":"893:3:1","nodeType":"YulIdentifier","src":"893:3:1"},{"name":"i","nativeSrc":"898:1:1","nodeType":"YulIdentifier","src":"898:1:1"}],"functionName":{"name":"add","nativeSrc":"889:3:1","nodeType":"YulIdentifier","src":"889:3:1"},"nativeSrc":"889:11:1","nodeType":"YulFunctionCall","src":"889:11:1"}],"functionName":{"name":"mload","nativeSrc":"883:5:1","nodeType":"YulIdentifier","src":"883:5:1"},"nativeSrc":"883:18:1","nodeType":"YulFunctionCall","src":"883:18:1"}],"functionName":{"name":"mstore","nativeSrc":"863:6:1","nodeType":"YulIdentifier","src":"863:6:1"},"nativeSrc":"863:39:1","nodeType":"YulFunctionCall","src":"863:39:1"},"nativeSrc":"863:39:1","nodeType":"YulExpressionStatement","src":"863:39:1"}]},"condition":{"arguments":[{"name":"i","nativeSrc":"810:1:1","nodeType":"YulIdentifier","src":"810:1:1"},{"name":"length","nativeSrc":"813:6:1","nodeType":"YulIdentifier","src":"813:6:1"}],"functionName":{"name":"lt","nativeSrc":"807:2:1","nodeType":"YulIdentifier","src":"807:2:1"},"nativeSrc":"807:13:1","nodeType":"YulFunctionCall","src":"807:13:1"},"nativeSrc":"799:113:1","nodeType":"YulForLoop","post":{"nativeSrc":"821:19:1","nodeType":"YulBlock","src":"821:19:1","statements":[{"nativeSrc":"823:15:1","nodeType":"YulAssignment","src":"823:15:1","value":{"arguments":[{"name":"i","nativeSrc":"832:1:1","nodeType":"YulIdentifier","src":"832:1:1"},{"kind":"number","nativeSrc":"835:2:1","nodeType":"YulLiteral","src":"835:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"828:3:1","nodeType":"YulIdentifier","src":"828:3:1"},"nativeSrc":"828:10:1","nodeType":"YulFunctionCall","src":"828:10:1"},"variableNames":[{"name":"i","nativeSrc":"823:1:1","nodeType":"YulIdentifier","src":"823:1:1"}]}]},"pre":{"nativeSrc":"803:3:1","nodeType":"YulBlock","src":"803:3:1","statements":[]},"src":"799:113:1"},{"expression":{"arguments":[{"arguments":[{"name":"dst","nativeSrc":"932:3:1","nodeType":"YulIdentifier","src":"932:3:1"},{"name":"length","nativeSrc":"937:6:1","nodeType":"YulIdentifier","src":"937:6:1"}],"functionName":{"name":"add","nativeSrc":"928:3:1","nodeType":"YulIdentifier","src":"928:3:1"},"nativeSrc":"928:16:1","nodeType":"YulFunctionCall","src":"928:16:1"},{"kind":"number","nativeSrc":"946:1:1","nodeType":"YulLiteral","src":"946:1:1","type":"","value":"0"}],"functionName":{"name":"mstore","nativeSrc":"921:6:1","nodeType":"YulIdentifier","src":"921:6:1"},"nativeSrc":"921:27:1","nodeType":"YulFunctionCall","src":"921:27:1"},"nativeSrc":"921:27:1","nodeType":"YulExpressionStatement","src":"921:27:1"}]},"name":"copy_memory_to_memory_with_cleanup","nativeSrc":"704:250:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"src","nativeSrc":"748:3:1","nodeType":"YulTypedName","src":"748:3:1","type":""},{"name":"dst","nativeSrc":"753:3:1","nodeType":"YulTypedName","src":"753:3:1","type":""},{"name":"length","nativeSrc":"758:6:1","nodeType":"YulTypedName","src":"758:6:1","type":""}],"src":"704:250:1"},{"body":{"nativeSrc":"1009:221:1","nodeType":"YulBlock","src":"1009:221:1","statements":[{"nativeSrc":"1019:26:1","nodeType":"YulVariableDeclaration","src":"1019:26:1","value":{"arguments":[{"name":"value","nativeSrc":"1039:5:1","nodeType":"YulIdentifier","src":"1039:5:1"}],"functionName":{"name":"mload","nativeSrc":"1033:5:1","nodeType":"YulIdentifier","src":"1033:5:1"},"nativeSrc":"1033:12:1","nodeType":"YulFunctionCall","src":"1033:12:1"},"variables":[{"name":"length","nativeSrc":"1023:6:1","nodeType":"YulTypedName","src":"1023:6:1","type":""}]},{"expression":{"arguments":[{"name":"pos","nativeSrc":"1061:3:1","nodeType":"YulIdentifier","src":"1061:3:1"},{"name":"length","nativeSrc":"1066:6:1","nodeType":"YulIdentifier","src":"1066:6:1"}],"functionName":{"name":"mstore","nativeSrc":"1054:6:1","nodeType":"YulIdentifier","src":"1054:6:1"},"nativeSrc":"1054:19:1","nodeType":"YulFunctionCall","src":"1054:19:1"},"nativeSrc":"1054:19:1","nodeType":"YulExpressionStatement","src":"1054:19:1"},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"1121:5:1","nodeType":"YulIdentifier","src":"1121:5:1"},{"kind":"number","nativeSrc":"1128:4:1","nodeType":"YulLiteral","src":"1128:4:1","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"1117:3:1","nodeType":"YulIdentifier","src":"1117:3:1"},"nativeSrc":"1117:16:1","nodeType":"YulFunctionCall","src":"1117:16:1"},{"arguments":[{"name":"pos","nativeSrc":"1139:3:1","nodeType":"YulIdentifier","src":"1139:3:1"},{"kind":"number","nativeSrc":"1144:4:1","nodeType":"YulLiteral","src":"1144:4:1","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"1135:3:1","nodeType":"YulIdentifier","src":"1135:3:1"},"nativeSrc":"1135:14:1","nodeType":"YulFunctionCall","src":"1135:14:1"},{"name":"length","nativeSrc":"1151:6:1","nodeType":"YulIdentifier","src":"1151:6:1"}],"functionName":{"name":"copy_memory_to_memory_with_cleanup","nativeSrc":"1082:34:1","nodeType":"YulIdentifier","src":"1082:34:1"},"nativeSrc":"1082:76:1","nodeType":"YulFunctionCall","src":"1082:76:1"},"nativeSrc":"1082:76:1","nodeType":"YulExpressionStatement","src":"1082:76:1"},{"nativeSrc":"1167:57:1","nodeType":"YulAssignment","src":"1167:57:1","value":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"1182:3:1","nodeType":"YulIdentifier","src":"1182:3:1"},{"arguments":[{"arguments":[{"name":"length","nativeSrc":"1195:6:1","nodeType":"YulIdentifier","src":"1195:6:1"},{"kind":"number","nativeSrc":"1203:2:1","nodeType":"YulLiteral","src":"1203:2:1","type":"","value":"31"}],"functionName":{"name":"add","nativeSrc":"1191:3:1","nodeType":"YulIdentifier","src":"1191:3:1"},"nativeSrc":"1191:15:1","nodeType":"YulFunctionCall","src":"1191:15:1"},{"arguments":[{"kind":"number","nativeSrc":"1212:2:1","nodeType":"YulLiteral","src":"1212:2:1","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"1208:3:1","nodeType":"YulIdentifier","src":"1208:3:1"},"nativeSrc":"1208:7:1","nodeType":"YulFunctionCall","src":"1208:7:1"}],"functionName":{"name":"and","nativeSrc":"1187:3:1","nodeType":"YulIdentifier","src":"1187:3:1"},"nativeSrc":"1187:29:1","nodeType":"YulFunctionCall","src":"1187:29:1"}],"functionName":{"name":"add","nativeSrc":"1178:3:1","nodeType":"YulIdentifier","src":"1178:3:1"},"nativeSrc":"1178:39:1","nodeType":"YulFunctionCall","src":"1178:39:1"},{"kind":"number","nativeSrc":"1219:4:1","nodeType":"YulLiteral","src":"1219:4:1","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"1174:3:1","nodeType":"YulIdentifier","src":"1174:3:1"},"nativeSrc":"1174:50:1","nodeType":"YulFunctionCall","src":"1174:50:1"},"variableNames":[{"name":"end","nativeSrc":"1167:3:1","nodeType":"YulIdentifier","src":"1167:3:1"}]}]},"name":"abi_encode_string","nativeSrc":"959:271:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"986:5:1","nodeType":"YulTypedName","src":"986:5:1","type":""},{"name":"pos","nativeSrc":"993:3:1","nodeType":"YulTypedName","src":"993:3:1","type":""}],"returnVariables":[{"name":"end","nativeSrc":"1001:3:1","nodeType":"YulTypedName","src":"1001:3:1","type":""}],"src":"959:271:1"},{"body":{"nativeSrc":"1356:99:1","nodeType":"YulBlock","src":"1356:99:1","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"1373:9:1","nodeType":"YulIdentifier","src":"1373:9:1"},{"kind":"number","nativeSrc":"1384:2:1","nodeType":"YulLiteral","src":"1384:2:1","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"1366:6:1","nodeType":"YulIdentifier","src":"1366:6:1"},"nativeSrc":"1366:21:1","nodeType":"YulFunctionCall","src":"1366:21:1"},"nativeSrc":"1366:21:1","nodeType":"YulExpressionStatement","src":"1366:21:1"},{"nativeSrc":"1396:53:1","nodeType":"YulAssignment","src":"1396:53:1","value":{"arguments":[{"name":"value0","nativeSrc":"1422:6:1","nodeType":"YulIdentifier","src":"1422:6:1"},{"arguments":[{"name":"headStart","nativeSrc":"1434:9:1","nodeType":"YulIdentifier","src":"1434:9:1"},{"kind":"number","nativeSrc":"1445:2:1","nodeType":"YulLiteral","src":"1445:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1430:3:1","nodeType":"YulIdentifier","src":"1430:3:1"},"nativeSrc":"1430:18:1","nodeType":"YulFunctionCall","src":"1430:18:1"}],"functionName":{"name":"abi_encode_string","nativeSrc":"1404:17:1","nodeType":"YulIdentifier","src":"1404:17:1"},"nativeSrc":"1404:45:1","nodeType":"YulFunctionCall","src":"1404:45:1"},"variableNames":[{"name":"tail","nativeSrc":"1396:4:1","nodeType":"YulIdentifier","src":"1396:4:1"}]}]},"name":"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"1235:220:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1325:9:1","nodeType":"YulTypedName","src":"1325:9:1","type":""},{"name":"value0","nativeSrc":"1336:6:1","nodeType":"YulTypedName","src":"1336:6:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"1347:4:1","nodeType":"YulTypedName","src":"1347:4:1","type":""}],"src":"1235:220:1"},{"body":{"nativeSrc":"1530:177:1","nodeType":"YulBlock","src":"1530:177:1","statements":[{"body":{"nativeSrc":"1576:16:1","nodeType":"YulBlock","src":"1576:16:1","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1585:1:1","nodeType":"YulLiteral","src":"1585:1:1","type":"","value":"0"},{"kind":"number","nativeSrc":"1588:1:1","nodeType":"YulLiteral","src":"1588:1:1","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1578:6:1","nodeType":"YulIdentifier","src":"1578:6:1"},"nativeSrc":"1578:12:1","nodeType":"YulFunctionCall","src":"1578:12:1"},"nativeSrc":"1578:12:1","nodeType":"YulExpressionStatement","src":"1578:12:1"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"1551:7:1","nodeType":"YulIdentifier","src":"1551:7:1"},{"name":"headStart","nativeSrc":"1560:9:1","nodeType":"YulIdentifier","src":"1560:9:1"}],"functionName":{"name":"sub","nativeSrc":"1547:3:1","nodeType":"YulIdentifier","src":"1547:3:1"},"nativeSrc":"1547:23:1","nodeType":"YulFunctionCall","src":"1547:23:1"},{"kind":"number","nativeSrc":"1572:2:1","nodeType":"YulLiteral","src":"1572:2:1","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"1543:3:1","nodeType":"YulIdentifier","src":"1543:3:1"},"nativeSrc":"1543:32:1","nodeType":"YulFunctionCall","src":"1543:32:1"},"nativeSrc":"1540:52:1","nodeType":"YulIf","src":"1540:52:1"},{"nativeSrc":"1601:36:1","nodeType":"YulVariableDeclaration","src":"1601:36:1","value":{"arguments":[{"name":"headStart","nativeSrc":"1627:9:1","nodeType":"YulIdentifier","src":"1627:9:1"}],"functionName":{"name":"calldataload","nativeSrc":"1614:12:1","nodeType":"YulIdentifier","src":"1614:12:1"},"nativeSrc":"1614:23:1","nodeType":"YulFunctionCall","src":"1614:23:1"},"variables":[{"name":"value","nativeSrc":"1605:5:1","nodeType":"YulTypedName","src":"1605:5:1","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"1671:5:1","nodeType":"YulIdentifier","src":"1671:5:1"}],"functionName":{"name":"validator_revert_address","nativeSrc":"1646:24:1","nodeType":"YulIdentifier","src":"1646:24:1"},"nativeSrc":"1646:31:1","nodeType":"YulFunctionCall","src":"1646:31:1"},"nativeSrc":"1646:31:1","nodeType":"YulExpressionStatement","src":"1646:31:1"},{"nativeSrc":"1686:15:1","nodeType":"YulAssignment","src":"1686:15:1","value":{"name":"value","nativeSrc":"1696:5:1","nodeType":"YulIdentifier","src":"1696:5:1"},"variableNames":[{"name":"value0","nativeSrc":"1686:6:1","nodeType":"YulIdentifier","src":"1686:6:1"}]}]},"name":"abi_decode_tuple_t_address","nativeSrc":"1460:247:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1496:9:1","nodeType":"YulTypedName","src":"1496:9:1","type":""},{"name":"dataEnd","nativeSrc":"1507:7:1","nodeType":"YulTypedName","src":"1507:7:1","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"1519:6:1","nodeType":"YulTypedName","src":"1519:6:1","type":""}],"src":"1460:247:1"},{"body":{"nativeSrc":"1839:164:1","nodeType":"YulBlock","src":"1839:164:1","statements":[{"nativeSrc":"1849:26:1","nodeType":"YulAssignment","src":"1849:26:1","value":{"arguments":[{"name":"headStart","nativeSrc":"1861:9:1","nodeType":"YulIdentifier","src":"1861:9:1"},{"kind":"number","nativeSrc":"1872:2:1","nodeType":"YulLiteral","src":"1872:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"1857:3:1","nodeType":"YulIdentifier","src":"1857:3:1"},"nativeSrc":"1857:18:1","nodeType":"YulFunctionCall","src":"1857:18:1"},"variableNames":[{"name":"tail","nativeSrc":"1849:4:1","nodeType":"YulIdentifier","src":"1849:4:1"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"1891:9:1","nodeType":"YulIdentifier","src":"1891:9:1"},{"arguments":[{"name":"value0","nativeSrc":"1906:6:1","nodeType":"YulIdentifier","src":"1906:6:1"},{"kind":"number","nativeSrc":"1914:12:1","nodeType":"YulLiteral","src":"1914:12:1","type":"","value":"0xffffffffff"}],"functionName":{"name":"and","nativeSrc":"1902:3:1","nodeType":"YulIdentifier","src":"1902:3:1"},"nativeSrc":"1902:25:1","nodeType":"YulFunctionCall","src":"1902:25:1"}],"functionName":{"name":"mstore","nativeSrc":"1884:6:1","nodeType":"YulIdentifier","src":"1884:6:1"},"nativeSrc":"1884:44:1","nodeType":"YulFunctionCall","src":"1884:44:1"},"nativeSrc":"1884:44:1","nodeType":"YulExpressionStatement","src":"1884:44:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1948:9:1","nodeType":"YulIdentifier","src":"1948:9:1"},{"kind":"number","nativeSrc":"1959:2:1","nodeType":"YulLiteral","src":"1959:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1944:3:1","nodeType":"YulIdentifier","src":"1944:3:1"},"nativeSrc":"1944:18:1","nodeType":"YulFunctionCall","src":"1944:18:1"},{"arguments":[{"name":"value1","nativeSrc":"1968:6:1","nodeType":"YulIdentifier","src":"1968:6:1"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"1984:3:1","nodeType":"YulLiteral","src":"1984:3:1","type":"","value":"216"},{"kind":"number","nativeSrc":"1989:1:1","nodeType":"YulLiteral","src":"1989:1:1","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"1980:3:1","nodeType":"YulIdentifier","src":"1980:3:1"},"nativeSrc":"1980:11:1","nodeType":"YulFunctionCall","src":"1980:11:1"},{"kind":"number","nativeSrc":"1993:1:1","nodeType":"YulLiteral","src":"1993:1:1","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"1976:3:1","nodeType":"YulIdentifier","src":"1976:3:1"},"nativeSrc":"1976:19:1","nodeType":"YulFunctionCall","src":"1976:19:1"}],"functionName":{"name":"and","nativeSrc":"1964:3:1","nodeType":"YulIdentifier","src":"1964:3:1"},"nativeSrc":"1964:32:1","nodeType":"YulFunctionCall","src":"1964:32:1"}],"functionName":{"name":"mstore","nativeSrc":"1937:6:1","nodeType":"YulIdentifier","src":"1937:6:1"},"nativeSrc":"1937:60:1","nodeType":"YulFunctionCall","src":"1937:60:1"},"nativeSrc":"1937:60:1","nodeType":"YulExpressionStatement","src":"1937:60:1"}]},"name":"abi_encode_tuple_t_uint40_t_uint216__to_t_uint40_t_uint216__fromStack_reversed","nativeSrc":"1712:291:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1800:9:1","nodeType":"YulTypedName","src":"1800:9:1","type":""},{"name":"value1","nativeSrc":"1811:6:1","nodeType":"YulTypedName","src":"1811:6:1","type":""},{"name":"value0","nativeSrc":"1819:6:1","nodeType":"YulTypedName","src":"1819:6:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"1830:4:1","nodeType":"YulTypedName","src":"1830:4:1","type":""}],"src":"1712:291:1"},{"body":{"nativeSrc":"2103:92:1","nodeType":"YulBlock","src":"2103:92:1","statements":[{"nativeSrc":"2113:26:1","nodeType":"YulAssignment","src":"2113:26:1","value":{"arguments":[{"name":"headStart","nativeSrc":"2125:9:1","nodeType":"YulIdentifier","src":"2125:9:1"},{"kind":"number","nativeSrc":"2136:2:1","nodeType":"YulLiteral","src":"2136:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"2121:3:1","nodeType":"YulIdentifier","src":"2121:3:1"},"nativeSrc":"2121:18:1","nodeType":"YulFunctionCall","src":"2121:18:1"},"variableNames":[{"name":"tail","nativeSrc":"2113:4:1","nodeType":"YulIdentifier","src":"2113:4:1"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"2155:9:1","nodeType":"YulIdentifier","src":"2155:9:1"},{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"2180:6:1","nodeType":"YulIdentifier","src":"2180:6:1"}],"functionName":{"name":"iszero","nativeSrc":"2173:6:1","nodeType":"YulIdentifier","src":"2173:6:1"},"nativeSrc":"2173:14:1","nodeType":"YulFunctionCall","src":"2173:14:1"}],"functionName":{"name":"iszero","nativeSrc":"2166:6:1","nodeType":"YulIdentifier","src":"2166:6:1"},"nativeSrc":"2166:22:1","nodeType":"YulFunctionCall","src":"2166:22:1"}],"functionName":{"name":"mstore","nativeSrc":"2148:6:1","nodeType":"YulIdentifier","src":"2148:6:1"},"nativeSrc":"2148:41:1","nodeType":"YulFunctionCall","src":"2148:41:1"},"nativeSrc":"2148:41:1","nodeType":"YulExpressionStatement","src":"2148:41:1"}]},"name":"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed","nativeSrc":"2008:187:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"2072:9:1","nodeType":"YulTypedName","src":"2072:9:1","type":""},{"name":"value0","nativeSrc":"2083:6:1","nodeType":"YulTypedName","src":"2083:6:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"2094:4:1","nodeType":"YulTypedName","src":"2094:4:1","type":""}],"src":"2008:187:1"},{"body":{"nativeSrc":"2270:156:1","nodeType":"YulBlock","src":"2270:156:1","statements":[{"body":{"nativeSrc":"2316:16:1","nodeType":"YulBlock","src":"2316:16:1","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2325:1:1","nodeType":"YulLiteral","src":"2325:1:1","type":"","value":"0"},{"kind":"number","nativeSrc":"2328:1:1","nodeType":"YulLiteral","src":"2328:1:1","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2318:6:1","nodeType":"YulIdentifier","src":"2318:6:1"},"nativeSrc":"2318:12:1","nodeType":"YulFunctionCall","src":"2318:12:1"},"nativeSrc":"2318:12:1","nodeType":"YulExpressionStatement","src":"2318:12:1"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"2291:7:1","nodeType":"YulIdentifier","src":"2291:7:1"},{"name":"headStart","nativeSrc":"2300:9:1","nodeType":"YulIdentifier","src":"2300:9:1"}],"functionName":{"name":"sub","nativeSrc":"2287:3:1","nodeType":"YulIdentifier","src":"2287:3:1"},"nativeSrc":"2287:23:1","nodeType":"YulFunctionCall","src":"2287:23:1"},{"kind":"number","nativeSrc":"2312:2:1","nodeType":"YulLiteral","src":"2312:2:1","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"2283:3:1","nodeType":"YulIdentifier","src":"2283:3:1"},"nativeSrc":"2283:32:1","nodeType":"YulFunctionCall","src":"2283:32:1"},"nativeSrc":"2280:52:1","nodeType":"YulIf","src":"2280:52:1"},{"nativeSrc":"2341:14:1","nodeType":"YulVariableDeclaration","src":"2341:14:1","value":{"kind":"number","nativeSrc":"2354:1:1","nodeType":"YulLiteral","src":"2354:1:1","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"2345:5:1","nodeType":"YulTypedName","src":"2345:5:1","type":""}]},{"nativeSrc":"2364:32:1","nodeType":"YulAssignment","src":"2364:32:1","value":{"arguments":[{"name":"headStart","nativeSrc":"2386:9:1","nodeType":"YulIdentifier","src":"2386:9:1"}],"functionName":{"name":"calldataload","nativeSrc":"2373:12:1","nodeType":"YulIdentifier","src":"2373:12:1"},"nativeSrc":"2373:23:1","nodeType":"YulFunctionCall","src":"2373:23:1"},"variableNames":[{"name":"value","nativeSrc":"2364:5:1","nodeType":"YulIdentifier","src":"2364:5:1"}]},{"nativeSrc":"2405:15:1","nodeType":"YulAssignment","src":"2405:15:1","value":{"name":"value","nativeSrc":"2415:5:1","nodeType":"YulIdentifier","src":"2415:5:1"},"variableNames":[{"name":"value0","nativeSrc":"2405:6:1","nodeType":"YulIdentifier","src":"2405:6:1"}]}]},"name":"abi_decode_tuple_t_uint256","nativeSrc":"2200:226:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"2236:9:1","nodeType":"YulTypedName","src":"2236:9:1","type":""},{"name":"dataEnd","nativeSrc":"2247:7:1","nodeType":"YulTypedName","src":"2247:7:1","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"2259:6:1","nodeType":"YulTypedName","src":"2259:6:1","type":""}],"src":"2200:226:1"},{"body":{"nativeSrc":"2532:102:1","nodeType":"YulBlock","src":"2532:102:1","statements":[{"nativeSrc":"2542:26:1","nodeType":"YulAssignment","src":"2542:26:1","value":{"arguments":[{"name":"headStart","nativeSrc":"2554:9:1","nodeType":"YulIdentifier","src":"2554:9:1"},{"kind":"number","nativeSrc":"2565:2:1","nodeType":"YulLiteral","src":"2565:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"2550:3:1","nodeType":"YulIdentifier","src":"2550:3:1"},"nativeSrc":"2550:18:1","nodeType":"YulFunctionCall","src":"2550:18:1"},"variableNames":[{"name":"tail","nativeSrc":"2542:4:1","nodeType":"YulIdentifier","src":"2542:4:1"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"2584:9:1","nodeType":"YulIdentifier","src":"2584:9:1"},{"arguments":[{"name":"value0","nativeSrc":"2599:6:1","nodeType":"YulIdentifier","src":"2599:6:1"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"2615:3:1","nodeType":"YulLiteral","src":"2615:3:1","type":"","value":"160"},{"kind":"number","nativeSrc":"2620:1:1","nodeType":"YulLiteral","src":"2620:1:1","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"2611:3:1","nodeType":"YulIdentifier","src":"2611:3:1"},"nativeSrc":"2611:11:1","nodeType":"YulFunctionCall","src":"2611:11:1"},{"kind":"number","nativeSrc":"2624:1:1","nodeType":"YulLiteral","src":"2624:1:1","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"2607:3:1","nodeType":"YulIdentifier","src":"2607:3:1"},"nativeSrc":"2607:19:1","nodeType":"YulFunctionCall","src":"2607:19:1"}],"functionName":{"name":"and","nativeSrc":"2595:3:1","nodeType":"YulIdentifier","src":"2595:3:1"},"nativeSrc":"2595:32:1","nodeType":"YulFunctionCall","src":"2595:32:1"}],"functionName":{"name":"mstore","nativeSrc":"2577:6:1","nodeType":"YulIdentifier","src":"2577:6:1"},"nativeSrc":"2577:51:1","nodeType":"YulFunctionCall","src":"2577:51:1"},"nativeSrc":"2577:51:1","nodeType":"YulExpressionStatement","src":"2577:51:1"}]},"name":"abi_encode_tuple_t_address__to_t_address__fromStack_reversed","nativeSrc":"2431:203:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"2501:9:1","nodeType":"YulTypedName","src":"2501:9:1","type":""},{"name":"value0","nativeSrc":"2512:6:1","nodeType":"YulTypedName","src":"2512:6:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"2523:4:1","nodeType":"YulTypedName","src":"2523:4:1","type":""}],"src":"2431:203:1"},{"body":{"nativeSrc":"2743:404:1","nodeType":"YulBlock","src":"2743:404:1","statements":[{"body":{"nativeSrc":"2789:16:1","nodeType":"YulBlock","src":"2789:16:1","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2798:1:1","nodeType":"YulLiteral","src":"2798:1:1","type":"","value":"0"},{"kind":"number","nativeSrc":"2801:1:1","nodeType":"YulLiteral","src":"2801:1:1","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2791:6:1","nodeType":"YulIdentifier","src":"2791:6:1"},"nativeSrc":"2791:12:1","nodeType":"YulFunctionCall","src":"2791:12:1"},"nativeSrc":"2791:12:1","nodeType":"YulExpressionStatement","src":"2791:12:1"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"2764:7:1","nodeType":"YulIdentifier","src":"2764:7:1"},{"name":"headStart","nativeSrc":"2773:9:1","nodeType":"YulIdentifier","src":"2773:9:1"}],"functionName":{"name":"sub","nativeSrc":"2760:3:1","nodeType":"YulIdentifier","src":"2760:3:1"},"nativeSrc":"2760:23:1","nodeType":"YulFunctionCall","src":"2760:23:1"},{"kind":"number","nativeSrc":"2785:2:1","nodeType":"YulLiteral","src":"2785:2:1","type":"","value":"96"}],"functionName":{"name":"slt","nativeSrc":"2756:3:1","nodeType":"YulIdentifier","src":"2756:3:1"},"nativeSrc":"2756:32:1","nodeType":"YulFunctionCall","src":"2756:32:1"},"nativeSrc":"2753:52:1","nodeType":"YulIf","src":"2753:52:1"},{"nativeSrc":"2814:36:1","nodeType":"YulVariableDeclaration","src":"2814:36:1","value":{"arguments":[{"name":"headStart","nativeSrc":"2840:9:1","nodeType":"YulIdentifier","src":"2840:9:1"}],"functionName":{"name":"calldataload","nativeSrc":"2827:12:1","nodeType":"YulIdentifier","src":"2827:12:1"},"nativeSrc":"2827:23:1","nodeType":"YulFunctionCall","src":"2827:23:1"},"variables":[{"name":"value","nativeSrc":"2818:5:1","nodeType":"YulTypedName","src":"2818:5:1","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"2884:5:1","nodeType":"YulIdentifier","src":"2884:5:1"}],"functionName":{"name":"validator_revert_address","nativeSrc":"2859:24:1","nodeType":"YulIdentifier","src":"2859:24:1"},"nativeSrc":"2859:31:1","nodeType":"YulFunctionCall","src":"2859:31:1"},"nativeSrc":"2859:31:1","nodeType":"YulExpressionStatement","src":"2859:31:1"},{"nativeSrc":"2899:15:1","nodeType":"YulAssignment","src":"2899:15:1","value":{"name":"value","nativeSrc":"2909:5:1","nodeType":"YulIdentifier","src":"2909:5:1"},"variableNames":[{"name":"value0","nativeSrc":"2899:6:1","nodeType":"YulIdentifier","src":"2899:6:1"}]},{"nativeSrc":"2923:47:1","nodeType":"YulVariableDeclaration","src":"2923:47:1","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"2955:9:1","nodeType":"YulIdentifier","src":"2955:9:1"},{"kind":"number","nativeSrc":"2966:2:1","nodeType":"YulLiteral","src":"2966:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"2951:3:1","nodeType":"YulIdentifier","src":"2951:3:1"},"nativeSrc":"2951:18:1","nodeType":"YulFunctionCall","src":"2951:18:1"}],"functionName":{"name":"calldataload","nativeSrc":"2938:12:1","nodeType":"YulIdentifier","src":"2938:12:1"},"nativeSrc":"2938:32:1","nodeType":"YulFunctionCall","src":"2938:32:1"},"variables":[{"name":"value_1","nativeSrc":"2927:7:1","nodeType":"YulTypedName","src":"2927:7:1","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"3004:7:1","nodeType":"YulIdentifier","src":"3004:7:1"}],"functionName":{"name":"validator_revert_address","nativeSrc":"2979:24:1","nodeType":"YulIdentifier","src":"2979:24:1"},"nativeSrc":"2979:33:1","nodeType":"YulFunctionCall","src":"2979:33:1"},"nativeSrc":"2979:33:1","nodeType":"YulExpressionStatement","src":"2979:33:1"},{"nativeSrc":"3021:17:1","nodeType":"YulAssignment","src":"3021:17:1","value":{"name":"value_1","nativeSrc":"3031:7:1","nodeType":"YulIdentifier","src":"3031:7:1"},"variableNames":[{"name":"value1","nativeSrc":"3021:6:1","nodeType":"YulIdentifier","src":"3021:6:1"}]},{"nativeSrc":"3047:16:1","nodeType":"YulVariableDeclaration","src":"3047:16:1","value":{"kind":"number","nativeSrc":"3062:1:1","nodeType":"YulLiteral","src":"3062:1:1","type":"","value":"0"},"variables":[{"name":"value_2","nativeSrc":"3051:7:1","nodeType":"YulTypedName","src":"3051:7:1","type":""}]},{"nativeSrc":"3072:43:1","nodeType":"YulAssignment","src":"3072:43:1","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3100:9:1","nodeType":"YulIdentifier","src":"3100:9:1"},{"kind":"number","nativeSrc":"3111:2:1","nodeType":"YulLiteral","src":"3111:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"3096:3:1","nodeType":"YulIdentifier","src":"3096:3:1"},"nativeSrc":"3096:18:1","nodeType":"YulFunctionCall","src":"3096:18:1"}],"functionName":{"name":"calldataload","nativeSrc":"3083:12:1","nodeType":"YulIdentifier","src":"3083:12:1"},"nativeSrc":"3083:32:1","nodeType":"YulFunctionCall","src":"3083:32:1"},"variableNames":[{"name":"value_2","nativeSrc":"3072:7:1","nodeType":"YulIdentifier","src":"3072:7:1"}]},{"nativeSrc":"3124:17:1","nodeType":"YulAssignment","src":"3124:17:1","value":{"name":"value_2","nativeSrc":"3134:7:1","nodeType":"YulIdentifier","src":"3134:7:1"},"variableNames":[{"name":"value2","nativeSrc":"3124:6:1","nodeType":"YulIdentifier","src":"3124:6:1"}]}]},"name":"abi_decode_tuple_t_addresst_addresst_uint256","nativeSrc":"2639:508:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"2693:9:1","nodeType":"YulTypedName","src":"2693:9:1","type":""},{"name":"dataEnd","nativeSrc":"2704:7:1","nodeType":"YulTypedName","src":"2704:7:1","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"2716:6:1","nodeType":"YulTypedName","src":"2716:6:1","type":""},{"name":"value1","nativeSrc":"2724:6:1","nodeType":"YulTypedName","src":"2724:6:1","type":""},{"name":"value2","nativeSrc":"2732:6:1","nodeType":"YulTypedName","src":"2732:6:1","type":""}],"src":"2639:508:1"},{"body":{"nativeSrc":"3294:102:1","nodeType":"YulBlock","src":"3294:102:1","statements":[{"nativeSrc":"3304:26:1","nodeType":"YulAssignment","src":"3304:26:1","value":{"arguments":[{"name":"headStart","nativeSrc":"3316:9:1","nodeType":"YulIdentifier","src":"3316:9:1"},{"kind":"number","nativeSrc":"3327:2:1","nodeType":"YulLiteral","src":"3327:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"3312:3:1","nodeType":"YulIdentifier","src":"3312:3:1"},"nativeSrc":"3312:18:1","nodeType":"YulFunctionCall","src":"3312:18:1"},"variableNames":[{"name":"tail","nativeSrc":"3304:4:1","nodeType":"YulIdentifier","src":"3304:4:1"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"3346:9:1","nodeType":"YulIdentifier","src":"3346:9:1"},{"arguments":[{"name":"value0","nativeSrc":"3361:6:1","nodeType":"YulIdentifier","src":"3361:6:1"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"3377:3:1","nodeType":"YulLiteral","src":"3377:3:1","type":"","value":"160"},{"kind":"number","nativeSrc":"3382:1:1","nodeType":"YulLiteral","src":"3382:1:1","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"3373:3:1","nodeType":"YulIdentifier","src":"3373:3:1"},"nativeSrc":"3373:11:1","nodeType":"YulFunctionCall","src":"3373:11:1"},{"kind":"number","nativeSrc":"3386:1:1","nodeType":"YulLiteral","src":"3386:1:1","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"3369:3:1","nodeType":"YulIdentifier","src":"3369:3:1"},"nativeSrc":"3369:19:1","nodeType":"YulFunctionCall","src":"3369:19:1"}],"functionName":{"name":"and","nativeSrc":"3357:3:1","nodeType":"YulIdentifier","src":"3357:3:1"},"nativeSrc":"3357:32:1","nodeType":"YulFunctionCall","src":"3357:32:1"}],"functionName":{"name":"mstore","nativeSrc":"3339:6:1","nodeType":"YulIdentifier","src":"3339:6:1"},"nativeSrc":"3339:51:1","nodeType":"YulFunctionCall","src":"3339:51:1"},"nativeSrc":"3339:51:1","nodeType":"YulExpressionStatement","src":"3339:51:1"}]},"name":"abi_encode_tuple_t_contract$_IGhoVariableDebtTokenTransferHook_$162__to_t_address__fromStack_reversed","nativeSrc":"3152:244:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"3263:9:1","nodeType":"YulTypedName","src":"3263:9:1","type":""},{"name":"value0","nativeSrc":"3274:6:1","nodeType":"YulTypedName","src":"3274:6:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"3285:4:1","nodeType":"YulTypedName","src":"3285:4:1","type":""}],"src":"3152:244:1"},{"body":{"nativeSrc":"3502:76:1","nodeType":"YulBlock","src":"3502:76:1","statements":[{"nativeSrc":"3512:26:1","nodeType":"YulAssignment","src":"3512:26:1","value":{"arguments":[{"name":"headStart","nativeSrc":"3524:9:1","nodeType":"YulIdentifier","src":"3524:9:1"},{"kind":"number","nativeSrc":"3535:2:1","nodeType":"YulLiteral","src":"3535:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"3520:3:1","nodeType":"YulIdentifier","src":"3520:3:1"},"nativeSrc":"3520:18:1","nodeType":"YulFunctionCall","src":"3520:18:1"},"variableNames":[{"name":"tail","nativeSrc":"3512:4:1","nodeType":"YulIdentifier","src":"3512:4:1"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"3554:9:1","nodeType":"YulIdentifier","src":"3554:9:1"},{"name":"value0","nativeSrc":"3565:6:1","nodeType":"YulIdentifier","src":"3565:6:1"}],"functionName":{"name":"mstore","nativeSrc":"3547:6:1","nodeType":"YulIdentifier","src":"3547:6:1"},"nativeSrc":"3547:25:1","nodeType":"YulFunctionCall","src":"3547:25:1"},"nativeSrc":"3547:25:1","nodeType":"YulExpressionStatement","src":"3547:25:1"}]},"name":"abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed","nativeSrc":"3401:177:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"3471:9:1","nodeType":"YulTypedName","src":"3471:9:1","type":""},{"name":"value0","nativeSrc":"3482:6:1","nodeType":"YulTypedName","src":"3482:6:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"3493:4:1","nodeType":"YulTypedName","src":"3493:4:1","type":""}],"src":"3401:177:1"},{"body":{"nativeSrc":"3697:102:1","nodeType":"YulBlock","src":"3697:102:1","statements":[{"nativeSrc":"3707:26:1","nodeType":"YulAssignment","src":"3707:26:1","value":{"arguments":[{"name":"headStart","nativeSrc":"3719:9:1","nodeType":"YulIdentifier","src":"3719:9:1"},{"kind":"number","nativeSrc":"3730:2:1","nodeType":"YulLiteral","src":"3730:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"3715:3:1","nodeType":"YulIdentifier","src":"3715:3:1"},"nativeSrc":"3715:18:1","nodeType":"YulFunctionCall","src":"3715:18:1"},"variableNames":[{"name":"tail","nativeSrc":"3707:4:1","nodeType":"YulIdentifier","src":"3707:4:1"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"3749:9:1","nodeType":"YulIdentifier","src":"3749:9:1"},{"arguments":[{"name":"value0","nativeSrc":"3764:6:1","nodeType":"YulIdentifier","src":"3764:6:1"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"3780:3:1","nodeType":"YulLiteral","src":"3780:3:1","type":"","value":"160"},{"kind":"number","nativeSrc":"3785:1:1","nodeType":"YulLiteral","src":"3785:1:1","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"3776:3:1","nodeType":"YulIdentifier","src":"3776:3:1"},"nativeSrc":"3776:11:1","nodeType":"YulFunctionCall","src":"3776:11:1"},{"kind":"number","nativeSrc":"3789:1:1","nodeType":"YulLiteral","src":"3789:1:1","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"3772:3:1","nodeType":"YulIdentifier","src":"3772:3:1"},"nativeSrc":"3772:19:1","nodeType":"YulFunctionCall","src":"3772:19:1"}],"functionName":{"name":"and","nativeSrc":"3760:3:1","nodeType":"YulIdentifier","src":"3760:3:1"},"nativeSrc":"3760:32:1","nodeType":"YulFunctionCall","src":"3760:32:1"}],"functionName":{"name":"mstore","nativeSrc":"3742:6:1","nodeType":"YulIdentifier","src":"3742:6:1"},"nativeSrc":"3742:51:1","nodeType":"YulFunctionCall","src":"3742:51:1"},"nativeSrc":"3742:51:1","nodeType":"YulExpressionStatement","src":"3742:51:1"}]},"name":"abi_encode_tuple_t_contract$_IERC20_$77__to_t_address__fromStack_reversed","nativeSrc":"3583:216:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"3666:9:1","nodeType":"YulTypedName","src":"3666:9:1","type":""},{"name":"value0","nativeSrc":"3677:6:1","nodeType":"YulTypedName","src":"3677:6:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"3688:4:1","nodeType":"YulTypedName","src":"3688:4:1","type":""}],"src":"3583:216:1"},{"body":{"nativeSrc":"3901:87:1","nodeType":"YulBlock","src":"3901:87:1","statements":[{"nativeSrc":"3911:26:1","nodeType":"YulAssignment","src":"3911:26:1","value":{"arguments":[{"name":"headStart","nativeSrc":"3923:9:1","nodeType":"YulIdentifier","src":"3923:9:1"},{"kind":"number","nativeSrc":"3934:2:1","nodeType":"YulLiteral","src":"3934:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"3919:3:1","nodeType":"YulIdentifier","src":"3919:3:1"},"nativeSrc":"3919:18:1","nodeType":"YulFunctionCall","src":"3919:18:1"},"variableNames":[{"name":"tail","nativeSrc":"3911:4:1","nodeType":"YulIdentifier","src":"3911:4:1"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"3953:9:1","nodeType":"YulIdentifier","src":"3953:9:1"},{"arguments":[{"name":"value0","nativeSrc":"3968:6:1","nodeType":"YulIdentifier","src":"3968:6:1"},{"kind":"number","nativeSrc":"3976:4:1","nodeType":"YulLiteral","src":"3976:4:1","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"3964:3:1","nodeType":"YulIdentifier","src":"3964:3:1"},"nativeSrc":"3964:17:1","nodeType":"YulFunctionCall","src":"3964:17:1"}],"functionName":{"name":"mstore","nativeSrc":"3946:6:1","nodeType":"YulIdentifier","src":"3946:6:1"},"nativeSrc":"3946:36:1","nodeType":"YulFunctionCall","src":"3946:36:1"},"nativeSrc":"3946:36:1","nodeType":"YulExpressionStatement","src":"3946:36:1"}]},"name":"abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed","nativeSrc":"3804:184:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"3870:9:1","nodeType":"YulTypedName","src":"3870:9:1","type":""},{"name":"value0","nativeSrc":"3881:6:1","nodeType":"YulTypedName","src":"3881:6:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"3892:4:1","nodeType":"YulTypedName","src":"3892:4:1","type":""}],"src":"3804:184:1"},{"body":{"nativeSrc":"4080:301:1","nodeType":"YulBlock","src":"4080:301:1","statements":[{"body":{"nativeSrc":"4126:16:1","nodeType":"YulBlock","src":"4126:16:1","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4135:1:1","nodeType":"YulLiteral","src":"4135:1:1","type":"","value":"0"},{"kind":"number","nativeSrc":"4138:1:1","nodeType":"YulLiteral","src":"4138:1:1","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"4128:6:1","nodeType":"YulIdentifier","src":"4128:6:1"},"nativeSrc":"4128:12:1","nodeType":"YulFunctionCall","src":"4128:12:1"},"nativeSrc":"4128:12:1","nodeType":"YulExpressionStatement","src":"4128:12:1"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"4101:7:1","nodeType":"YulIdentifier","src":"4101:7:1"},{"name":"headStart","nativeSrc":"4110:9:1","nodeType":"YulIdentifier","src":"4110:9:1"}],"functionName":{"name":"sub","nativeSrc":"4097:3:1","nodeType":"YulIdentifier","src":"4097:3:1"},"nativeSrc":"4097:23:1","nodeType":"YulFunctionCall","src":"4097:23:1"},{"kind":"number","nativeSrc":"4122:2:1","nodeType":"YulLiteral","src":"4122:2:1","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"4093:3:1","nodeType":"YulIdentifier","src":"4093:3:1"},"nativeSrc":"4093:32:1","nodeType":"YulFunctionCall","src":"4093:32:1"},"nativeSrc":"4090:52:1","nodeType":"YulIf","src":"4090:52:1"},{"nativeSrc":"4151:36:1","nodeType":"YulVariableDeclaration","src":"4151:36:1","value":{"arguments":[{"name":"headStart","nativeSrc":"4177:9:1","nodeType":"YulIdentifier","src":"4177:9:1"}],"functionName":{"name":"calldataload","nativeSrc":"4164:12:1","nodeType":"YulIdentifier","src":"4164:12:1"},"nativeSrc":"4164:23:1","nodeType":"YulFunctionCall","src":"4164:23:1"},"variables":[{"name":"value","nativeSrc":"4155:5:1","nodeType":"YulTypedName","src":"4155:5:1","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"4221:5:1","nodeType":"YulIdentifier","src":"4221:5:1"}],"functionName":{"name":"validator_revert_address","nativeSrc":"4196:24:1","nodeType":"YulIdentifier","src":"4196:24:1"},"nativeSrc":"4196:31:1","nodeType":"YulFunctionCall","src":"4196:31:1"},"nativeSrc":"4196:31:1","nodeType":"YulExpressionStatement","src":"4196:31:1"},{"nativeSrc":"4236:15:1","nodeType":"YulAssignment","src":"4236:15:1","value":{"name":"value","nativeSrc":"4246:5:1","nodeType":"YulIdentifier","src":"4246:5:1"},"variableNames":[{"name":"value0","nativeSrc":"4236:6:1","nodeType":"YulIdentifier","src":"4236:6:1"}]},{"nativeSrc":"4260:47:1","nodeType":"YulVariableDeclaration","src":"4260:47:1","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4292:9:1","nodeType":"YulIdentifier","src":"4292:9:1"},{"kind":"number","nativeSrc":"4303:2:1","nodeType":"YulLiteral","src":"4303:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"4288:3:1","nodeType":"YulIdentifier","src":"4288:3:1"},"nativeSrc":"4288:18:1","nodeType":"YulFunctionCall","src":"4288:18:1"}],"functionName":{"name":"calldataload","nativeSrc":"4275:12:1","nodeType":"YulIdentifier","src":"4275:12:1"},"nativeSrc":"4275:32:1","nodeType":"YulFunctionCall","src":"4275:32:1"},"variables":[{"name":"value_1","nativeSrc":"4264:7:1","nodeType":"YulTypedName","src":"4264:7:1","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"4341:7:1","nodeType":"YulIdentifier","src":"4341:7:1"}],"functionName":{"name":"validator_revert_address","nativeSrc":"4316:24:1","nodeType":"YulIdentifier","src":"4316:24:1"},"nativeSrc":"4316:33:1","nodeType":"YulFunctionCall","src":"4316:33:1"},"nativeSrc":"4316:33:1","nodeType":"YulExpressionStatement","src":"4316:33:1"},{"nativeSrc":"4358:17:1","nodeType":"YulAssignment","src":"4358:17:1","value":{"name":"value_1","nativeSrc":"4368:7:1","nodeType":"YulIdentifier","src":"4368:7:1"},"variableNames":[{"name":"value1","nativeSrc":"4358:6:1","nodeType":"YulIdentifier","src":"4358:6:1"}]}]},"name":"abi_decode_tuple_t_addresst_address","nativeSrc":"3993:388:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"4038:9:1","nodeType":"YulTypedName","src":"4038:9:1","type":""},{"name":"dataEnd","nativeSrc":"4049:7:1","nodeType":"YulTypedName","src":"4049:7:1","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"4061:6:1","nodeType":"YulTypedName","src":"4061:6:1","type":""},{"name":"value1","nativeSrc":"4069:6:1","nodeType":"YulTypedName","src":"4069:6:1","type":""}],"src":"3993:388:1"},{"body":{"nativeSrc":"4497:177:1","nodeType":"YulBlock","src":"4497:177:1","statements":[{"body":{"nativeSrc":"4543:16:1","nodeType":"YulBlock","src":"4543:16:1","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4552:1:1","nodeType":"YulLiteral","src":"4552:1:1","type":"","value":"0"},{"kind":"number","nativeSrc":"4555:1:1","nodeType":"YulLiteral","src":"4555:1:1","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"4545:6:1","nodeType":"YulIdentifier","src":"4545:6:1"},"nativeSrc":"4545:12:1","nodeType":"YulFunctionCall","src":"4545:12:1"},"nativeSrc":"4545:12:1","nodeType":"YulExpressionStatement","src":"4545:12:1"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"4518:7:1","nodeType":"YulIdentifier","src":"4518:7:1"},{"name":"headStart","nativeSrc":"4527:9:1","nodeType":"YulIdentifier","src":"4527:9:1"}],"functionName":{"name":"sub","nativeSrc":"4514:3:1","nodeType":"YulIdentifier","src":"4514:3:1"},"nativeSrc":"4514:23:1","nodeType":"YulFunctionCall","src":"4514:23:1"},{"kind":"number","nativeSrc":"4539:2:1","nodeType":"YulLiteral","src":"4539:2:1","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"4510:3:1","nodeType":"YulIdentifier","src":"4510:3:1"},"nativeSrc":"4510:32:1","nodeType":"YulFunctionCall","src":"4510:32:1"},"nativeSrc":"4507:52:1","nodeType":"YulIf","src":"4507:52:1"},{"nativeSrc":"4568:36:1","nodeType":"YulVariableDeclaration","src":"4568:36:1","value":{"arguments":[{"name":"headStart","nativeSrc":"4594:9:1","nodeType":"YulIdentifier","src":"4594:9:1"}],"functionName":{"name":"calldataload","nativeSrc":"4581:12:1","nodeType":"YulIdentifier","src":"4581:12:1"},"nativeSrc":"4581:23:1","nodeType":"YulFunctionCall","src":"4581:23:1"},"variables":[{"name":"value","nativeSrc":"4572:5:1","nodeType":"YulTypedName","src":"4572:5:1","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"4638:5:1","nodeType":"YulIdentifier","src":"4638:5:1"}],"functionName":{"name":"validator_revert_address","nativeSrc":"4613:24:1","nodeType":"YulIdentifier","src":"4613:24:1"},"nativeSrc":"4613:31:1","nodeType":"YulFunctionCall","src":"4613:31:1"},"nativeSrc":"4613:31:1","nodeType":"YulExpressionStatement","src":"4613:31:1"},{"nativeSrc":"4653:15:1","nodeType":"YulAssignment","src":"4653:15:1","value":{"name":"value","nativeSrc":"4663:5:1","nodeType":"YulIdentifier","src":"4663:5:1"},"variableNames":[{"name":"value0","nativeSrc":"4653:6:1","nodeType":"YulIdentifier","src":"4653:6:1"}]}]},"name":"abi_decode_tuple_t_contract$_IGhoVariableDebtTokenTransferHook_$162","nativeSrc":"4386:288:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"4463:9:1","nodeType":"YulTypedName","src":"4463:9:1","type":""},{"name":"dataEnd","nativeSrc":"4474:7:1","nodeType":"YulTypedName","src":"4474:7:1","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"4486:6:1","nodeType":"YulTypedName","src":"4486:6:1","type":""}],"src":"4386:288:1"},{"body":{"nativeSrc":"4780:102:1","nodeType":"YulBlock","src":"4780:102:1","statements":[{"nativeSrc":"4790:26:1","nodeType":"YulAssignment","src":"4790:26:1","value":{"arguments":[{"name":"headStart","nativeSrc":"4802:9:1","nodeType":"YulIdentifier","src":"4802:9:1"},{"kind":"number","nativeSrc":"4813:2:1","nodeType":"YulLiteral","src":"4813:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"4798:3:1","nodeType":"YulIdentifier","src":"4798:3:1"},"nativeSrc":"4798:18:1","nodeType":"YulFunctionCall","src":"4798:18:1"},"variableNames":[{"name":"tail","nativeSrc":"4790:4:1","nodeType":"YulIdentifier","src":"4790:4:1"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"4832:9:1","nodeType":"YulIdentifier","src":"4832:9:1"},{"arguments":[{"name":"value0","nativeSrc":"4847:6:1","nodeType":"YulIdentifier","src":"4847:6:1"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"4863:3:1","nodeType":"YulLiteral","src":"4863:3:1","type":"","value":"216"},{"kind":"number","nativeSrc":"4868:1:1","nodeType":"YulLiteral","src":"4868:1:1","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"4859:3:1","nodeType":"YulIdentifier","src":"4859:3:1"},"nativeSrc":"4859:11:1","nodeType":"YulFunctionCall","src":"4859:11:1"},{"kind":"number","nativeSrc":"4872:1:1","nodeType":"YulLiteral","src":"4872:1:1","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"4855:3:1","nodeType":"YulIdentifier","src":"4855:3:1"},"nativeSrc":"4855:19:1","nodeType":"YulFunctionCall","src":"4855:19:1"}],"functionName":{"name":"and","nativeSrc":"4843:3:1","nodeType":"YulIdentifier","src":"4843:3:1"},"nativeSrc":"4843:32:1","nodeType":"YulFunctionCall","src":"4843:32:1"}],"functionName":{"name":"mstore","nativeSrc":"4825:6:1","nodeType":"YulIdentifier","src":"4825:6:1"},"nativeSrc":"4825:51:1","nodeType":"YulFunctionCall","src":"4825:51:1"},"nativeSrc":"4825:51:1","nodeType":"YulExpressionStatement","src":"4825:51:1"}]},"name":"abi_encode_tuple_t_uint216__to_t_uint216__fromStack_reversed","nativeSrc":"4679:203:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"4749:9:1","nodeType":"YulTypedName","src":"4749:9:1","type":""},{"name":"value0","nativeSrc":"4760:6:1","nodeType":"YulTypedName","src":"4760:6:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"4771:4:1","nodeType":"YulTypedName","src":"4771:4:1","type":""}],"src":"4679:203:1"},{"body":{"nativeSrc":"5016:201:1","nodeType":"YulBlock","src":"5016:201:1","statements":[{"nativeSrc":"5026:26:1","nodeType":"YulAssignment","src":"5026:26:1","value":{"arguments":[{"name":"headStart","nativeSrc":"5038:9:1","nodeType":"YulIdentifier","src":"5038:9:1"},{"kind":"number","nativeSrc":"5049:2:1","nodeType":"YulLiteral","src":"5049:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"5034:3:1","nodeType":"YulIdentifier","src":"5034:3:1"},"nativeSrc":"5034:18:1","nodeType":"YulFunctionCall","src":"5034:18:1"},"variableNames":[{"name":"tail","nativeSrc":"5026:4:1","nodeType":"YulIdentifier","src":"5026:4:1"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"5068:9:1","nodeType":"YulIdentifier","src":"5068:9:1"},{"arguments":[{"name":"value0","nativeSrc":"5083:6:1","nodeType":"YulIdentifier","src":"5083:6:1"},{"kind":"number","nativeSrc":"5091:34:1","nodeType":"YulLiteral","src":"5091:34:1","type":"","value":"0xffffffffffffffffffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"5079:3:1","nodeType":"YulIdentifier","src":"5079:3:1"},"nativeSrc":"5079:47:1","nodeType":"YulFunctionCall","src":"5079:47:1"}],"functionName":{"name":"mstore","nativeSrc":"5061:6:1","nodeType":"YulIdentifier","src":"5061:6:1"},"nativeSrc":"5061:66:1","nodeType":"YulFunctionCall","src":"5061:66:1"},"nativeSrc":"5061:66:1","nodeType":"YulExpressionStatement","src":"5061:66:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5147:9:1","nodeType":"YulIdentifier","src":"5147:9:1"},{"kind":"number","nativeSrc":"5158:2:1","nodeType":"YulLiteral","src":"5158:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"5143:3:1","nodeType":"YulIdentifier","src":"5143:3:1"},"nativeSrc":"5143:18:1","nodeType":"YulFunctionCall","src":"5143:18:1"},{"arguments":[{"name":"value1","nativeSrc":"5167:6:1","nodeType":"YulIdentifier","src":"5167:6:1"},{"kind":"number","nativeSrc":"5175:34:1","nodeType":"YulLiteral","src":"5175:34:1","type":"","value":"0xffffffffffffffffffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"5163:3:1","nodeType":"YulIdentifier","src":"5163:3:1"},"nativeSrc":"5163:47:1","nodeType":"YulFunctionCall","src":"5163:47:1"}],"functionName":{"name":"mstore","nativeSrc":"5136:6:1","nodeType":"YulIdentifier","src":"5136:6:1"},"nativeSrc":"5136:75:1","nodeType":"YulFunctionCall","src":"5136:75:1"},"nativeSrc":"5136:75:1","nodeType":"YulExpressionStatement","src":"5136:75:1"}]},"name":"abi_encode_tuple_t_uint128_t_uint128__to_t_uint128_t_uint128__fromStack_reversed","nativeSrc":"4887:330:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"4977:9:1","nodeType":"YulTypedName","src":"4977:9:1","type":""},{"name":"value1","nativeSrc":"4988:6:1","nodeType":"YulTypedName","src":"4988:6:1","type":""},{"name":"value0","nativeSrc":"4996:6:1","nodeType":"YulTypedName","src":"4996:6:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"5007:4:1","nodeType":"YulTypedName","src":"5007:4:1","type":""}],"src":"4887:330:1"},{"body":{"nativeSrc":"5321:93:1","nodeType":"YulBlock","src":"5321:93:1","statements":[{"nativeSrc":"5331:26:1","nodeType":"YulAssignment","src":"5331:26:1","value":{"arguments":[{"name":"headStart","nativeSrc":"5343:9:1","nodeType":"YulIdentifier","src":"5343:9:1"},{"kind":"number","nativeSrc":"5354:2:1","nodeType":"YulLiteral","src":"5354:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"5339:3:1","nodeType":"YulIdentifier","src":"5339:3:1"},"nativeSrc":"5339:18:1","nodeType":"YulFunctionCall","src":"5339:18:1"},"variableNames":[{"name":"tail","nativeSrc":"5331:4:1","nodeType":"YulIdentifier","src":"5331:4:1"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"5373:9:1","nodeType":"YulIdentifier","src":"5373:9:1"},{"arguments":[{"name":"value0","nativeSrc":"5388:6:1","nodeType":"YulIdentifier","src":"5388:6:1"},{"kind":"number","nativeSrc":"5396:10:1","nodeType":"YulLiteral","src":"5396:10:1","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"5384:3:1","nodeType":"YulIdentifier","src":"5384:3:1"},"nativeSrc":"5384:23:1","nodeType":"YulFunctionCall","src":"5384:23:1"}],"functionName":{"name":"mstore","nativeSrc":"5366:6:1","nodeType":"YulIdentifier","src":"5366:6:1"},"nativeSrc":"5366:42:1","nodeType":"YulFunctionCall","src":"5366:42:1"},"nativeSrc":"5366:42:1","nodeType":"YulExpressionStatement","src":"5366:42:1"}]},"name":"abi_encode_tuple_t_uint32__to_t_uint32__fromStack_reversed","nativeSrc":"5222:192:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"5290:9:1","nodeType":"YulTypedName","src":"5290:9:1","type":""},{"name":"value0","nativeSrc":"5301:6:1","nodeType":"YulTypedName","src":"5301:6:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"5312:4:1","nodeType":"YulTypedName","src":"5312:4:1","type":""}],"src":"5222:192:1"},{"body":{"nativeSrc":"5480:94:1","nodeType":"YulBlock","src":"5480:94:1","statements":[{"nativeSrc":"5490:29:1","nodeType":"YulAssignment","src":"5490:29:1","value":{"arguments":[{"name":"offset","nativeSrc":"5512:6:1","nodeType":"YulIdentifier","src":"5512:6:1"}],"functionName":{"name":"calldataload","nativeSrc":"5499:12:1","nodeType":"YulIdentifier","src":"5499:12:1"},"nativeSrc":"5499:20:1","nodeType":"YulFunctionCall","src":"5499:20:1"},"variableNames":[{"name":"value","nativeSrc":"5490:5:1","nodeType":"YulIdentifier","src":"5490:5:1"}]},{"body":{"nativeSrc":"5552:16:1","nodeType":"YulBlock","src":"5552:16:1","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"5561:1:1","nodeType":"YulLiteral","src":"5561:1:1","type":"","value":"0"},{"kind":"number","nativeSrc":"5564:1:1","nodeType":"YulLiteral","src":"5564:1:1","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"5554:6:1","nodeType":"YulIdentifier","src":"5554:6:1"},"nativeSrc":"5554:12:1","nodeType":"YulFunctionCall","src":"5554:12:1"},"nativeSrc":"5554:12:1","nodeType":"YulExpressionStatement","src":"5554:12:1"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"5541:5:1","nodeType":"YulIdentifier","src":"5541:5:1"},{"kind":"number","nativeSrc":"5548:1:1","nodeType":"YulLiteral","src":"5548:1:1","type":"","value":"2"}],"functionName":{"name":"lt","nativeSrc":"5538:2:1","nodeType":"YulIdentifier","src":"5538:2:1"},"nativeSrc":"5538:12:1","nodeType":"YulFunctionCall","src":"5538:12:1"}],"functionName":{"name":"iszero","nativeSrc":"5531:6:1","nodeType":"YulIdentifier","src":"5531:6:1"},"nativeSrc":"5531:20:1","nodeType":"YulFunctionCall","src":"5531:20:1"},"nativeSrc":"5528:40:1","nodeType":"YulIf","src":"5528:40:1"}]},"name":"abi_decode_enum_DelegationType","nativeSrc":"5419:155:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"5459:6:1","nodeType":"YulTypedName","src":"5459:6:1","type":""}],"returnVariables":[{"name":"value","nativeSrc":"5470:5:1","nodeType":"YulTypedName","src":"5470:5:1","type":""}],"src":"5419:155:1"},{"body":{"nativeSrc":"5685:246:1","nodeType":"YulBlock","src":"5685:246:1","statements":[{"body":{"nativeSrc":"5731:16:1","nodeType":"YulBlock","src":"5731:16:1","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"5740:1:1","nodeType":"YulLiteral","src":"5740:1:1","type":"","value":"0"},{"kind":"number","nativeSrc":"5743:1:1","nodeType":"YulLiteral","src":"5743:1:1","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"5733:6:1","nodeType":"YulIdentifier","src":"5733:6:1"},"nativeSrc":"5733:12:1","nodeType":"YulFunctionCall","src":"5733:12:1"},"nativeSrc":"5733:12:1","nodeType":"YulExpressionStatement","src":"5733:12:1"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"5706:7:1","nodeType":"YulIdentifier","src":"5706:7:1"},{"name":"headStart","nativeSrc":"5715:9:1","nodeType":"YulIdentifier","src":"5715:9:1"}],"functionName":{"name":"sub","nativeSrc":"5702:3:1","nodeType":"YulIdentifier","src":"5702:3:1"},"nativeSrc":"5702:23:1","nodeType":"YulFunctionCall","src":"5702:23:1"},{"kind":"number","nativeSrc":"5727:2:1","nodeType":"YulLiteral","src":"5727:2:1","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"5698:3:1","nodeType":"YulIdentifier","src":"5698:3:1"},"nativeSrc":"5698:32:1","nodeType":"YulFunctionCall","src":"5698:32:1"},"nativeSrc":"5695:52:1","nodeType":"YulIf","src":"5695:52:1"},{"nativeSrc":"5756:36:1","nodeType":"YulVariableDeclaration","src":"5756:36:1","value":{"arguments":[{"name":"headStart","nativeSrc":"5782:9:1","nodeType":"YulIdentifier","src":"5782:9:1"}],"functionName":{"name":"calldataload","nativeSrc":"5769:12:1","nodeType":"YulIdentifier","src":"5769:12:1"},"nativeSrc":"5769:23:1","nodeType":"YulFunctionCall","src":"5769:23:1"},"variables":[{"name":"value","nativeSrc":"5760:5:1","nodeType":"YulTypedName","src":"5760:5:1","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"5826:5:1","nodeType":"YulIdentifier","src":"5826:5:1"}],"functionName":{"name":"validator_revert_address","nativeSrc":"5801:24:1","nodeType":"YulIdentifier","src":"5801:24:1"},"nativeSrc":"5801:31:1","nodeType":"YulFunctionCall","src":"5801:31:1"},"nativeSrc":"5801:31:1","nodeType":"YulExpressionStatement","src":"5801:31:1"},{"nativeSrc":"5841:15:1","nodeType":"YulAssignment","src":"5841:15:1","value":{"name":"value","nativeSrc":"5851:5:1","nodeType":"YulIdentifier","src":"5851:5:1"},"variableNames":[{"name":"value0","nativeSrc":"5841:6:1","nodeType":"YulIdentifier","src":"5841:6:1"}]},{"nativeSrc":"5865:60:1","nodeType":"YulAssignment","src":"5865:60:1","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5910:9:1","nodeType":"YulIdentifier","src":"5910:9:1"},{"kind":"number","nativeSrc":"5921:2:1","nodeType":"YulLiteral","src":"5921:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"5906:3:1","nodeType":"YulIdentifier","src":"5906:3:1"},"nativeSrc":"5906:18:1","nodeType":"YulFunctionCall","src":"5906:18:1"}],"functionName":{"name":"abi_decode_enum_DelegationType","nativeSrc":"5875:30:1","nodeType":"YulIdentifier","src":"5875:30:1"},"nativeSrc":"5875:50:1","nodeType":"YulFunctionCall","src":"5875:50:1"},"variableNames":[{"name":"value1","nativeSrc":"5865:6:1","nodeType":"YulIdentifier","src":"5865:6:1"}]}]},"name":"abi_decode_tuple_t_addresst_enum$_DelegationType_$1088","nativeSrc":"5579:352:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"5643:9:1","nodeType":"YulTypedName","src":"5643:9:1","type":""},{"name":"dataEnd","nativeSrc":"5654:7:1","nodeType":"YulTypedName","src":"5654:7:1","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"5666:6:1","nodeType":"YulTypedName","src":"5666:6:1","type":""},{"name":"value1","nativeSrc":"5674:6:1","nodeType":"YulTypedName","src":"5674:6:1","type":""}],"src":"5579:352:1"},{"body":{"nativeSrc":"5983:109:1","nodeType":"YulBlock","src":"5983:109:1","statements":[{"nativeSrc":"5993:29:1","nodeType":"YulAssignment","src":"5993:29:1","value":{"arguments":[{"name":"offset","nativeSrc":"6015:6:1","nodeType":"YulIdentifier","src":"6015:6:1"}],"functionName":{"name":"calldataload","nativeSrc":"6002:12:1","nodeType":"YulIdentifier","src":"6002:12:1"},"nativeSrc":"6002:20:1","nodeType":"YulFunctionCall","src":"6002:20:1"},"variableNames":[{"name":"value","nativeSrc":"5993:5:1","nodeType":"YulIdentifier","src":"5993:5:1"}]},{"body":{"nativeSrc":"6070:16:1","nodeType":"YulBlock","src":"6070:16:1","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"6079:1:1","nodeType":"YulLiteral","src":"6079:1:1","type":"","value":"0"},{"kind":"number","nativeSrc":"6082:1:1","nodeType":"YulLiteral","src":"6082:1:1","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"6072:6:1","nodeType":"YulIdentifier","src":"6072:6:1"},"nativeSrc":"6072:12:1","nodeType":"YulFunctionCall","src":"6072:12:1"},"nativeSrc":"6072:12:1","nodeType":"YulExpressionStatement","src":"6072:12:1"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"6044:5:1","nodeType":"YulIdentifier","src":"6044:5:1"},{"arguments":[{"name":"value","nativeSrc":"6055:5:1","nodeType":"YulIdentifier","src":"6055:5:1"},{"kind":"number","nativeSrc":"6062:4:1","nodeType":"YulLiteral","src":"6062:4:1","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"6051:3:1","nodeType":"YulIdentifier","src":"6051:3:1"},"nativeSrc":"6051:16:1","nodeType":"YulFunctionCall","src":"6051:16:1"}],"functionName":{"name":"eq","nativeSrc":"6041:2:1","nodeType":"YulIdentifier","src":"6041:2:1"},"nativeSrc":"6041:27:1","nodeType":"YulFunctionCall","src":"6041:27:1"}],"functionName":{"name":"iszero","nativeSrc":"6034:6:1","nodeType":"YulIdentifier","src":"6034:6:1"},"nativeSrc":"6034:35:1","nodeType":"YulFunctionCall","src":"6034:35:1"},"nativeSrc":"6031:55:1","nodeType":"YulIf","src":"6031:55:1"}]},"name":"abi_decode_uint8","nativeSrc":"5936:156:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"5962:6:1","nodeType":"YulTypedName","src":"5962:6:1","type":""}],"returnVariables":[{"name":"value","nativeSrc":"5973:5:1","nodeType":"YulTypedName","src":"5973:5:1","type":""}],"src":"5936:156:1"},{"body":{"nativeSrc":"6250:647:1","nodeType":"YulBlock","src":"6250:647:1","statements":[{"body":{"nativeSrc":"6297:16:1","nodeType":"YulBlock","src":"6297:16:1","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"6306:1:1","nodeType":"YulLiteral","src":"6306:1:1","type":"","value":"0"},{"kind":"number","nativeSrc":"6309:1:1","nodeType":"YulLiteral","src":"6309:1:1","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"6299:6:1","nodeType":"YulIdentifier","src":"6299:6:1"},"nativeSrc":"6299:12:1","nodeType":"YulFunctionCall","src":"6299:12:1"},"nativeSrc":"6299:12:1","nodeType":"YulExpressionStatement","src":"6299:12:1"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"6271:7:1","nodeType":"YulIdentifier","src":"6271:7:1"},{"name":"headStart","nativeSrc":"6280:9:1","nodeType":"YulIdentifier","src":"6280:9:1"}],"functionName":{"name":"sub","nativeSrc":"6267:3:1","nodeType":"YulIdentifier","src":"6267:3:1"},"nativeSrc":"6267:23:1","nodeType":"YulFunctionCall","src":"6267:23:1"},{"kind":"number","nativeSrc":"6292:3:1","nodeType":"YulLiteral","src":"6292:3:1","type":"","value":"192"}],"functionName":{"name":"slt","nativeSrc":"6263:3:1","nodeType":"YulIdentifier","src":"6263:3:1"},"nativeSrc":"6263:33:1","nodeType":"YulFunctionCall","src":"6263:33:1"},"nativeSrc":"6260:53:1","nodeType":"YulIf","src":"6260:53:1"},{"nativeSrc":"6322:36:1","nodeType":"YulVariableDeclaration","src":"6322:36:1","value":{"arguments":[{"name":"headStart","nativeSrc":"6348:9:1","nodeType":"YulIdentifier","src":"6348:9:1"}],"functionName":{"name":"calldataload","nativeSrc":"6335:12:1","nodeType":"YulIdentifier","src":"6335:12:1"},"nativeSrc":"6335:23:1","nodeType":"YulFunctionCall","src":"6335:23:1"},"variables":[{"name":"value","nativeSrc":"6326:5:1","nodeType":"YulTypedName","src":"6326:5:1","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"6392:5:1","nodeType":"YulIdentifier","src":"6392:5:1"}],"functionName":{"name":"validator_revert_address","nativeSrc":"6367:24:1","nodeType":"YulIdentifier","src":"6367:24:1"},"nativeSrc":"6367:31:1","nodeType":"YulFunctionCall","src":"6367:31:1"},"nativeSrc":"6367:31:1","nodeType":"YulExpressionStatement","src":"6367:31:1"},{"nativeSrc":"6407:15:1","nodeType":"YulAssignment","src":"6407:15:1","value":{"name":"value","nativeSrc":"6417:5:1","nodeType":"YulIdentifier","src":"6417:5:1"},"variableNames":[{"name":"value0","nativeSrc":"6407:6:1","nodeType":"YulIdentifier","src":"6407:6:1"}]},{"nativeSrc":"6431:16:1","nodeType":"YulVariableDeclaration","src":"6431:16:1","value":{"kind":"number","nativeSrc":"6446:1:1","nodeType":"YulLiteral","src":"6446:1:1","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"6435:7:1","nodeType":"YulTypedName","src":"6435:7:1","type":""}]},{"nativeSrc":"6456:43:1","nodeType":"YulAssignment","src":"6456:43:1","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"6484:9:1","nodeType":"YulIdentifier","src":"6484:9:1"},{"kind":"number","nativeSrc":"6495:2:1","nodeType":"YulLiteral","src":"6495:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"6480:3:1","nodeType":"YulIdentifier","src":"6480:3:1"},"nativeSrc":"6480:18:1","nodeType":"YulFunctionCall","src":"6480:18:1"}],"functionName":{"name":"calldataload","nativeSrc":"6467:12:1","nodeType":"YulIdentifier","src":"6467:12:1"},"nativeSrc":"6467:32:1","nodeType":"YulFunctionCall","src":"6467:32:1"},"variableNames":[{"name":"value_1","nativeSrc":"6456:7:1","nodeType":"YulIdentifier","src":"6456:7:1"}]},{"nativeSrc":"6508:17:1","nodeType":"YulAssignment","src":"6508:17:1","value":{"name":"value_1","nativeSrc":"6518:7:1","nodeType":"YulIdentifier","src":"6518:7:1"},"variableNames":[{"name":"value1","nativeSrc":"6508:6:1","nodeType":"YulIdentifier","src":"6508:6:1"}]},{"nativeSrc":"6534:16:1","nodeType":"YulVariableDeclaration","src":"6534:16:1","value":{"kind":"number","nativeSrc":"6549:1:1","nodeType":"YulLiteral","src":"6549:1:1","type":"","value":"0"},"variables":[{"name":"value_2","nativeSrc":"6538:7:1","nodeType":"YulTypedName","src":"6538:7:1","type":""}]},{"nativeSrc":"6559:43:1","nodeType":"YulAssignment","src":"6559:43:1","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"6587:9:1","nodeType":"YulIdentifier","src":"6587:9:1"},{"kind":"number","nativeSrc":"6598:2:1","nodeType":"YulLiteral","src":"6598:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"6583:3:1","nodeType":"YulIdentifier","src":"6583:3:1"},"nativeSrc":"6583:18:1","nodeType":"YulFunctionCall","src":"6583:18:1"}],"functionName":{"name":"calldataload","nativeSrc":"6570:12:1","nodeType":"YulIdentifier","src":"6570:12:1"},"nativeSrc":"6570:32:1","nodeType":"YulFunctionCall","src":"6570:32:1"},"variableNames":[{"name":"value_2","nativeSrc":"6559:7:1","nodeType":"YulIdentifier","src":"6559:7:1"}]},{"nativeSrc":"6611:17:1","nodeType":"YulAssignment","src":"6611:17:1","value":{"name":"value_2","nativeSrc":"6621:7:1","nodeType":"YulIdentifier","src":"6621:7:1"},"variableNames":[{"name":"value2","nativeSrc":"6611:6:1","nodeType":"YulIdentifier","src":"6611:6:1"}]},{"nativeSrc":"6637:46:1","nodeType":"YulAssignment","src":"6637:46:1","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"6668:9:1","nodeType":"YulIdentifier","src":"6668:9:1"},{"kind":"number","nativeSrc":"6679:2:1","nodeType":"YulLiteral","src":"6679:2:1","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"6664:3:1","nodeType":"YulIdentifier","src":"6664:3:1"},"nativeSrc":"6664:18:1","nodeType":"YulFunctionCall","src":"6664:18:1"}],"functionName":{"name":"abi_decode_uint8","nativeSrc":"6647:16:1","nodeType":"YulIdentifier","src":"6647:16:1"},"nativeSrc":"6647:36:1","nodeType":"YulFunctionCall","src":"6647:36:1"},"variableNames":[{"name":"value3","nativeSrc":"6637:6:1","nodeType":"YulIdentifier","src":"6637:6:1"}]},{"nativeSrc":"6692:16:1","nodeType":"YulVariableDeclaration","src":"6692:16:1","value":{"kind":"number","nativeSrc":"6707:1:1","nodeType":"YulLiteral","src":"6707:1:1","type":"","value":"0"},"variables":[{"name":"value_3","nativeSrc":"6696:7:1","nodeType":"YulTypedName","src":"6696:7:1","type":""}]},{"nativeSrc":"6717:44:1","nodeType":"YulAssignment","src":"6717:44:1","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"6745:9:1","nodeType":"YulIdentifier","src":"6745:9:1"},{"kind":"number","nativeSrc":"6756:3:1","nodeType":"YulLiteral","src":"6756:3:1","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"6741:3:1","nodeType":"YulIdentifier","src":"6741:3:1"},"nativeSrc":"6741:19:1","nodeType":"YulFunctionCall","src":"6741:19:1"}],"functionName":{"name":"calldataload","nativeSrc":"6728:12:1","nodeType":"YulIdentifier","src":"6728:12:1"},"nativeSrc":"6728:33:1","nodeType":"YulFunctionCall","src":"6728:33:1"},"variableNames":[{"name":"value_3","nativeSrc":"6717:7:1","nodeType":"YulIdentifier","src":"6717:7:1"}]},{"nativeSrc":"6770:17:1","nodeType":"YulAssignment","src":"6770:17:1","value":{"name":"value_3","nativeSrc":"6780:7:1","nodeType":"YulIdentifier","src":"6780:7:1"},"variableNames":[{"name":"value4","nativeSrc":"6770:6:1","nodeType":"YulIdentifier","src":"6770:6:1"}]},{"nativeSrc":"6796:16:1","nodeType":"YulVariableDeclaration","src":"6796:16:1","value":{"kind":"number","nativeSrc":"6811:1:1","nodeType":"YulLiteral","src":"6811:1:1","type":"","value":"0"},"variables":[{"name":"value_4","nativeSrc":"6800:7:1","nodeType":"YulTypedName","src":"6800:7:1","type":""}]},{"nativeSrc":"6821:44:1","nodeType":"YulAssignment","src":"6821:44:1","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"6849:9:1","nodeType":"YulIdentifier","src":"6849:9:1"},{"kind":"number","nativeSrc":"6860:3:1","nodeType":"YulLiteral","src":"6860:3:1","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"6845:3:1","nodeType":"YulIdentifier","src":"6845:3:1"},"nativeSrc":"6845:19:1","nodeType":"YulFunctionCall","src":"6845:19:1"}],"functionName":{"name":"calldataload","nativeSrc":"6832:12:1","nodeType":"YulIdentifier","src":"6832:12:1"},"nativeSrc":"6832:33:1","nodeType":"YulFunctionCall","src":"6832:33:1"},"variableNames":[{"name":"value_4","nativeSrc":"6821:7:1","nodeType":"YulIdentifier","src":"6821:7:1"}]},{"nativeSrc":"6874:17:1","nodeType":"YulAssignment","src":"6874:17:1","value":{"name":"value_4","nativeSrc":"6884:7:1","nodeType":"YulIdentifier","src":"6884:7:1"},"variableNames":[{"name":"value5","nativeSrc":"6874:6:1","nodeType":"YulIdentifier","src":"6874:6:1"}]}]},"name":"abi_decode_tuple_t_addresst_uint256t_uint256t_uint8t_bytes32t_bytes32","nativeSrc":"6097:800:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"6176:9:1","nodeType":"YulTypedName","src":"6176:9:1","type":""},{"name":"dataEnd","nativeSrc":"6187:7:1","nodeType":"YulTypedName","src":"6187:7:1","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"6199:6:1","nodeType":"YulTypedName","src":"6199:6:1","type":""},{"name":"value1","nativeSrc":"6207:6:1","nodeType":"YulTypedName","src":"6207:6:1","type":""},{"name":"value2","nativeSrc":"6215:6:1","nodeType":"YulTypedName","src":"6215:6:1","type":""},{"name":"value3","nativeSrc":"6223:6:1","nodeType":"YulTypedName","src":"6223:6:1","type":""},{"name":"value4","nativeSrc":"6231:6:1","nodeType":"YulTypedName","src":"6231:6:1","type":""},{"name":"value5","nativeSrc":"6239:6:1","nodeType":"YulTypedName","src":"6239:6:1","type":""}],"src":"6097:800:1"},{"body":{"nativeSrc":"7021:99:1","nodeType":"YulBlock","src":"7021:99:1","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"7038:9:1","nodeType":"YulIdentifier","src":"7038:9:1"},{"kind":"number","nativeSrc":"7049:2:1","nodeType":"YulLiteral","src":"7049:2:1","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"7031:6:1","nodeType":"YulIdentifier","src":"7031:6:1"},"nativeSrc":"7031:21:1","nodeType":"YulFunctionCall","src":"7031:21:1"},"nativeSrc":"7031:21:1","nodeType":"YulExpressionStatement","src":"7031:21:1"},{"nativeSrc":"7061:53:1","nodeType":"YulAssignment","src":"7061:53:1","value":{"arguments":[{"name":"value0","nativeSrc":"7087:6:1","nodeType":"YulIdentifier","src":"7087:6:1"},{"arguments":[{"name":"headStart","nativeSrc":"7099:9:1","nodeType":"YulIdentifier","src":"7099:9:1"},{"kind":"number","nativeSrc":"7110:2:1","nodeType":"YulLiteral","src":"7110:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"7095:3:1","nodeType":"YulIdentifier","src":"7095:3:1"},"nativeSrc":"7095:18:1","nodeType":"YulFunctionCall","src":"7095:18:1"}],"functionName":{"name":"abi_encode_string","nativeSrc":"7069:17:1","nodeType":"YulIdentifier","src":"7069:17:1"},"nativeSrc":"7069:45:1","nodeType":"YulFunctionCall","src":"7069:45:1"},"variableNames":[{"name":"tail","nativeSrc":"7061:4:1","nodeType":"YulIdentifier","src":"7061:4:1"}]}]},"name":"abi_encode_tuple_t_bytes_memory_ptr__to_t_bytes_memory_ptr__fromStack_reversed","nativeSrc":"6902:218:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"6990:9:1","nodeType":"YulTypedName","src":"6990:9:1","type":""},{"name":"value0","nativeSrc":"7001:6:1","nodeType":"YulTypedName","src":"7001:6:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"7012:4:1","nodeType":"YulTypedName","src":"7012:4:1","type":""}],"src":"6902:218:1"},{"body":{"nativeSrc":"7194:207:1","nodeType":"YulBlock","src":"7194:207:1","statements":[{"body":{"nativeSrc":"7240:16:1","nodeType":"YulBlock","src":"7240:16:1","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"7249:1:1","nodeType":"YulLiteral","src":"7249:1:1","type":"","value":"0"},{"kind":"number","nativeSrc":"7252:1:1","nodeType":"YulLiteral","src":"7252:1:1","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"7242:6:1","nodeType":"YulIdentifier","src":"7242:6:1"},"nativeSrc":"7242:12:1","nodeType":"YulFunctionCall","src":"7242:12:1"},"nativeSrc":"7242:12:1","nodeType":"YulExpressionStatement","src":"7242:12:1"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"7215:7:1","nodeType":"YulIdentifier","src":"7215:7:1"},{"name":"headStart","nativeSrc":"7224:9:1","nodeType":"YulIdentifier","src":"7224:9:1"}],"functionName":{"name":"sub","nativeSrc":"7211:3:1","nodeType":"YulIdentifier","src":"7211:3:1"},"nativeSrc":"7211:23:1","nodeType":"YulFunctionCall","src":"7211:23:1"},{"kind":"number","nativeSrc":"7236:2:1","nodeType":"YulLiteral","src":"7236:2:1","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"7207:3:1","nodeType":"YulIdentifier","src":"7207:3:1"},"nativeSrc":"7207:32:1","nodeType":"YulFunctionCall","src":"7207:32:1"},"nativeSrc":"7204:52:1","nodeType":"YulIf","src":"7204:52:1"},{"nativeSrc":"7265:36:1","nodeType":"YulVariableDeclaration","src":"7265:36:1","value":{"arguments":[{"name":"headStart","nativeSrc":"7291:9:1","nodeType":"YulIdentifier","src":"7291:9:1"}],"functionName":{"name":"calldataload","nativeSrc":"7278:12:1","nodeType":"YulIdentifier","src":"7278:12:1"},"nativeSrc":"7278:23:1","nodeType":"YulFunctionCall","src":"7278:23:1"},"variables":[{"name":"value","nativeSrc":"7269:5:1","nodeType":"YulTypedName","src":"7269:5:1","type":""}]},{"body":{"nativeSrc":"7355:16:1","nodeType":"YulBlock","src":"7355:16:1","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"7364:1:1","nodeType":"YulLiteral","src":"7364:1:1","type":"","value":"0"},{"kind":"number","nativeSrc":"7367:1:1","nodeType":"YulLiteral","src":"7367:1:1","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"7357:6:1","nodeType":"YulIdentifier","src":"7357:6:1"},"nativeSrc":"7357:12:1","nodeType":"YulFunctionCall","src":"7357:12:1"},"nativeSrc":"7357:12:1","nodeType":"YulExpressionStatement","src":"7357:12:1"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"7323:5:1","nodeType":"YulIdentifier","src":"7323:5:1"},{"arguments":[{"name":"value","nativeSrc":"7334:5:1","nodeType":"YulIdentifier","src":"7334:5:1"},{"kind":"number","nativeSrc":"7341:10:1","nodeType":"YulLiteral","src":"7341:10:1","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"7330:3:1","nodeType":"YulIdentifier","src":"7330:3:1"},"nativeSrc":"7330:22:1","nodeType":"YulFunctionCall","src":"7330:22:1"}],"functionName":{"name":"eq","nativeSrc":"7320:2:1","nodeType":"YulIdentifier","src":"7320:2:1"},"nativeSrc":"7320:33:1","nodeType":"YulFunctionCall","src":"7320:33:1"}],"functionName":{"name":"iszero","nativeSrc":"7313:6:1","nodeType":"YulIdentifier","src":"7313:6:1"},"nativeSrc":"7313:41:1","nodeType":"YulFunctionCall","src":"7313:41:1"},"nativeSrc":"7310:61:1","nodeType":"YulIf","src":"7310:61:1"},{"nativeSrc":"7380:15:1","nodeType":"YulAssignment","src":"7380:15:1","value":{"name":"value","nativeSrc":"7390:5:1","nodeType":"YulIdentifier","src":"7390:5:1"},"variableNames":[{"name":"value0","nativeSrc":"7380:6:1","nodeType":"YulIdentifier","src":"7380:6:1"}]}]},"name":"abi_decode_tuple_t_uint32","nativeSrc":"7125:276:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"7160:9:1","nodeType":"YulTypedName","src":"7160:9:1","type":""},{"name":"dataEnd","nativeSrc":"7171:7:1","nodeType":"YulTypedName","src":"7171:7:1","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"7183:6:1","nodeType":"YulTypedName","src":"7183:6:1","type":""}],"src":"7125:276:1"},{"body":{"nativeSrc":"7581:191:1","nodeType":"YulBlock","src":"7581:191:1","statements":[{"nativeSrc":"7591:26:1","nodeType":"YulAssignment","src":"7591:26:1","value":{"arguments":[{"name":"headStart","nativeSrc":"7603:9:1","nodeType":"YulIdentifier","src":"7603:9:1"},{"kind":"number","nativeSrc":"7614:2:1","nodeType":"YulLiteral","src":"7614:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"7599:3:1","nodeType":"YulIdentifier","src":"7599:3:1"},"nativeSrc":"7599:18:1","nodeType":"YulFunctionCall","src":"7599:18:1"},"variableNames":[{"name":"tail","nativeSrc":"7591:4:1","nodeType":"YulIdentifier","src":"7591:4:1"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"7633:9:1","nodeType":"YulIdentifier","src":"7633:9:1"},{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"7654:6:1","nodeType":"YulIdentifier","src":"7654:6:1"}],"functionName":{"name":"mload","nativeSrc":"7648:5:1","nodeType":"YulIdentifier","src":"7648:5:1"},"nativeSrc":"7648:13:1","nodeType":"YulFunctionCall","src":"7648:13:1"},{"kind":"number","nativeSrc":"7663:12:1","nodeType":"YulLiteral","src":"7663:12:1","type":"","value":"0xffffffffff"}],"functionName":{"name":"and","nativeSrc":"7644:3:1","nodeType":"YulIdentifier","src":"7644:3:1"},"nativeSrc":"7644:32:1","nodeType":"YulFunctionCall","src":"7644:32:1"}],"functionName":{"name":"mstore","nativeSrc":"7626:6:1","nodeType":"YulIdentifier","src":"7626:6:1"},"nativeSrc":"7626:51:1","nodeType":"YulFunctionCall","src":"7626:51:1"},"nativeSrc":"7626:51:1","nodeType":"YulExpressionStatement","src":"7626:51:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"7697:9:1","nodeType":"YulIdentifier","src":"7697:9:1"},{"kind":"number","nativeSrc":"7708:4:1","nodeType":"YulLiteral","src":"7708:4:1","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"7693:3:1","nodeType":"YulIdentifier","src":"7693:3:1"},"nativeSrc":"7693:20:1","nodeType":"YulFunctionCall","src":"7693:20:1"},{"arguments":[{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"7729:6:1","nodeType":"YulIdentifier","src":"7729:6:1"},{"kind":"number","nativeSrc":"7737:4:1","nodeType":"YulLiteral","src":"7737:4:1","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"7725:3:1","nodeType":"YulIdentifier","src":"7725:3:1"},"nativeSrc":"7725:17:1","nodeType":"YulFunctionCall","src":"7725:17:1"}],"functionName":{"name":"mload","nativeSrc":"7719:5:1","nodeType":"YulIdentifier","src":"7719:5:1"},"nativeSrc":"7719:24:1","nodeType":"YulFunctionCall","src":"7719:24:1"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"7753:3:1","nodeType":"YulLiteral","src":"7753:3:1","type":"","value":"216"},{"kind":"number","nativeSrc":"7758:1:1","nodeType":"YulLiteral","src":"7758:1:1","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"7749:3:1","nodeType":"YulIdentifier","src":"7749:3:1"},"nativeSrc":"7749:11:1","nodeType":"YulFunctionCall","src":"7749:11:1"},{"kind":"number","nativeSrc":"7762:1:1","nodeType":"YulLiteral","src":"7762:1:1","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"7745:3:1","nodeType":"YulIdentifier","src":"7745:3:1"},"nativeSrc":"7745:19:1","nodeType":"YulFunctionCall","src":"7745:19:1"}],"functionName":{"name":"and","nativeSrc":"7715:3:1","nodeType":"YulIdentifier","src":"7715:3:1"},"nativeSrc":"7715:50:1","nodeType":"YulFunctionCall","src":"7715:50:1"}],"functionName":{"name":"mstore","nativeSrc":"7686:6:1","nodeType":"YulIdentifier","src":"7686:6:1"},"nativeSrc":"7686:80:1","nodeType":"YulFunctionCall","src":"7686:80:1"},"nativeSrc":"7686:80:1","nodeType":"YulExpressionStatement","src":"7686:80:1"}]},"name":"abi_encode_tuple_t_struct$_ExchangeRateSnapshot_$425_memory_ptr__to_t_struct$_ExchangeRateSnapshot_$425_memory_ptr__fromStack_reversed","nativeSrc":"7406:366:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"7550:9:1","nodeType":"YulTypedName","src":"7550:9:1","type":""},{"name":"value0","nativeSrc":"7561:6:1","nodeType":"YulTypedName","src":"7561:6:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"7572:4:1","nodeType":"YulTypedName","src":"7572:4:1","type":""}],"src":"7406:366:1"},{"body":{"nativeSrc":"7898:508:1","nodeType":"YulBlock","src":"7898:508:1","statements":[{"body":{"nativeSrc":"7945:16:1","nodeType":"YulBlock","src":"7945:16:1","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"7954:1:1","nodeType":"YulLiteral","src":"7954:1:1","type":"","value":"0"},{"kind":"number","nativeSrc":"7957:1:1","nodeType":"YulLiteral","src":"7957:1:1","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"7947:6:1","nodeType":"YulIdentifier","src":"7947:6:1"},"nativeSrc":"7947:12:1","nodeType":"YulFunctionCall","src":"7947:12:1"},"nativeSrc":"7947:12:1","nodeType":"YulExpressionStatement","src":"7947:12:1"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"7919:7:1","nodeType":"YulIdentifier","src":"7919:7:1"},{"name":"headStart","nativeSrc":"7928:9:1","nodeType":"YulIdentifier","src":"7928:9:1"}],"functionName":{"name":"sub","nativeSrc":"7915:3:1","nodeType":"YulIdentifier","src":"7915:3:1"},"nativeSrc":"7915:23:1","nodeType":"YulFunctionCall","src":"7915:23:1"},{"kind":"number","nativeSrc":"7940:3:1","nodeType":"YulLiteral","src":"7940:3:1","type":"","value":"128"}],"functionName":{"name":"slt","nativeSrc":"7911:3:1","nodeType":"YulIdentifier","src":"7911:3:1"},"nativeSrc":"7911:33:1","nodeType":"YulFunctionCall","src":"7911:33:1"},"nativeSrc":"7908:53:1","nodeType":"YulIf","src":"7908:53:1"},{"nativeSrc":"7970:36:1","nodeType":"YulVariableDeclaration","src":"7970:36:1","value":{"arguments":[{"name":"headStart","nativeSrc":"7996:9:1","nodeType":"YulIdentifier","src":"7996:9:1"}],"functionName":{"name":"calldataload","nativeSrc":"7983:12:1","nodeType":"YulIdentifier","src":"7983:12:1"},"nativeSrc":"7983:23:1","nodeType":"YulFunctionCall","src":"7983:23:1"},"variables":[{"name":"value","nativeSrc":"7974:5:1","nodeType":"YulTypedName","src":"7974:5:1","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"8040:5:1","nodeType":"YulIdentifier","src":"8040:5:1"}],"functionName":{"name":"validator_revert_address","nativeSrc":"8015:24:1","nodeType":"YulIdentifier","src":"8015:24:1"},"nativeSrc":"8015:31:1","nodeType":"YulFunctionCall","src":"8015:31:1"},"nativeSrc":"8015:31:1","nodeType":"YulExpressionStatement","src":"8015:31:1"},{"nativeSrc":"8055:15:1","nodeType":"YulAssignment","src":"8055:15:1","value":{"name":"value","nativeSrc":"8065:5:1","nodeType":"YulIdentifier","src":"8065:5:1"},"variableNames":[{"name":"value0","nativeSrc":"8055:6:1","nodeType":"YulIdentifier","src":"8055:6:1"}]},{"nativeSrc":"8079:47:1","nodeType":"YulVariableDeclaration","src":"8079:47:1","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"8111:9:1","nodeType":"YulIdentifier","src":"8111:9:1"},{"kind":"number","nativeSrc":"8122:2:1","nodeType":"YulLiteral","src":"8122:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"8107:3:1","nodeType":"YulIdentifier","src":"8107:3:1"},"nativeSrc":"8107:18:1","nodeType":"YulFunctionCall","src":"8107:18:1"}],"functionName":{"name":"calldataload","nativeSrc":"8094:12:1","nodeType":"YulIdentifier","src":"8094:12:1"},"nativeSrc":"8094:32:1","nodeType":"YulFunctionCall","src":"8094:32:1"},"variables":[{"name":"value_1","nativeSrc":"8083:7:1","nodeType":"YulTypedName","src":"8083:7:1","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"8160:7:1","nodeType":"YulIdentifier","src":"8160:7:1"}],"functionName":{"name":"validator_revert_address","nativeSrc":"8135:24:1","nodeType":"YulIdentifier","src":"8135:24:1"},"nativeSrc":"8135:33:1","nodeType":"YulFunctionCall","src":"8135:33:1"},"nativeSrc":"8135:33:1","nodeType":"YulExpressionStatement","src":"8135:33:1"},{"nativeSrc":"8177:17:1","nodeType":"YulAssignment","src":"8177:17:1","value":{"name":"value_1","nativeSrc":"8187:7:1","nodeType":"YulIdentifier","src":"8187:7:1"},"variableNames":[{"name":"value1","nativeSrc":"8177:6:1","nodeType":"YulIdentifier","src":"8177:6:1"}]},{"nativeSrc":"8203:16:1","nodeType":"YulVariableDeclaration","src":"8203:16:1","value":{"kind":"number","nativeSrc":"8218:1:1","nodeType":"YulLiteral","src":"8218:1:1","type":"","value":"0"},"variables":[{"name":"value_2","nativeSrc":"8207:7:1","nodeType":"YulTypedName","src":"8207:7:1","type":""}]},{"nativeSrc":"8228:43:1","nodeType":"YulAssignment","src":"8228:43:1","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"8256:9:1","nodeType":"YulIdentifier","src":"8256:9:1"},{"kind":"number","nativeSrc":"8267:2:1","nodeType":"YulLiteral","src":"8267:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"8252:3:1","nodeType":"YulIdentifier","src":"8252:3:1"},"nativeSrc":"8252:18:1","nodeType":"YulFunctionCall","src":"8252:18:1"}],"functionName":{"name":"calldataload","nativeSrc":"8239:12:1","nodeType":"YulIdentifier","src":"8239:12:1"},"nativeSrc":"8239:32:1","nodeType":"YulFunctionCall","src":"8239:32:1"},"variableNames":[{"name":"value_2","nativeSrc":"8228:7:1","nodeType":"YulIdentifier","src":"8228:7:1"}]},{"nativeSrc":"8280:17:1","nodeType":"YulAssignment","src":"8280:17:1","value":{"name":"value_2","nativeSrc":"8290:7:1","nodeType":"YulIdentifier","src":"8290:7:1"},"variableNames":[{"name":"value2","nativeSrc":"8280:6:1","nodeType":"YulIdentifier","src":"8280:6:1"}]},{"nativeSrc":"8306:16:1","nodeType":"YulVariableDeclaration","src":"8306:16:1","value":{"kind":"number","nativeSrc":"8321:1:1","nodeType":"YulLiteral","src":"8321:1:1","type":"","value":"0"},"variables":[{"name":"value_3","nativeSrc":"8310:7:1","nodeType":"YulTypedName","src":"8310:7:1","type":""}]},{"nativeSrc":"8331:43:1","nodeType":"YulAssignment","src":"8331:43:1","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"8359:9:1","nodeType":"YulIdentifier","src":"8359:9:1"},{"kind":"number","nativeSrc":"8370:2:1","nodeType":"YulLiteral","src":"8370:2:1","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"8355:3:1","nodeType":"YulIdentifier","src":"8355:3:1"},"nativeSrc":"8355:18:1","nodeType":"YulFunctionCall","src":"8355:18:1"}],"functionName":{"name":"calldataload","nativeSrc":"8342:12:1","nodeType":"YulIdentifier","src":"8342:12:1"},"nativeSrc":"8342:32:1","nodeType":"YulFunctionCall","src":"8342:32:1"},"variableNames":[{"name":"value_3","nativeSrc":"8331:7:1","nodeType":"YulIdentifier","src":"8331:7:1"}]},{"nativeSrc":"8383:17:1","nodeType":"YulAssignment","src":"8383:17:1","value":{"name":"value_3","nativeSrc":"8393:7:1","nodeType":"YulIdentifier","src":"8393:7:1"},"variableNames":[{"name":"value3","nativeSrc":"8383:6:1","nodeType":"YulIdentifier","src":"8383:6:1"}]}]},"name":"abi_decode_tuple_t_addresst_addresst_uint256t_uint256","nativeSrc":"7777:629:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"7840:9:1","nodeType":"YulTypedName","src":"7840:9:1","type":""},{"name":"dataEnd","nativeSrc":"7851:7:1","nodeType":"YulTypedName","src":"7851:7:1","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"7863:6:1","nodeType":"YulTypedName","src":"7863:6:1","type":""},{"name":"value1","nativeSrc":"7871:6:1","nodeType":"YulTypedName","src":"7871:6:1","type":""},{"name":"value2","nativeSrc":"7879:6:1","nodeType":"YulTypedName","src":"7879:6:1","type":""},{"name":"value3","nativeSrc":"7887:6:1","nodeType":"YulTypedName","src":"7887:6:1","type":""}],"src":"7777:629:1"},{"body":{"nativeSrc":"8549:633:1","nodeType":"YulBlock","src":"8549:633:1","statements":[{"body":{"nativeSrc":"8596:16:1","nodeType":"YulBlock","src":"8596:16:1","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"8605:1:1","nodeType":"YulLiteral","src":"8605:1:1","type":"","value":"0"},{"kind":"number","nativeSrc":"8608:1:1","nodeType":"YulLiteral","src":"8608:1:1","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"8598:6:1","nodeType":"YulIdentifier","src":"8598:6:1"},"nativeSrc":"8598:12:1","nodeType":"YulFunctionCall","src":"8598:12:1"},"nativeSrc":"8598:12:1","nodeType":"YulExpressionStatement","src":"8598:12:1"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"8570:7:1","nodeType":"YulIdentifier","src":"8570:7:1"},{"name":"headStart","nativeSrc":"8579:9:1","nodeType":"YulIdentifier","src":"8579:9:1"}],"functionName":{"name":"sub","nativeSrc":"8566:3:1","nodeType":"YulIdentifier","src":"8566:3:1"},"nativeSrc":"8566:23:1","nodeType":"YulFunctionCall","src":"8566:23:1"},{"kind":"number","nativeSrc":"8591:3:1","nodeType":"YulLiteral","src":"8591:3:1","type":"","value":"160"}],"functionName":{"name":"slt","nativeSrc":"8562:3:1","nodeType":"YulIdentifier","src":"8562:3:1"},"nativeSrc":"8562:33:1","nodeType":"YulFunctionCall","src":"8562:33:1"},"nativeSrc":"8559:53:1","nodeType":"YulIf","src":"8559:53:1"},{"nativeSrc":"8621:36:1","nodeType":"YulVariableDeclaration","src":"8621:36:1","value":{"arguments":[{"name":"headStart","nativeSrc":"8647:9:1","nodeType":"YulIdentifier","src":"8647:9:1"}],"functionName":{"name":"calldataload","nativeSrc":"8634:12:1","nodeType":"YulIdentifier","src":"8634:12:1"},"nativeSrc":"8634:23:1","nodeType":"YulFunctionCall","src":"8634:23:1"},"variables":[{"name":"value","nativeSrc":"8625:5:1","nodeType":"YulTypedName","src":"8625:5:1","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"8691:5:1","nodeType":"YulIdentifier","src":"8691:5:1"}],"functionName":{"name":"validator_revert_address","nativeSrc":"8666:24:1","nodeType":"YulIdentifier","src":"8666:24:1"},"nativeSrc":"8666:31:1","nodeType":"YulFunctionCall","src":"8666:31:1"},"nativeSrc":"8666:31:1","nodeType":"YulExpressionStatement","src":"8666:31:1"},{"nativeSrc":"8706:15:1","nodeType":"YulAssignment","src":"8706:15:1","value":{"name":"value","nativeSrc":"8716:5:1","nodeType":"YulIdentifier","src":"8716:5:1"},"variableNames":[{"name":"value0","nativeSrc":"8706:6:1","nodeType":"YulIdentifier","src":"8706:6:1"}]},{"nativeSrc":"8730:47:1","nodeType":"YulVariableDeclaration","src":"8730:47:1","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"8762:9:1","nodeType":"YulIdentifier","src":"8762:9:1"},{"kind":"number","nativeSrc":"8773:2:1","nodeType":"YulLiteral","src":"8773:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"8758:3:1","nodeType":"YulIdentifier","src":"8758:3:1"},"nativeSrc":"8758:18:1","nodeType":"YulFunctionCall","src":"8758:18:1"}],"functionName":{"name":"calldataload","nativeSrc":"8745:12:1","nodeType":"YulIdentifier","src":"8745:12:1"},"nativeSrc":"8745:32:1","nodeType":"YulFunctionCall","src":"8745:32:1"},"variables":[{"name":"value_1","nativeSrc":"8734:7:1","nodeType":"YulTypedName","src":"8734:7:1","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"8811:7:1","nodeType":"YulIdentifier","src":"8811:7:1"}],"functionName":{"name":"validator_revert_address","nativeSrc":"8786:24:1","nodeType":"YulIdentifier","src":"8786:24:1"},"nativeSrc":"8786:33:1","nodeType":"YulFunctionCall","src":"8786:33:1"},"nativeSrc":"8786:33:1","nodeType":"YulExpressionStatement","src":"8786:33:1"},{"nativeSrc":"8828:17:1","nodeType":"YulAssignment","src":"8828:17:1","value":{"name":"value_1","nativeSrc":"8838:7:1","nodeType":"YulIdentifier","src":"8838:7:1"},"variableNames":[{"name":"value1","nativeSrc":"8828:6:1","nodeType":"YulIdentifier","src":"8828:6:1"}]},{"nativeSrc":"8854:47:1","nodeType":"YulVariableDeclaration","src":"8854:47:1","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"8886:9:1","nodeType":"YulIdentifier","src":"8886:9:1"},{"kind":"number","nativeSrc":"8897:2:1","nodeType":"YulLiteral","src":"8897:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"8882:3:1","nodeType":"YulIdentifier","src":"8882:3:1"},"nativeSrc":"8882:18:1","nodeType":"YulFunctionCall","src":"8882:18:1"}],"functionName":{"name":"calldataload","nativeSrc":"8869:12:1","nodeType":"YulIdentifier","src":"8869:12:1"},"nativeSrc":"8869:32:1","nodeType":"YulFunctionCall","src":"8869:32:1"},"variables":[{"name":"value_2","nativeSrc":"8858:7:1","nodeType":"YulTypedName","src":"8858:7:1","type":""}]},{"expression":{"arguments":[{"name":"value_2","nativeSrc":"8935:7:1","nodeType":"YulIdentifier","src":"8935:7:1"}],"functionName":{"name":"validator_revert_address","nativeSrc":"8910:24:1","nodeType":"YulIdentifier","src":"8910:24:1"},"nativeSrc":"8910:33:1","nodeType":"YulFunctionCall","src":"8910:33:1"},"nativeSrc":"8910:33:1","nodeType":"YulExpressionStatement","src":"8910:33:1"},{"nativeSrc":"8952:17:1","nodeType":"YulAssignment","src":"8952:17:1","value":{"name":"value_2","nativeSrc":"8962:7:1","nodeType":"YulIdentifier","src":"8962:7:1"},"variableNames":[{"name":"value2","nativeSrc":"8952:6:1","nodeType":"YulIdentifier","src":"8952:6:1"}]},{"nativeSrc":"8978:16:1","nodeType":"YulVariableDeclaration","src":"8978:16:1","value":{"kind":"number","nativeSrc":"8993:1:1","nodeType":"YulLiteral","src":"8993:1:1","type":"","value":"0"},"variables":[{"name":"value_3","nativeSrc":"8982:7:1","nodeType":"YulTypedName","src":"8982:7:1","type":""}]},{"nativeSrc":"9003:43:1","nodeType":"YulAssignment","src":"9003:43:1","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"9031:9:1","nodeType":"YulIdentifier","src":"9031:9:1"},{"kind":"number","nativeSrc":"9042:2:1","nodeType":"YulLiteral","src":"9042:2:1","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"9027:3:1","nodeType":"YulIdentifier","src":"9027:3:1"},"nativeSrc":"9027:18:1","nodeType":"YulFunctionCall","src":"9027:18:1"}],"functionName":{"name":"calldataload","nativeSrc":"9014:12:1","nodeType":"YulIdentifier","src":"9014:12:1"},"nativeSrc":"9014:32:1","nodeType":"YulFunctionCall","src":"9014:32:1"},"variableNames":[{"name":"value_3","nativeSrc":"9003:7:1","nodeType":"YulIdentifier","src":"9003:7:1"}]},{"nativeSrc":"9055:17:1","nodeType":"YulAssignment","src":"9055:17:1","value":{"name":"value_3","nativeSrc":"9065:7:1","nodeType":"YulIdentifier","src":"9065:7:1"},"variableNames":[{"name":"value3","nativeSrc":"9055:6:1","nodeType":"YulIdentifier","src":"9055:6:1"}]},{"nativeSrc":"9081:16:1","nodeType":"YulVariableDeclaration","src":"9081:16:1","value":{"kind":"number","nativeSrc":"9096:1:1","nodeType":"YulLiteral","src":"9096:1:1","type":"","value":"0"},"variables":[{"name":"value_4","nativeSrc":"9085:7:1","nodeType":"YulTypedName","src":"9085:7:1","type":""}]},{"nativeSrc":"9106:44:1","nodeType":"YulAssignment","src":"9106:44:1","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"9134:9:1","nodeType":"YulIdentifier","src":"9134:9:1"},{"kind":"number","nativeSrc":"9145:3:1","nodeType":"YulLiteral","src":"9145:3:1","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"9130:3:1","nodeType":"YulIdentifier","src":"9130:3:1"},"nativeSrc":"9130:19:1","nodeType":"YulFunctionCall","src":"9130:19:1"}],"functionName":{"name":"calldataload","nativeSrc":"9117:12:1","nodeType":"YulIdentifier","src":"9117:12:1"},"nativeSrc":"9117:33:1","nodeType":"YulFunctionCall","src":"9117:33:1"},"variableNames":[{"name":"value_4","nativeSrc":"9106:7:1","nodeType":"YulIdentifier","src":"9106:7:1"}]},{"nativeSrc":"9159:17:1","nodeType":"YulAssignment","src":"9159:17:1","value":{"name":"value_4","nativeSrc":"9169:7:1","nodeType":"YulIdentifier","src":"9169:7:1"},"variableNames":[{"name":"value4","nativeSrc":"9159:6:1","nodeType":"YulIdentifier","src":"9159:6:1"}]}]},"name":"abi_decode_tuple_t_addresst_addresst_addresst_uint256t_uint256","nativeSrc":"8411:771:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"8483:9:1","nodeType":"YulTypedName","src":"8483:9:1","type":""},{"name":"dataEnd","nativeSrc":"8494:7:1","nodeType":"YulTypedName","src":"8494:7:1","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"8506:6:1","nodeType":"YulTypedName","src":"8506:6:1","type":""},{"name":"value1","nativeSrc":"8514:6:1","nodeType":"YulTypedName","src":"8514:6:1","type":""},{"name":"value2","nativeSrc":"8522:6:1","nodeType":"YulTypedName","src":"8522:6:1","type":""},{"name":"value3","nativeSrc":"8530:6:1","nodeType":"YulTypedName","src":"8530:6:1","type":""},{"name":"value4","nativeSrc":"8538:6:1","nodeType":"YulTypedName","src":"8538:6:1","type":""}],"src":"8411:771:1"},{"body":{"nativeSrc":"9274:280:1","nodeType":"YulBlock","src":"9274:280:1","statements":[{"body":{"nativeSrc":"9320:16:1","nodeType":"YulBlock","src":"9320:16:1","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"9329:1:1","nodeType":"YulLiteral","src":"9329:1:1","type":"","value":"0"},{"kind":"number","nativeSrc":"9332:1:1","nodeType":"YulLiteral","src":"9332:1:1","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"9322:6:1","nodeType":"YulIdentifier","src":"9322:6:1"},"nativeSrc":"9322:12:1","nodeType":"YulFunctionCall","src":"9322:12:1"},"nativeSrc":"9322:12:1","nodeType":"YulExpressionStatement","src":"9322:12:1"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"9295:7:1","nodeType":"YulIdentifier","src":"9295:7:1"},{"name":"headStart","nativeSrc":"9304:9:1","nodeType":"YulIdentifier","src":"9304:9:1"}],"functionName":{"name":"sub","nativeSrc":"9291:3:1","nodeType":"YulIdentifier","src":"9291:3:1"},"nativeSrc":"9291:23:1","nodeType":"YulFunctionCall","src":"9291:23:1"},{"kind":"number","nativeSrc":"9316:2:1","nodeType":"YulLiteral","src":"9316:2:1","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"9287:3:1","nodeType":"YulIdentifier","src":"9287:3:1"},"nativeSrc":"9287:32:1","nodeType":"YulFunctionCall","src":"9287:32:1"},"nativeSrc":"9284:52:1","nodeType":"YulIf","src":"9284:52:1"},{"nativeSrc":"9345:14:1","nodeType":"YulVariableDeclaration","src":"9345:14:1","value":{"kind":"number","nativeSrc":"9358:1:1","nodeType":"YulLiteral","src":"9358:1:1","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"9349:5:1","nodeType":"YulTypedName","src":"9349:5:1","type":""}]},{"nativeSrc":"9368:32:1","nodeType":"YulAssignment","src":"9368:32:1","value":{"arguments":[{"name":"headStart","nativeSrc":"9390:9:1","nodeType":"YulIdentifier","src":"9390:9:1"}],"functionName":{"name":"calldataload","nativeSrc":"9377:12:1","nodeType":"YulIdentifier","src":"9377:12:1"},"nativeSrc":"9377:23:1","nodeType":"YulFunctionCall","src":"9377:23:1"},"variableNames":[{"name":"value","nativeSrc":"9368:5:1","nodeType":"YulIdentifier","src":"9368:5:1"}]},{"nativeSrc":"9409:15:1","nodeType":"YulAssignment","src":"9409:15:1","value":{"name":"value","nativeSrc":"9419:5:1","nodeType":"YulIdentifier","src":"9419:5:1"},"variableNames":[{"name":"value0","nativeSrc":"9409:6:1","nodeType":"YulIdentifier","src":"9409:6:1"}]},{"nativeSrc":"9433:47:1","nodeType":"YulVariableDeclaration","src":"9433:47:1","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"9465:9:1","nodeType":"YulIdentifier","src":"9465:9:1"},{"kind":"number","nativeSrc":"9476:2:1","nodeType":"YulLiteral","src":"9476:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"9461:3:1","nodeType":"YulIdentifier","src":"9461:3:1"},"nativeSrc":"9461:18:1","nodeType":"YulFunctionCall","src":"9461:18:1"}],"functionName":{"name":"calldataload","nativeSrc":"9448:12:1","nodeType":"YulIdentifier","src":"9448:12:1"},"nativeSrc":"9448:32:1","nodeType":"YulFunctionCall","src":"9448:32:1"},"variables":[{"name":"value_1","nativeSrc":"9437:7:1","nodeType":"YulTypedName","src":"9437:7:1","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"9514:7:1","nodeType":"YulIdentifier","src":"9514:7:1"}],"functionName":{"name":"validator_revert_address","nativeSrc":"9489:24:1","nodeType":"YulIdentifier","src":"9489:24:1"},"nativeSrc":"9489:33:1","nodeType":"YulFunctionCall","src":"9489:33:1"},"nativeSrc":"9489:33:1","nodeType":"YulExpressionStatement","src":"9489:33:1"},{"nativeSrc":"9531:17:1","nodeType":"YulAssignment","src":"9531:17:1","value":{"name":"value_1","nativeSrc":"9541:7:1","nodeType":"YulIdentifier","src":"9541:7:1"},"variableNames":[{"name":"value1","nativeSrc":"9531:6:1","nodeType":"YulIdentifier","src":"9531:6:1"}]}]},"name":"abi_decode_tuple_t_uint256t_address","nativeSrc":"9187:367:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"9232:9:1","nodeType":"YulTypedName","src":"9232:9:1","type":""},{"name":"dataEnd","nativeSrc":"9243:7:1","nodeType":"YulTypedName","src":"9243:7:1","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"9255:6:1","nodeType":"YulTypedName","src":"9255:6:1","type":""},{"name":"value1","nativeSrc":"9263:6:1","nodeType":"YulTypedName","src":"9263:6:1","type":""}],"src":"9187:367:1"},{"body":{"nativeSrc":"9591:95:1","nodeType":"YulBlock","src":"9591:95:1","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"9608:1:1","nodeType":"YulLiteral","src":"9608:1:1","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"9615:3:1","nodeType":"YulLiteral","src":"9615:3:1","type":"","value":"224"},{"kind":"number","nativeSrc":"9620:10:1","nodeType":"YulLiteral","src":"9620:10:1","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"9611:3:1","nodeType":"YulIdentifier","src":"9611:3:1"},"nativeSrc":"9611:20:1","nodeType":"YulFunctionCall","src":"9611:20:1"}],"functionName":{"name":"mstore","nativeSrc":"9601:6:1","nodeType":"YulIdentifier","src":"9601:6:1"},"nativeSrc":"9601:31:1","nodeType":"YulFunctionCall","src":"9601:31:1"},"nativeSrc":"9601:31:1","nodeType":"YulExpressionStatement","src":"9601:31:1"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"9648:1:1","nodeType":"YulLiteral","src":"9648:1:1","type":"","value":"4"},{"kind":"number","nativeSrc":"9651:4:1","nodeType":"YulLiteral","src":"9651:4:1","type":"","value":"0x41"}],"functionName":{"name":"mstore","nativeSrc":"9641:6:1","nodeType":"YulIdentifier","src":"9641:6:1"},"nativeSrc":"9641:15:1","nodeType":"YulFunctionCall","src":"9641:15:1"},"nativeSrc":"9641:15:1","nodeType":"YulExpressionStatement","src":"9641:15:1"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"9672:1:1","nodeType":"YulLiteral","src":"9672:1:1","type":"","value":"0"},{"kind":"number","nativeSrc":"9675:4:1","nodeType":"YulLiteral","src":"9675:4:1","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"9665:6:1","nodeType":"YulIdentifier","src":"9665:6:1"},"nativeSrc":"9665:15:1","nodeType":"YulFunctionCall","src":"9665:15:1"},"nativeSrc":"9665:15:1","nodeType":"YulExpressionStatement","src":"9665:15:1"}]},"name":"panic_error_0x41","nativeSrc":"9559:127:1","nodeType":"YulFunctionDefinition","src":"9559:127:1"},{"body":{"nativeSrc":"9737:207:1","nodeType":"YulBlock","src":"9737:207:1","statements":[{"nativeSrc":"9747:19:1","nodeType":"YulAssignment","src":"9747:19:1","value":{"arguments":[{"kind":"number","nativeSrc":"9763:2:1","nodeType":"YulLiteral","src":"9763:2:1","type":"","value":"64"}],"functionName":{"name":"mload","nativeSrc":"9757:5:1","nodeType":"YulIdentifier","src":"9757:5:1"},"nativeSrc":"9757:9:1","nodeType":"YulFunctionCall","src":"9757:9:1"},"variableNames":[{"name":"memPtr","nativeSrc":"9747:6:1","nodeType":"YulIdentifier","src":"9747:6:1"}]},{"nativeSrc":"9775:35:1","nodeType":"YulVariableDeclaration","src":"9775:35:1","value":{"arguments":[{"name":"memPtr","nativeSrc":"9797:6:1","nodeType":"YulIdentifier","src":"9797:6:1"},{"kind":"number","nativeSrc":"9805:4:1","nodeType":"YulLiteral","src":"9805:4:1","type":"","value":"0x60"}],"functionName":{"name":"add","nativeSrc":"9793:3:1","nodeType":"YulIdentifier","src":"9793:3:1"},"nativeSrc":"9793:17:1","nodeType":"YulFunctionCall","src":"9793:17:1"},"variables":[{"name":"newFreePtr","nativeSrc":"9779:10:1","nodeType":"YulTypedName","src":"9779:10:1","type":""}]},{"body":{"nativeSrc":"9885:22:1","nodeType":"YulBlock","src":"9885:22:1","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"9887:16:1","nodeType":"YulIdentifier","src":"9887:16:1"},"nativeSrc":"9887:18:1","nodeType":"YulFunctionCall","src":"9887:18:1"},"nativeSrc":"9887:18:1","nodeType":"YulExpressionStatement","src":"9887:18:1"}]},"condition":{"arguments":[{"arguments":[{"name":"newFreePtr","nativeSrc":"9828:10:1","nodeType":"YulIdentifier","src":"9828:10:1"},{"kind":"number","nativeSrc":"9840:18:1","nodeType":"YulLiteral","src":"9840:18:1","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"9825:2:1","nodeType":"YulIdentifier","src":"9825:2:1"},"nativeSrc":"9825:34:1","nodeType":"YulFunctionCall","src":"9825:34:1"},{"arguments":[{"name":"newFreePtr","nativeSrc":"9864:10:1","nodeType":"YulIdentifier","src":"9864:10:1"},{"name":"memPtr","nativeSrc":"9876:6:1","nodeType":"YulIdentifier","src":"9876:6:1"}],"functionName":{"name":"lt","nativeSrc":"9861:2:1","nodeType":"YulIdentifier","src":"9861:2:1"},"nativeSrc":"9861:22:1","nodeType":"YulFunctionCall","src":"9861:22:1"}],"functionName":{"name":"or","nativeSrc":"9822:2:1","nodeType":"YulIdentifier","src":"9822:2:1"},"nativeSrc":"9822:62:1","nodeType":"YulFunctionCall","src":"9822:62:1"},"nativeSrc":"9819:88:1","nodeType":"YulIf","src":"9819:88:1"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"9923:2:1","nodeType":"YulLiteral","src":"9923:2:1","type":"","value":"64"},{"name":"newFreePtr","nativeSrc":"9927:10:1","nodeType":"YulIdentifier","src":"9927:10:1"}],"functionName":{"name":"mstore","nativeSrc":"9916:6:1","nodeType":"YulIdentifier","src":"9916:6:1"},"nativeSrc":"9916:22:1","nodeType":"YulFunctionCall","src":"9916:22:1"},"nativeSrc":"9916:22:1","nodeType":"YulExpressionStatement","src":"9916:22:1"}]},"name":"allocate_memory_4847","nativeSrc":"9691:253:1","nodeType":"YulFunctionDefinition","returnVariables":[{"name":"memPtr","nativeSrc":"9726:6:1","nodeType":"YulTypedName","src":"9726:6:1","type":""}],"src":"9691:253:1"},{"body":{"nativeSrc":"9994:230:1","nodeType":"YulBlock","src":"9994:230:1","statements":[{"nativeSrc":"10004:19:1","nodeType":"YulAssignment","src":"10004:19:1","value":{"arguments":[{"kind":"number","nativeSrc":"10020:2:1","nodeType":"YulLiteral","src":"10020:2:1","type":"","value":"64"}],"functionName":{"name":"mload","nativeSrc":"10014:5:1","nodeType":"YulIdentifier","src":"10014:5:1"},"nativeSrc":"10014:9:1","nodeType":"YulFunctionCall","src":"10014:9:1"},"variableNames":[{"name":"memPtr","nativeSrc":"10004:6:1","nodeType":"YulIdentifier","src":"10004:6:1"}]},{"nativeSrc":"10032:58:1","nodeType":"YulVariableDeclaration","src":"10032:58:1","value":{"arguments":[{"name":"memPtr","nativeSrc":"10054:6:1","nodeType":"YulIdentifier","src":"10054:6:1"},{"arguments":[{"arguments":[{"name":"size","nativeSrc":"10070:4:1","nodeType":"YulIdentifier","src":"10070:4:1"},{"kind":"number","nativeSrc":"10076:2:1","nodeType":"YulLiteral","src":"10076:2:1","type":"","value":"31"}],"functionName":{"name":"add","nativeSrc":"10066:3:1","nodeType":"YulIdentifier","src":"10066:3:1"},"nativeSrc":"10066:13:1","nodeType":"YulFunctionCall","src":"10066:13:1"},{"arguments":[{"kind":"number","nativeSrc":"10085:2:1","nodeType":"YulLiteral","src":"10085:2:1","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"10081:3:1","nodeType":"YulIdentifier","src":"10081:3:1"},"nativeSrc":"10081:7:1","nodeType":"YulFunctionCall","src":"10081:7:1"}],"functionName":{"name":"and","nativeSrc":"10062:3:1","nodeType":"YulIdentifier","src":"10062:3:1"},"nativeSrc":"10062:27:1","nodeType":"YulFunctionCall","src":"10062:27:1"}],"functionName":{"name":"add","nativeSrc":"10050:3:1","nodeType":"YulIdentifier","src":"10050:3:1"},"nativeSrc":"10050:40:1","nodeType":"YulFunctionCall","src":"10050:40:1"},"variables":[{"name":"newFreePtr","nativeSrc":"10036:10:1","nodeType":"YulTypedName","src":"10036:10:1","type":""}]},{"body":{"nativeSrc":"10165:22:1","nodeType":"YulBlock","src":"10165:22:1","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"10167:16:1","nodeType":"YulIdentifier","src":"10167:16:1"},"nativeSrc":"10167:18:1","nodeType":"YulFunctionCall","src":"10167:18:1"},"nativeSrc":"10167:18:1","nodeType":"YulExpressionStatement","src":"10167:18:1"}]},"condition":{"arguments":[{"arguments":[{"name":"newFreePtr","nativeSrc":"10108:10:1","nodeType":"YulIdentifier","src":"10108:10:1"},{"kind":"number","nativeSrc":"10120:18:1","nodeType":"YulLiteral","src":"10120:18:1","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"10105:2:1","nodeType":"YulIdentifier","src":"10105:2:1"},"nativeSrc":"10105:34:1","nodeType":"YulFunctionCall","src":"10105:34:1"},{"arguments":[{"name":"newFreePtr","nativeSrc":"10144:10:1","nodeType":"YulIdentifier","src":"10144:10:1"},{"name":"memPtr","nativeSrc":"10156:6:1","nodeType":"YulIdentifier","src":"10156:6:1"}],"functionName":{"name":"lt","nativeSrc":"10141:2:1","nodeType":"YulIdentifier","src":"10141:2:1"},"nativeSrc":"10141:22:1","nodeType":"YulFunctionCall","src":"10141:22:1"}],"functionName":{"name":"or","nativeSrc":"10102:2:1","nodeType":"YulIdentifier","src":"10102:2:1"},"nativeSrc":"10102:62:1","nodeType":"YulFunctionCall","src":"10102:62:1"},"nativeSrc":"10099:88:1","nodeType":"YulIf","src":"10099:88:1"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"10203:2:1","nodeType":"YulLiteral","src":"10203:2:1","type":"","value":"64"},{"name":"newFreePtr","nativeSrc":"10207:10:1","nodeType":"YulIdentifier","src":"10207:10:1"}],"functionName":{"name":"mstore","nativeSrc":"10196:6:1","nodeType":"YulIdentifier","src":"10196:6:1"},"nativeSrc":"10196:22:1","nodeType":"YulFunctionCall","src":"10196:22:1"},"nativeSrc":"10196:22:1","nodeType":"YulExpressionStatement","src":"10196:22:1"}]},"name":"allocate_memory","nativeSrc":"9949:275:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"size","nativeSrc":"9974:4:1","nodeType":"YulTypedName","src":"9974:4:1","type":""}],"returnVariables":[{"name":"memPtr","nativeSrc":"9983:6:1","nodeType":"YulTypedName","src":"9983:6:1","type":""}],"src":"9949:275:1"},{"body":{"nativeSrc":"10357:1383:1","nodeType":"YulBlock","src":"10357:1383:1","statements":[{"body":{"nativeSrc":"10403:16:1","nodeType":"YulBlock","src":"10403:16:1","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"10412:1:1","nodeType":"YulLiteral","src":"10412:1:1","type":"","value":"0"},{"kind":"number","nativeSrc":"10415:1:1","nodeType":"YulLiteral","src":"10415:1:1","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"10405:6:1","nodeType":"YulIdentifier","src":"10405:6:1"},"nativeSrc":"10405:12:1","nodeType":"YulFunctionCall","src":"10405:12:1"},"nativeSrc":"10405:12:1","nodeType":"YulExpressionStatement","src":"10405:12:1"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"10378:7:1","nodeType":"YulIdentifier","src":"10378:7:1"},{"name":"headStart","nativeSrc":"10387:9:1","nodeType":"YulIdentifier","src":"10387:9:1"}],"functionName":{"name":"sub","nativeSrc":"10374:3:1","nodeType":"YulIdentifier","src":"10374:3:1"},"nativeSrc":"10374:23:1","nodeType":"YulFunctionCall","src":"10374:23:1"},{"kind":"number","nativeSrc":"10399:2:1","nodeType":"YulLiteral","src":"10399:2:1","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"10370:3:1","nodeType":"YulIdentifier","src":"10370:3:1"},"nativeSrc":"10370:32:1","nodeType":"YulFunctionCall","src":"10370:32:1"},"nativeSrc":"10367:52:1","nodeType":"YulIf","src":"10367:52:1"},{"nativeSrc":"10428:37:1","nodeType":"YulVariableDeclaration","src":"10428:37:1","value":{"arguments":[{"name":"headStart","nativeSrc":"10455:9:1","nodeType":"YulIdentifier","src":"10455:9:1"}],"functionName":{"name":"calldataload","nativeSrc":"10442:12:1","nodeType":"YulIdentifier","src":"10442:12:1"},"nativeSrc":"10442:23:1","nodeType":"YulFunctionCall","src":"10442:23:1"},"variables":[{"name":"offset","nativeSrc":"10432:6:1","nodeType":"YulTypedName","src":"10432:6:1","type":""}]},{"body":{"nativeSrc":"10508:16:1","nodeType":"YulBlock","src":"10508:16:1","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"10517:1:1","nodeType":"YulLiteral","src":"10517:1:1","type":"","value":"0"},{"kind":"number","nativeSrc":"10520:1:1","nodeType":"YulLiteral","src":"10520:1:1","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"10510:6:1","nodeType":"YulIdentifier","src":"10510:6:1"},"nativeSrc":"10510:12:1","nodeType":"YulFunctionCall","src":"10510:12:1"},"nativeSrc":"10510:12:1","nodeType":"YulExpressionStatement","src":"10510:12:1"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"10480:6:1","nodeType":"YulIdentifier","src":"10480:6:1"},{"kind":"number","nativeSrc":"10488:18:1","nodeType":"YulLiteral","src":"10488:18:1","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"10477:2:1","nodeType":"YulIdentifier","src":"10477:2:1"},"nativeSrc":"10477:30:1","nodeType":"YulFunctionCall","src":"10477:30:1"},"nativeSrc":"10474:50:1","nodeType":"YulIf","src":"10474:50:1"},{"nativeSrc":"10533:32:1","nodeType":"YulVariableDeclaration","src":"10533:32:1","value":{"arguments":[{"name":"headStart","nativeSrc":"10547:9:1","nodeType":"YulIdentifier","src":"10547:9:1"},{"name":"offset","nativeSrc":"10558:6:1","nodeType":"YulIdentifier","src":"10558:6:1"}],"functionName":{"name":"add","nativeSrc":"10543:3:1","nodeType":"YulIdentifier","src":"10543:3:1"},"nativeSrc":"10543:22:1","nodeType":"YulFunctionCall","src":"10543:22:1"},"variables":[{"name":"_1","nativeSrc":"10537:2:1","nodeType":"YulTypedName","src":"10537:2:1","type":""}]},{"body":{"nativeSrc":"10613:16:1","nodeType":"YulBlock","src":"10613:16:1","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"10622:1:1","nodeType":"YulLiteral","src":"10622:1:1","type":"","value":"0"},{"kind":"number","nativeSrc":"10625:1:1","nodeType":"YulLiteral","src":"10625:1:1","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"10615:6:1","nodeType":"YulIdentifier","src":"10615:6:1"},"nativeSrc":"10615:12:1","nodeType":"YulFunctionCall","src":"10615:12:1"},"nativeSrc":"10615:12:1","nodeType":"YulExpressionStatement","src":"10615:12:1"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"10592:2:1","nodeType":"YulIdentifier","src":"10592:2:1"},{"kind":"number","nativeSrc":"10596:4:1","nodeType":"YulLiteral","src":"10596:4:1","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"10588:3:1","nodeType":"YulIdentifier","src":"10588:3:1"},"nativeSrc":"10588:13:1","nodeType":"YulFunctionCall","src":"10588:13:1"},{"name":"dataEnd","nativeSrc":"10603:7:1","nodeType":"YulIdentifier","src":"10603:7:1"}],"functionName":{"name":"slt","nativeSrc":"10584:3:1","nodeType":"YulIdentifier","src":"10584:3:1"},"nativeSrc":"10584:27:1","nodeType":"YulFunctionCall","src":"10584:27:1"}],"functionName":{"name":"iszero","nativeSrc":"10577:6:1","nodeType":"YulIdentifier","src":"10577:6:1"},"nativeSrc":"10577:35:1","nodeType":"YulFunctionCall","src":"10577:35:1"},"nativeSrc":"10574:55:1","nodeType":"YulIf","src":"10574:55:1"},{"nativeSrc":"10638:30:1","nodeType":"YulVariableDeclaration","src":"10638:30:1","value":{"arguments":[{"name":"_1","nativeSrc":"10665:2:1","nodeType":"YulIdentifier","src":"10665:2:1"}],"functionName":{"name":"calldataload","nativeSrc":"10652:12:1","nodeType":"YulIdentifier","src":"10652:12:1"},"nativeSrc":"10652:16:1","nodeType":"YulFunctionCall","src":"10652:16:1"},"variables":[{"name":"length","nativeSrc":"10642:6:1","nodeType":"YulTypedName","src":"10642:6:1","type":""}]},{"body":{"nativeSrc":"10711:22:1","nodeType":"YulBlock","src":"10711:22:1","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"10713:16:1","nodeType":"YulIdentifier","src":"10713:16:1"},"nativeSrc":"10713:18:1","nodeType":"YulFunctionCall","src":"10713:18:1"},"nativeSrc":"10713:18:1","nodeType":"YulExpressionStatement","src":"10713:18:1"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"10683:6:1","nodeType":"YulIdentifier","src":"10683:6:1"},{"kind":"number","nativeSrc":"10691:18:1","nodeType":"YulLiteral","src":"10691:18:1","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"10680:2:1","nodeType":"YulIdentifier","src":"10680:2:1"},"nativeSrc":"10680:30:1","nodeType":"YulFunctionCall","src":"10680:30:1"},"nativeSrc":"10677:56:1","nodeType":"YulIf","src":"10677:56:1"},{"nativeSrc":"10742:51:1","nodeType":"YulVariableDeclaration","src":"10742:51:1","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"10777:1:1","nodeType":"YulLiteral","src":"10777:1:1","type":"","value":"5"},{"name":"length","nativeSrc":"10780:6:1","nodeType":"YulIdentifier","src":"10780:6:1"}],"functionName":{"name":"shl","nativeSrc":"10773:3:1","nodeType":"YulIdentifier","src":"10773:3:1"},"nativeSrc":"10773:14:1","nodeType":"YulFunctionCall","src":"10773:14:1"},{"kind":"number","nativeSrc":"10789:2:1","nodeType":"YulLiteral","src":"10789:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"10769:3:1","nodeType":"YulIdentifier","src":"10769:3:1"},"nativeSrc":"10769:23:1","nodeType":"YulFunctionCall","src":"10769:23:1"}],"functionName":{"name":"allocate_memory","nativeSrc":"10753:15:1","nodeType":"YulIdentifier","src":"10753:15:1"},"nativeSrc":"10753:40:1","nodeType":"YulFunctionCall","src":"10753:40:1"},"variables":[{"name":"dst","nativeSrc":"10746:3:1","nodeType":"YulTypedName","src":"10746:3:1","type":""}]},{"nativeSrc":"10802:16:1","nodeType":"YulVariableDeclaration","src":"10802:16:1","value":{"name":"dst","nativeSrc":"10815:3:1","nodeType":"YulIdentifier","src":"10815:3:1"},"variables":[{"name":"array","nativeSrc":"10806:5:1","nodeType":"YulTypedName","src":"10806:5:1","type":""}]},{"expression":{"arguments":[{"name":"dst","nativeSrc":"10834:3:1","nodeType":"YulIdentifier","src":"10834:3:1"},{"name":"length","nativeSrc":"10839:6:1","nodeType":"YulIdentifier","src":"10839:6:1"}],"functionName":{"name":"mstore","nativeSrc":"10827:6:1","nodeType":"YulIdentifier","src":"10827:6:1"},"nativeSrc":"10827:19:1","nodeType":"YulFunctionCall","src":"10827:19:1"},"nativeSrc":"10827:19:1","nodeType":"YulExpressionStatement","src":"10827:19:1"},{"nativeSrc":"10855:19:1","nodeType":"YulAssignment","src":"10855:19:1","value":{"arguments":[{"name":"dst","nativeSrc":"10866:3:1","nodeType":"YulIdentifier","src":"10866:3:1"},{"kind":"number","nativeSrc":"10871:2:1","nodeType":"YulLiteral","src":"10871:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"10862:3:1","nodeType":"YulIdentifier","src":"10862:3:1"},"nativeSrc":"10862:12:1","nodeType":"YulFunctionCall","src":"10862:12:1"},"variableNames":[{"name":"dst","nativeSrc":"10855:3:1","nodeType":"YulIdentifier","src":"10855:3:1"}]},{"nativeSrc":"10883:49:1","nodeType":"YulVariableDeclaration","src":"10883:49:1","value":{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"10905:2:1","nodeType":"YulIdentifier","src":"10905:2:1"},{"arguments":[{"name":"length","nativeSrc":"10913:6:1","nodeType":"YulIdentifier","src":"10913:6:1"},{"kind":"number","nativeSrc":"10921:4:1","nodeType":"YulLiteral","src":"10921:4:1","type":"","value":"0x60"}],"functionName":{"name":"mul","nativeSrc":"10909:3:1","nodeType":"YulIdentifier","src":"10909:3:1"},"nativeSrc":"10909:17:1","nodeType":"YulFunctionCall","src":"10909:17:1"}],"functionName":{"name":"add","nativeSrc":"10901:3:1","nodeType":"YulIdentifier","src":"10901:3:1"},"nativeSrc":"10901:26:1","nodeType":"YulFunctionCall","src":"10901:26:1"},{"kind":"number","nativeSrc":"10929:2:1","nodeType":"YulLiteral","src":"10929:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"10897:3:1","nodeType":"YulIdentifier","src":"10897:3:1"},"nativeSrc":"10897:35:1","nodeType":"YulFunctionCall","src":"10897:35:1"},"variables":[{"name":"srcEnd","nativeSrc":"10887:6:1","nodeType":"YulTypedName","src":"10887:6:1","type":""}]},{"body":{"nativeSrc":"10964:16:1","nodeType":"YulBlock","src":"10964:16:1","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"10973:1:1","nodeType":"YulLiteral","src":"10973:1:1","type":"","value":"0"},{"kind":"number","nativeSrc":"10976:1:1","nodeType":"YulLiteral","src":"10976:1:1","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"10966:6:1","nodeType":"YulIdentifier","src":"10966:6:1"},"nativeSrc":"10966:12:1","nodeType":"YulFunctionCall","src":"10966:12:1"},"nativeSrc":"10966:12:1","nodeType":"YulExpressionStatement","src":"10966:12:1"}]},"condition":{"arguments":[{"name":"srcEnd","nativeSrc":"10947:6:1","nodeType":"YulIdentifier","src":"10947:6:1"},{"name":"dataEnd","nativeSrc":"10955:7:1","nodeType":"YulIdentifier","src":"10955:7:1"}],"functionName":{"name":"gt","nativeSrc":"10944:2:1","nodeType":"YulIdentifier","src":"10944:2:1"},"nativeSrc":"10944:19:1","nodeType":"YulFunctionCall","src":"10944:19:1"},"nativeSrc":"10941:39:1","nodeType":"YulIf","src":"10941:39:1"},{"nativeSrc":"10989:22:1","nodeType":"YulVariableDeclaration","src":"10989:22:1","value":{"arguments":[{"name":"_1","nativeSrc":"11004:2:1","nodeType":"YulIdentifier","src":"11004:2:1"},{"kind":"number","nativeSrc":"11008:2:1","nodeType":"YulLiteral","src":"11008:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"11000:3:1","nodeType":"YulIdentifier","src":"11000:3:1"},"nativeSrc":"11000:11:1","nodeType":"YulFunctionCall","src":"11000:11:1"},"variables":[{"name":"src","nativeSrc":"10993:3:1","nodeType":"YulTypedName","src":"10993:3:1","type":""}]},{"body":{"nativeSrc":"11078:632:1","nodeType":"YulBlock","src":"11078:632:1","statements":[{"body":{"nativeSrc":"11124:16:1","nodeType":"YulBlock","src":"11124:16:1","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"11133:1:1","nodeType":"YulLiteral","src":"11133:1:1","type":"","value":"0"},{"kind":"number","nativeSrc":"11136:1:1","nodeType":"YulLiteral","src":"11136:1:1","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"11126:6:1","nodeType":"YulIdentifier","src":"11126:6:1"},"nativeSrc":"11126:12:1","nodeType":"YulFunctionCall","src":"11126:12:1"},"nativeSrc":"11126:12:1","nodeType":"YulExpressionStatement","src":"11126:12:1"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"11103:7:1","nodeType":"YulIdentifier","src":"11103:7:1"},{"name":"src","nativeSrc":"11112:3:1","nodeType":"YulIdentifier","src":"11112:3:1"}],"functionName":{"name":"sub","nativeSrc":"11099:3:1","nodeType":"YulIdentifier","src":"11099:3:1"},"nativeSrc":"11099:17:1","nodeType":"YulFunctionCall","src":"11099:17:1"},{"kind":"number","nativeSrc":"11118:4:1","nodeType":"YulLiteral","src":"11118:4:1","type":"","value":"0x60"}],"functionName":{"name":"slt","nativeSrc":"11095:3:1","nodeType":"YulIdentifier","src":"11095:3:1"},"nativeSrc":"11095:28:1","nodeType":"YulFunctionCall","src":"11095:28:1"},"nativeSrc":"11092:48:1","nodeType":"YulIf","src":"11092:48:1"},{"nativeSrc":"11153:35:1","nodeType":"YulVariableDeclaration","src":"11153:35:1","value":{"arguments":[],"functionName":{"name":"allocate_memory_4847","nativeSrc":"11166:20:1","nodeType":"YulIdentifier","src":"11166:20:1"},"nativeSrc":"11166:22:1","nodeType":"YulFunctionCall","src":"11166:22:1"},"variables":[{"name":"value","nativeSrc":"11157:5:1","nodeType":"YulTypedName","src":"11157:5:1","type":""}]},{"nativeSrc":"11201:32:1","nodeType":"YulVariableDeclaration","src":"11201:32:1","value":{"arguments":[{"name":"src","nativeSrc":"11229:3:1","nodeType":"YulIdentifier","src":"11229:3:1"}],"functionName":{"name":"calldataload","nativeSrc":"11216:12:1","nodeType":"YulIdentifier","src":"11216:12:1"},"nativeSrc":"11216:17:1","nodeType":"YulFunctionCall","src":"11216:17:1"},"variables":[{"name":"value_1","nativeSrc":"11205:7:1","nodeType":"YulTypedName","src":"11205:7:1","type":""}]},{"body":{"nativeSrc":"11319:16:1","nodeType":"YulBlock","src":"11319:16:1","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"11328:1:1","nodeType":"YulLiteral","src":"11328:1:1","type":"","value":"0"},{"kind":"number","nativeSrc":"11331:1:1","nodeType":"YulLiteral","src":"11331:1:1","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"11321:6:1","nodeType":"YulIdentifier","src":"11321:6:1"},"nativeSrc":"11321:12:1","nodeType":"YulFunctionCall","src":"11321:12:1"},"nativeSrc":"11321:12:1","nodeType":"YulExpressionStatement","src":"11321:12:1"}]},"condition":{"arguments":[{"arguments":[{"name":"value_1","nativeSrc":"11259:7:1","nodeType":"YulIdentifier","src":"11259:7:1"},{"arguments":[{"name":"value_1","nativeSrc":"11272:7:1","nodeType":"YulIdentifier","src":"11272:7:1"},{"kind":"number","nativeSrc":"11281:34:1","nodeType":"YulLiteral","src":"11281:34:1","type":"","value":"0xffffffffffffffffffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"11268:3:1","nodeType":"YulIdentifier","src":"11268:3:1"},"nativeSrc":"11268:48:1","nodeType":"YulFunctionCall","src":"11268:48:1"}],"functionName":{"name":"eq","nativeSrc":"11256:2:1","nodeType":"YulIdentifier","src":"11256:2:1"},"nativeSrc":"11256:61:1","nodeType":"YulFunctionCall","src":"11256:61:1"}],"functionName":{"name":"iszero","nativeSrc":"11249:6:1","nodeType":"YulIdentifier","src":"11249:6:1"},"nativeSrc":"11249:69:1","nodeType":"YulFunctionCall","src":"11249:69:1"},"nativeSrc":"11246:89:1","nodeType":"YulIf","src":"11246:89:1"},{"expression":{"arguments":[{"name":"value","nativeSrc":"11355:5:1","nodeType":"YulIdentifier","src":"11355:5:1"},{"name":"value_1","nativeSrc":"11362:7:1","nodeType":"YulIdentifier","src":"11362:7:1"}],"functionName":{"name":"mstore","nativeSrc":"11348:6:1","nodeType":"YulIdentifier","src":"11348:6:1"},"nativeSrc":"11348:22:1","nodeType":"YulFunctionCall","src":"11348:22:1"},"nativeSrc":"11348:22:1","nodeType":"YulExpressionStatement","src":"11348:22:1"},{"nativeSrc":"11383:16:1","nodeType":"YulVariableDeclaration","src":"11383:16:1","value":{"kind":"number","nativeSrc":"11398:1:1","nodeType":"YulLiteral","src":"11398:1:1","type":"","value":"0"},"variables":[{"name":"value_2","nativeSrc":"11387:7:1","nodeType":"YulTypedName","src":"11387:7:1","type":""}]},{"nativeSrc":"11412:37:1","nodeType":"YulAssignment","src":"11412:37:1","value":{"arguments":[{"arguments":[{"name":"src","nativeSrc":"11440:3:1","nodeType":"YulIdentifier","src":"11440:3:1"},{"kind":"number","nativeSrc":"11445:2:1","nodeType":"YulLiteral","src":"11445:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"11436:3:1","nodeType":"YulIdentifier","src":"11436:3:1"},"nativeSrc":"11436:12:1","nodeType":"YulFunctionCall","src":"11436:12:1"}],"functionName":{"name":"calldataload","nativeSrc":"11423:12:1","nodeType":"YulIdentifier","src":"11423:12:1"},"nativeSrc":"11423:26:1","nodeType":"YulFunctionCall","src":"11423:26:1"},"variableNames":[{"name":"value_2","nativeSrc":"11412:7:1","nodeType":"YulIdentifier","src":"11412:7:1"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"11473:5:1","nodeType":"YulIdentifier","src":"11473:5:1"},{"kind":"number","nativeSrc":"11480:2:1","nodeType":"YulLiteral","src":"11480:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"11469:3:1","nodeType":"YulIdentifier","src":"11469:3:1"},"nativeSrc":"11469:14:1","nodeType":"YulFunctionCall","src":"11469:14:1"},{"name":"value_2","nativeSrc":"11485:7:1","nodeType":"YulIdentifier","src":"11485:7:1"}],"functionName":{"name":"mstore","nativeSrc":"11462:6:1","nodeType":"YulIdentifier","src":"11462:6:1"},"nativeSrc":"11462:31:1","nodeType":"YulFunctionCall","src":"11462:31:1"},"nativeSrc":"11462:31:1","nodeType":"YulExpressionStatement","src":"11462:31:1"},{"nativeSrc":"11506:41:1","nodeType":"YulVariableDeclaration","src":"11506:41:1","value":{"arguments":[{"arguments":[{"name":"src","nativeSrc":"11538:3:1","nodeType":"YulIdentifier","src":"11538:3:1"},{"kind":"number","nativeSrc":"11543:2:1","nodeType":"YulLiteral","src":"11543:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"11534:3:1","nodeType":"YulIdentifier","src":"11534:3:1"},"nativeSrc":"11534:12:1","nodeType":"YulFunctionCall","src":"11534:12:1"}],"functionName":{"name":"calldataload","nativeSrc":"11521:12:1","nodeType":"YulIdentifier","src":"11521:12:1"},"nativeSrc":"11521:26:1","nodeType":"YulFunctionCall","src":"11521:26:1"},"variables":[{"name":"value_3","nativeSrc":"11510:7:1","nodeType":"YulTypedName","src":"11510:7:1","type":""}]},{"expression":{"arguments":[{"name":"value_3","nativeSrc":"11585:7:1","nodeType":"YulIdentifier","src":"11585:7:1"}],"functionName":{"name":"validator_revert_address","nativeSrc":"11560:24:1","nodeType":"YulIdentifier","src":"11560:24:1"},"nativeSrc":"11560:33:1","nodeType":"YulFunctionCall","src":"11560:33:1"},"nativeSrc":"11560:33:1","nodeType":"YulExpressionStatement","src":"11560:33:1"},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"11617:5:1","nodeType":"YulIdentifier","src":"11617:5:1"},{"kind":"number","nativeSrc":"11624:2:1","nodeType":"YulLiteral","src":"11624:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"11613:3:1","nodeType":"YulIdentifier","src":"11613:3:1"},"nativeSrc":"11613:14:1","nodeType":"YulFunctionCall","src":"11613:14:1"},{"name":"value_3","nativeSrc":"11629:7:1","nodeType":"YulIdentifier","src":"11629:7:1"}],"functionName":{"name":"mstore","nativeSrc":"11606:6:1","nodeType":"YulIdentifier","src":"11606:6:1"},"nativeSrc":"11606:31:1","nodeType":"YulFunctionCall","src":"11606:31:1"},"nativeSrc":"11606:31:1","nodeType":"YulExpressionStatement","src":"11606:31:1"},{"expression":{"arguments":[{"name":"dst","nativeSrc":"11657:3:1","nodeType":"YulIdentifier","src":"11657:3:1"},{"name":"value","nativeSrc":"11662:5:1","nodeType":"YulIdentifier","src":"11662:5:1"}],"functionName":{"name":"mstore","nativeSrc":"11650:6:1","nodeType":"YulIdentifier","src":"11650:6:1"},"nativeSrc":"11650:18:1","nodeType":"YulFunctionCall","src":"11650:18:1"},"nativeSrc":"11650:18:1","nodeType":"YulExpressionStatement","src":"11650:18:1"},{"nativeSrc":"11681:19:1","nodeType":"YulAssignment","src":"11681:19:1","value":{"arguments":[{"name":"dst","nativeSrc":"11692:3:1","nodeType":"YulIdentifier","src":"11692:3:1"},{"kind":"number","nativeSrc":"11697:2:1","nodeType":"YulLiteral","src":"11697:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"11688:3:1","nodeType":"YulIdentifier","src":"11688:3:1"},"nativeSrc":"11688:12:1","nodeType":"YulFunctionCall","src":"11688:12:1"},"variableNames":[{"name":"dst","nativeSrc":"11681:3:1","nodeType":"YulIdentifier","src":"11681:3:1"}]}]},"condition":{"arguments":[{"name":"src","nativeSrc":"11031:3:1","nodeType":"YulIdentifier","src":"11031:3:1"},{"name":"srcEnd","nativeSrc":"11036:6:1","nodeType":"YulIdentifier","src":"11036:6:1"}],"functionName":{"name":"lt","nativeSrc":"11028:2:1","nodeType":"YulIdentifier","src":"11028:2:1"},"nativeSrc":"11028:15:1","nodeType":"YulFunctionCall","src":"11028:15:1"},"nativeSrc":"11020:690:1","nodeType":"YulForLoop","post":{"nativeSrc":"11044:25:1","nodeType":"YulBlock","src":"11044:25:1","statements":[{"nativeSrc":"11046:21:1","nodeType":"YulAssignment","src":"11046:21:1","value":{"arguments":[{"name":"src","nativeSrc":"11057:3:1","nodeType":"YulIdentifier","src":"11057:3:1"},{"kind":"number","nativeSrc":"11062:4:1","nodeType":"YulLiteral","src":"11062:4:1","type":"","value":"0x60"}],"functionName":{"name":"add","nativeSrc":"11053:3:1","nodeType":"YulIdentifier","src":"11053:3:1"},"nativeSrc":"11053:14:1","nodeType":"YulFunctionCall","src":"11053:14:1"},"variableNames":[{"name":"src","nativeSrc":"11046:3:1","nodeType":"YulIdentifier","src":"11046:3:1"}]}]},"pre":{"nativeSrc":"11024:3:1","nodeType":"YulBlock","src":"11024:3:1","statements":[]},"src":"11020:690:1"},{"nativeSrc":"11719:15:1","nodeType":"YulAssignment","src":"11719:15:1","value":{"name":"array","nativeSrc":"11729:5:1","nodeType":"YulIdentifier","src":"11729:5:1"},"variableNames":[{"name":"value0","nativeSrc":"11719:6:1","nodeType":"YulIdentifier","src":"11719:6:1"}]}]},"name":"abi_decode_tuple_t_array$_t_struct$_AssetConfigInput_$129_memory_ptr_$dyn_memory_ptr","nativeSrc":"10229:1511:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"10323:9:1","nodeType":"YulTypedName","src":"10323:9:1","type":""},{"name":"dataEnd","nativeSrc":"10334:7:1","nodeType":"YulTypedName","src":"10334:7:1","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"10346:6:1","nodeType":"YulTypedName","src":"10346:6:1","type":""}],"src":"10229:1511:1"},{"body":{"nativeSrc":"11868:349:1","nodeType":"YulBlock","src":"11868:349:1","statements":[{"body":{"nativeSrc":"11914:16:1","nodeType":"YulBlock","src":"11914:16:1","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"11923:1:1","nodeType":"YulLiteral","src":"11923:1:1","type":"","value":"0"},{"kind":"number","nativeSrc":"11926:1:1","nodeType":"YulLiteral","src":"11926:1:1","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"11916:6:1","nodeType":"YulIdentifier","src":"11916:6:1"},"nativeSrc":"11916:12:1","nodeType":"YulFunctionCall","src":"11916:12:1"},"nativeSrc":"11916:12:1","nodeType":"YulExpressionStatement","src":"11916:12:1"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"11889:7:1","nodeType":"YulIdentifier","src":"11889:7:1"},{"name":"headStart","nativeSrc":"11898:9:1","nodeType":"YulIdentifier","src":"11898:9:1"}],"functionName":{"name":"sub","nativeSrc":"11885:3:1","nodeType":"YulIdentifier","src":"11885:3:1"},"nativeSrc":"11885:23:1","nodeType":"YulFunctionCall","src":"11885:23:1"},{"kind":"number","nativeSrc":"11910:2:1","nodeType":"YulLiteral","src":"11910:2:1","type":"","value":"96"}],"functionName":{"name":"slt","nativeSrc":"11881:3:1","nodeType":"YulIdentifier","src":"11881:3:1"},"nativeSrc":"11881:32:1","nodeType":"YulFunctionCall","src":"11881:32:1"},"nativeSrc":"11878:52:1","nodeType":"YulIf","src":"11878:52:1"},{"nativeSrc":"11939:36:1","nodeType":"YulVariableDeclaration","src":"11939:36:1","value":{"arguments":[{"name":"headStart","nativeSrc":"11965:9:1","nodeType":"YulIdentifier","src":"11965:9:1"}],"functionName":{"name":"calldataload","nativeSrc":"11952:12:1","nodeType":"YulIdentifier","src":"11952:12:1"},"nativeSrc":"11952:23:1","nodeType":"YulFunctionCall","src":"11952:23:1"},"variables":[{"name":"value","nativeSrc":"11943:5:1","nodeType":"YulTypedName","src":"11943:5:1","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"12009:5:1","nodeType":"YulIdentifier","src":"12009:5:1"}],"functionName":{"name":"validator_revert_address","nativeSrc":"11984:24:1","nodeType":"YulIdentifier","src":"11984:24:1"},"nativeSrc":"11984:31:1","nodeType":"YulFunctionCall","src":"11984:31:1"},"nativeSrc":"11984:31:1","nodeType":"YulExpressionStatement","src":"11984:31:1"},{"nativeSrc":"12024:15:1","nodeType":"YulAssignment","src":"12024:15:1","value":{"name":"value","nativeSrc":"12034:5:1","nodeType":"YulIdentifier","src":"12034:5:1"},"variableNames":[{"name":"value0","nativeSrc":"12024:6:1","nodeType":"YulIdentifier","src":"12024:6:1"}]},{"nativeSrc":"12048:16:1","nodeType":"YulVariableDeclaration","src":"12048:16:1","value":{"kind":"number","nativeSrc":"12063:1:1","nodeType":"YulLiteral","src":"12063:1:1","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"12052:7:1","nodeType":"YulTypedName","src":"12052:7:1","type":""}]},{"nativeSrc":"12073:43:1","nodeType":"YulAssignment","src":"12073:43:1","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"12101:9:1","nodeType":"YulIdentifier","src":"12101:9:1"},{"kind":"number","nativeSrc":"12112:2:1","nodeType":"YulLiteral","src":"12112:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"12097:3:1","nodeType":"YulIdentifier","src":"12097:3:1"},"nativeSrc":"12097:18:1","nodeType":"YulFunctionCall","src":"12097:18:1"}],"functionName":{"name":"calldataload","nativeSrc":"12084:12:1","nodeType":"YulIdentifier","src":"12084:12:1"},"nativeSrc":"12084:32:1","nodeType":"YulFunctionCall","src":"12084:32:1"},"variableNames":[{"name":"value_1","nativeSrc":"12073:7:1","nodeType":"YulIdentifier","src":"12073:7:1"}]},{"nativeSrc":"12125:17:1","nodeType":"YulAssignment","src":"12125:17:1","value":{"name":"value_1","nativeSrc":"12135:7:1","nodeType":"YulIdentifier","src":"12135:7:1"},"variableNames":[{"name":"value1","nativeSrc":"12125:6:1","nodeType":"YulIdentifier","src":"12125:6:1"}]},{"nativeSrc":"12151:60:1","nodeType":"YulAssignment","src":"12151:60:1","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"12196:9:1","nodeType":"YulIdentifier","src":"12196:9:1"},{"kind":"number","nativeSrc":"12207:2:1","nodeType":"YulLiteral","src":"12207:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"12192:3:1","nodeType":"YulIdentifier","src":"12192:3:1"},"nativeSrc":"12192:18:1","nodeType":"YulFunctionCall","src":"12192:18:1"}],"functionName":{"name":"abi_decode_enum_DelegationType","nativeSrc":"12161:30:1","nodeType":"YulIdentifier","src":"12161:30:1"},"nativeSrc":"12161:50:1","nodeType":"YulFunctionCall","src":"12161:50:1"},"variableNames":[{"name":"value2","nativeSrc":"12151:6:1","nodeType":"YulIdentifier","src":"12151:6:1"}]}]},"name":"abi_decode_tuple_t_addresst_uint256t_enum$_DelegationType_$1088","nativeSrc":"11745:472:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"11818:9:1","nodeType":"YulTypedName","src":"11818:9:1","type":""},{"name":"dataEnd","nativeSrc":"11829:7:1","nodeType":"YulTypedName","src":"11829:7:1","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"11841:6:1","nodeType":"YulTypedName","src":"11841:6:1","type":""},{"name":"value1","nativeSrc":"11849:6:1","nodeType":"YulTypedName","src":"11849:6:1","type":""},{"name":"value2","nativeSrc":"11857:6:1","nodeType":"YulTypedName","src":"11857:6:1","type":""}],"src":"11745:472:1"},{"body":{"nativeSrc":"12345:102:1","nodeType":"YulBlock","src":"12345:102:1","statements":[{"nativeSrc":"12355:26:1","nodeType":"YulAssignment","src":"12355:26:1","value":{"arguments":[{"name":"headStart","nativeSrc":"12367:9:1","nodeType":"YulIdentifier","src":"12367:9:1"},{"kind":"number","nativeSrc":"12378:2:1","nodeType":"YulLiteral","src":"12378:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"12363:3:1","nodeType":"YulIdentifier","src":"12363:3:1"},"nativeSrc":"12363:18:1","nodeType":"YulFunctionCall","src":"12363:18:1"},"variableNames":[{"name":"tail","nativeSrc":"12355:4:1","nodeType":"YulIdentifier","src":"12355:4:1"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"12397:9:1","nodeType":"YulIdentifier","src":"12397:9:1"},{"arguments":[{"name":"value0","nativeSrc":"12412:6:1","nodeType":"YulIdentifier","src":"12412:6:1"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"12428:3:1","nodeType":"YulLiteral","src":"12428:3:1","type":"","value":"160"},{"kind":"number","nativeSrc":"12433:1:1","nodeType":"YulLiteral","src":"12433:1:1","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"12424:3:1","nodeType":"YulIdentifier","src":"12424:3:1"},"nativeSrc":"12424:11:1","nodeType":"YulFunctionCall","src":"12424:11:1"},{"kind":"number","nativeSrc":"12437:1:1","nodeType":"YulLiteral","src":"12437:1:1","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"12420:3:1","nodeType":"YulIdentifier","src":"12420:3:1"},"nativeSrc":"12420:19:1","nodeType":"YulFunctionCall","src":"12420:19:1"}],"functionName":{"name":"and","nativeSrc":"12408:3:1","nodeType":"YulIdentifier","src":"12408:3:1"},"nativeSrc":"12408:32:1","nodeType":"YulFunctionCall","src":"12408:32:1"}],"functionName":{"name":"mstore","nativeSrc":"12390:6:1","nodeType":"YulIdentifier","src":"12390:6:1"},"nativeSrc":"12390:51:1","nodeType":"YulFunctionCall","src":"12390:51:1"},"nativeSrc":"12390:51:1","nodeType":"YulExpressionStatement","src":"12390:51:1"}]},"name":"abi_encode_tuple_t_contract$_ITransferHook_$1885__to_t_address__fromStack_reversed","nativeSrc":"12222:225:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"12314:9:1","nodeType":"YulTypedName","src":"12314:9:1","type":""},{"name":"value0","nativeSrc":"12325:6:1","nodeType":"YulTypedName","src":"12325:6:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"12336:4:1","nodeType":"YulTypedName","src":"12336:4:1","type":""}],"src":"12222:225:1"},{"body":{"nativeSrc":"12622:772:1","nodeType":"YulBlock","src":"12622:772:1","statements":[{"body":{"nativeSrc":"12669:16:1","nodeType":"YulBlock","src":"12669:16:1","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"12678:1:1","nodeType":"YulLiteral","src":"12678:1:1","type":"","value":"0"},{"kind":"number","nativeSrc":"12681:1:1","nodeType":"YulLiteral","src":"12681:1:1","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"12671:6:1","nodeType":"YulIdentifier","src":"12671:6:1"},"nativeSrc":"12671:12:1","nodeType":"YulFunctionCall","src":"12671:12:1"},"nativeSrc":"12671:12:1","nodeType":"YulExpressionStatement","src":"12671:12:1"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"12643:7:1","nodeType":"YulIdentifier","src":"12643:7:1"},{"name":"headStart","nativeSrc":"12652:9:1","nodeType":"YulIdentifier","src":"12652:9:1"}],"functionName":{"name":"sub","nativeSrc":"12639:3:1","nodeType":"YulIdentifier","src":"12639:3:1"},"nativeSrc":"12639:23:1","nodeType":"YulFunctionCall","src":"12639:23:1"},{"kind":"number","nativeSrc":"12664:3:1","nodeType":"YulLiteral","src":"12664:3:1","type":"","value":"224"}],"functionName":{"name":"slt","nativeSrc":"12635:3:1","nodeType":"YulIdentifier","src":"12635:3:1"},"nativeSrc":"12635:33:1","nodeType":"YulFunctionCall","src":"12635:33:1"},"nativeSrc":"12632:53:1","nodeType":"YulIf","src":"12632:53:1"},{"nativeSrc":"12694:36:1","nodeType":"YulVariableDeclaration","src":"12694:36:1","value":{"arguments":[{"name":"headStart","nativeSrc":"12720:9:1","nodeType":"YulIdentifier","src":"12720:9:1"}],"functionName":{"name":"calldataload","nativeSrc":"12707:12:1","nodeType":"YulIdentifier","src":"12707:12:1"},"nativeSrc":"12707:23:1","nodeType":"YulFunctionCall","src":"12707:23:1"},"variables":[{"name":"value","nativeSrc":"12698:5:1","nodeType":"YulTypedName","src":"12698:5:1","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"12764:5:1","nodeType":"YulIdentifier","src":"12764:5:1"}],"functionName":{"name":"validator_revert_address","nativeSrc":"12739:24:1","nodeType":"YulIdentifier","src":"12739:24:1"},"nativeSrc":"12739:31:1","nodeType":"YulFunctionCall","src":"12739:31:1"},"nativeSrc":"12739:31:1","nodeType":"YulExpressionStatement","src":"12739:31:1"},{"nativeSrc":"12779:15:1","nodeType":"YulAssignment","src":"12779:15:1","value":{"name":"value","nativeSrc":"12789:5:1","nodeType":"YulIdentifier","src":"12789:5:1"},"variableNames":[{"name":"value0","nativeSrc":"12779:6:1","nodeType":"YulIdentifier","src":"12779:6:1"}]},{"nativeSrc":"12803:47:1","nodeType":"YulVariableDeclaration","src":"12803:47:1","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"12835:9:1","nodeType":"YulIdentifier","src":"12835:9:1"},{"kind":"number","nativeSrc":"12846:2:1","nodeType":"YulLiteral","src":"12846:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"12831:3:1","nodeType":"YulIdentifier","src":"12831:3:1"},"nativeSrc":"12831:18:1","nodeType":"YulFunctionCall","src":"12831:18:1"}],"functionName":{"name":"calldataload","nativeSrc":"12818:12:1","nodeType":"YulIdentifier","src":"12818:12:1"},"nativeSrc":"12818:32:1","nodeType":"YulFunctionCall","src":"12818:32:1"},"variables":[{"name":"value_1","nativeSrc":"12807:7:1","nodeType":"YulTypedName","src":"12807:7:1","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"12884:7:1","nodeType":"YulIdentifier","src":"12884:7:1"}],"functionName":{"name":"validator_revert_address","nativeSrc":"12859:24:1","nodeType":"YulIdentifier","src":"12859:24:1"},"nativeSrc":"12859:33:1","nodeType":"YulFunctionCall","src":"12859:33:1"},"nativeSrc":"12859:33:1","nodeType":"YulExpressionStatement","src":"12859:33:1"},{"nativeSrc":"12901:17:1","nodeType":"YulAssignment","src":"12901:17:1","value":{"name":"value_1","nativeSrc":"12911:7:1","nodeType":"YulIdentifier","src":"12911:7:1"},"variableNames":[{"name":"value1","nativeSrc":"12901:6:1","nodeType":"YulIdentifier","src":"12901:6:1"}]},{"nativeSrc":"12927:16:1","nodeType":"YulVariableDeclaration","src":"12927:16:1","value":{"kind":"number","nativeSrc":"12942:1:1","nodeType":"YulLiteral","src":"12942:1:1","type":"","value":"0"},"variables":[{"name":"value_2","nativeSrc":"12931:7:1","nodeType":"YulTypedName","src":"12931:7:1","type":""}]},{"nativeSrc":"12952:43:1","nodeType":"YulAssignment","src":"12952:43:1","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"12980:9:1","nodeType":"YulIdentifier","src":"12980:9:1"},{"kind":"number","nativeSrc":"12991:2:1","nodeType":"YulLiteral","src":"12991:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"12976:3:1","nodeType":"YulIdentifier","src":"12976:3:1"},"nativeSrc":"12976:18:1","nodeType":"YulFunctionCall","src":"12976:18:1"}],"functionName":{"name":"calldataload","nativeSrc":"12963:12:1","nodeType":"YulIdentifier","src":"12963:12:1"},"nativeSrc":"12963:32:1","nodeType":"YulFunctionCall","src":"12963:32:1"},"variableNames":[{"name":"value_2","nativeSrc":"12952:7:1","nodeType":"YulIdentifier","src":"12952:7:1"}]},{"nativeSrc":"13004:17:1","nodeType":"YulAssignment","src":"13004:17:1","value":{"name":"value_2","nativeSrc":"13014:7:1","nodeType":"YulIdentifier","src":"13014:7:1"},"variableNames":[{"name":"value2","nativeSrc":"13004:6:1","nodeType":"YulIdentifier","src":"13004:6:1"}]},{"nativeSrc":"13030:16:1","nodeType":"YulVariableDeclaration","src":"13030:16:1","value":{"kind":"number","nativeSrc":"13045:1:1","nodeType":"YulLiteral","src":"13045:1:1","type":"","value":"0"},"variables":[{"name":"value_3","nativeSrc":"13034:7:1","nodeType":"YulTypedName","src":"13034:7:1","type":""}]},{"nativeSrc":"13055:43:1","nodeType":"YulAssignment","src":"13055:43:1","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"13083:9:1","nodeType":"YulIdentifier","src":"13083:9:1"},{"kind":"number","nativeSrc":"13094:2:1","nodeType":"YulLiteral","src":"13094:2:1","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"13079:3:1","nodeType":"YulIdentifier","src":"13079:3:1"},"nativeSrc":"13079:18:1","nodeType":"YulFunctionCall","src":"13079:18:1"}],"functionName":{"name":"calldataload","nativeSrc":"13066:12:1","nodeType":"YulIdentifier","src":"13066:12:1"},"nativeSrc":"13066:32:1","nodeType":"YulFunctionCall","src":"13066:32:1"},"variableNames":[{"name":"value_3","nativeSrc":"13055:7:1","nodeType":"YulIdentifier","src":"13055:7:1"}]},{"nativeSrc":"13107:17:1","nodeType":"YulAssignment","src":"13107:17:1","value":{"name":"value_3","nativeSrc":"13117:7:1","nodeType":"YulIdentifier","src":"13117:7:1"},"variableNames":[{"name":"value3","nativeSrc":"13107:6:1","nodeType":"YulIdentifier","src":"13107:6:1"}]},{"nativeSrc":"13133:47:1","nodeType":"YulAssignment","src":"13133:47:1","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"13164:9:1","nodeType":"YulIdentifier","src":"13164:9:1"},{"kind":"number","nativeSrc":"13175:3:1","nodeType":"YulLiteral","src":"13175:3:1","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"13160:3:1","nodeType":"YulIdentifier","src":"13160:3:1"},"nativeSrc":"13160:19:1","nodeType":"YulFunctionCall","src":"13160:19:1"}],"functionName":{"name":"abi_decode_uint8","nativeSrc":"13143:16:1","nodeType":"YulIdentifier","src":"13143:16:1"},"nativeSrc":"13143:37:1","nodeType":"YulFunctionCall","src":"13143:37:1"},"variableNames":[{"name":"value4","nativeSrc":"13133:6:1","nodeType":"YulIdentifier","src":"13133:6:1"}]},{"nativeSrc":"13189:16:1","nodeType":"YulVariableDeclaration","src":"13189:16:1","value":{"kind":"number","nativeSrc":"13204:1:1","nodeType":"YulLiteral","src":"13204:1:1","type":"","value":"0"},"variables":[{"name":"value_4","nativeSrc":"13193:7:1","nodeType":"YulTypedName","src":"13193:7:1","type":""}]},{"nativeSrc":"13214:44:1","nodeType":"YulAssignment","src":"13214:44:1","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"13242:9:1","nodeType":"YulIdentifier","src":"13242:9:1"},{"kind":"number","nativeSrc":"13253:3:1","nodeType":"YulLiteral","src":"13253:3:1","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"13238:3:1","nodeType":"YulIdentifier","src":"13238:3:1"},"nativeSrc":"13238:19:1","nodeType":"YulFunctionCall","src":"13238:19:1"}],"functionName":{"name":"calldataload","nativeSrc":"13225:12:1","nodeType":"YulIdentifier","src":"13225:12:1"},"nativeSrc":"13225:33:1","nodeType":"YulFunctionCall","src":"13225:33:1"},"variableNames":[{"name":"value_4","nativeSrc":"13214:7:1","nodeType":"YulIdentifier","src":"13214:7:1"}]},{"nativeSrc":"13267:17:1","nodeType":"YulAssignment","src":"13267:17:1","value":{"name":"value_4","nativeSrc":"13277:7:1","nodeType":"YulIdentifier","src":"13277:7:1"},"variableNames":[{"name":"value5","nativeSrc":"13267:6:1","nodeType":"YulIdentifier","src":"13267:6:1"}]},{"nativeSrc":"13293:16:1","nodeType":"YulVariableDeclaration","src":"13293:16:1","value":{"kind":"number","nativeSrc":"13308:1:1","nodeType":"YulLiteral","src":"13308:1:1","type":"","value":"0"},"variables":[{"name":"value_5","nativeSrc":"13297:7:1","nodeType":"YulTypedName","src":"13297:7:1","type":""}]},{"nativeSrc":"13318:44:1","nodeType":"YulAssignment","src":"13318:44:1","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"13346:9:1","nodeType":"YulIdentifier","src":"13346:9:1"},{"kind":"number","nativeSrc":"13357:3:1","nodeType":"YulLiteral","src":"13357:3:1","type":"","value":"192"}],"functionName":{"name":"add","nativeSrc":"13342:3:1","nodeType":"YulIdentifier","src":"13342:3:1"},"nativeSrc":"13342:19:1","nodeType":"YulFunctionCall","src":"13342:19:1"}],"functionName":{"name":"calldataload","nativeSrc":"13329:12:1","nodeType":"YulIdentifier","src":"13329:12:1"},"nativeSrc":"13329:33:1","nodeType":"YulFunctionCall","src":"13329:33:1"},"variableNames":[{"name":"value_5","nativeSrc":"13318:7:1","nodeType":"YulIdentifier","src":"13318:7:1"}]},{"nativeSrc":"13371:17:1","nodeType":"YulAssignment","src":"13371:17:1","value":{"name":"value_5","nativeSrc":"13381:7:1","nodeType":"YulIdentifier","src":"13381:7:1"},"variableNames":[{"name":"value6","nativeSrc":"13371:6:1","nodeType":"YulIdentifier","src":"13371:6:1"}]}]},"name":"abi_decode_tuple_t_addresst_addresst_uint256t_uint256t_uint8t_bytes32t_bytes32","nativeSrc":"12452:942:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"12540:9:1","nodeType":"YulTypedName","src":"12540:9:1","type":""},{"name":"dataEnd","nativeSrc":"12551:7:1","nodeType":"YulTypedName","src":"12551:7:1","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"12563:6:1","nodeType":"YulTypedName","src":"12563:6:1","type":""},{"name":"value1","nativeSrc":"12571:6:1","nodeType":"YulTypedName","src":"12571:6:1","type":""},{"name":"value2","nativeSrc":"12579:6:1","nodeType":"YulTypedName","src":"12579:6:1","type":""},{"name":"value3","nativeSrc":"12587:6:1","nodeType":"YulTypedName","src":"12587:6:1","type":""},{"name":"value4","nativeSrc":"12595:6:1","nodeType":"YulTypedName","src":"12595:6:1","type":""},{"name":"value5","nativeSrc":"12603:6:1","nodeType":"YulTypedName","src":"12603:6:1","type":""},{"name":"value6","nativeSrc":"12611:6:1","nodeType":"YulTypedName","src":"12611:6:1","type":""}],"src":"12452:942:1"},{"body":{"nativeSrc":"13503:383:1","nodeType":"YulBlock","src":"13503:383:1","statements":[{"body":{"nativeSrc":"13549:16:1","nodeType":"YulBlock","src":"13549:16:1","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"13558:1:1","nodeType":"YulLiteral","src":"13558:1:1","type":"","value":"0"},{"kind":"number","nativeSrc":"13561:1:1","nodeType":"YulLiteral","src":"13561:1:1","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"13551:6:1","nodeType":"YulIdentifier","src":"13551:6:1"},"nativeSrc":"13551:12:1","nodeType":"YulFunctionCall","src":"13551:12:1"},"nativeSrc":"13551:12:1","nodeType":"YulExpressionStatement","src":"13551:12:1"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"13524:7:1","nodeType":"YulIdentifier","src":"13524:7:1"},{"name":"headStart","nativeSrc":"13533:9:1","nodeType":"YulIdentifier","src":"13533:9:1"}],"functionName":{"name":"sub","nativeSrc":"13520:3:1","nodeType":"YulIdentifier","src":"13520:3:1"},"nativeSrc":"13520:23:1","nodeType":"YulFunctionCall","src":"13520:23:1"},{"kind":"number","nativeSrc":"13545:2:1","nodeType":"YulLiteral","src":"13545:2:1","type":"","value":"96"}],"functionName":{"name":"slt","nativeSrc":"13516:3:1","nodeType":"YulIdentifier","src":"13516:3:1"},"nativeSrc":"13516:32:1","nodeType":"YulFunctionCall","src":"13516:32:1"},"nativeSrc":"13513:52:1","nodeType":"YulIf","src":"13513:52:1"},{"nativeSrc":"13574:36:1","nodeType":"YulVariableDeclaration","src":"13574:36:1","value":{"arguments":[{"name":"headStart","nativeSrc":"13600:9:1","nodeType":"YulIdentifier","src":"13600:9:1"}],"functionName":{"name":"calldataload","nativeSrc":"13587:12:1","nodeType":"YulIdentifier","src":"13587:12:1"},"nativeSrc":"13587:23:1","nodeType":"YulFunctionCall","src":"13587:23:1"},"variables":[{"name":"value","nativeSrc":"13578:5:1","nodeType":"YulTypedName","src":"13578:5:1","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"13644:5:1","nodeType":"YulIdentifier","src":"13644:5:1"}],"functionName":{"name":"validator_revert_address","nativeSrc":"13619:24:1","nodeType":"YulIdentifier","src":"13619:24:1"},"nativeSrc":"13619:31:1","nodeType":"YulFunctionCall","src":"13619:31:1"},"nativeSrc":"13619:31:1","nodeType":"YulExpressionStatement","src":"13619:31:1"},{"nativeSrc":"13659:15:1","nodeType":"YulAssignment","src":"13659:15:1","value":{"name":"value","nativeSrc":"13669:5:1","nodeType":"YulIdentifier","src":"13669:5:1"},"variableNames":[{"name":"value0","nativeSrc":"13659:6:1","nodeType":"YulIdentifier","src":"13659:6:1"}]},{"nativeSrc":"13683:16:1","nodeType":"YulVariableDeclaration","src":"13683:16:1","value":{"kind":"number","nativeSrc":"13698:1:1","nodeType":"YulLiteral","src":"13698:1:1","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"13687:7:1","nodeType":"YulTypedName","src":"13687:7:1","type":""}]},{"nativeSrc":"13708:43:1","nodeType":"YulAssignment","src":"13708:43:1","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"13736:9:1","nodeType":"YulIdentifier","src":"13736:9:1"},{"kind":"number","nativeSrc":"13747:2:1","nodeType":"YulLiteral","src":"13747:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"13732:3:1","nodeType":"YulIdentifier","src":"13732:3:1"},"nativeSrc":"13732:18:1","nodeType":"YulFunctionCall","src":"13732:18:1"}],"functionName":{"name":"calldataload","nativeSrc":"13719:12:1","nodeType":"YulIdentifier","src":"13719:12:1"},"nativeSrc":"13719:32:1","nodeType":"YulFunctionCall","src":"13719:32:1"},"variableNames":[{"name":"value_1","nativeSrc":"13708:7:1","nodeType":"YulIdentifier","src":"13708:7:1"}]},{"nativeSrc":"13760:17:1","nodeType":"YulAssignment","src":"13760:17:1","value":{"name":"value_1","nativeSrc":"13770:7:1","nodeType":"YulIdentifier","src":"13770:7:1"},"variableNames":[{"name":"value1","nativeSrc":"13760:6:1","nodeType":"YulIdentifier","src":"13760:6:1"}]},{"nativeSrc":"13786:16:1","nodeType":"YulVariableDeclaration","src":"13786:16:1","value":{"kind":"number","nativeSrc":"13801:1:1","nodeType":"YulLiteral","src":"13801:1:1","type":"","value":"0"},"variables":[{"name":"value_2","nativeSrc":"13790:7:1","nodeType":"YulTypedName","src":"13790:7:1","type":""}]},{"nativeSrc":"13811:43:1","nodeType":"YulAssignment","src":"13811:43:1","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"13839:9:1","nodeType":"YulIdentifier","src":"13839:9:1"},{"kind":"number","nativeSrc":"13850:2:1","nodeType":"YulLiteral","src":"13850:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"13835:3:1","nodeType":"YulIdentifier","src":"13835:3:1"},"nativeSrc":"13835:18:1","nodeType":"YulFunctionCall","src":"13835:18:1"}],"functionName":{"name":"calldataload","nativeSrc":"13822:12:1","nodeType":"YulIdentifier","src":"13822:12:1"},"nativeSrc":"13822:32:1","nodeType":"YulFunctionCall","src":"13822:32:1"},"variableNames":[{"name":"value_2","nativeSrc":"13811:7:1","nodeType":"YulIdentifier","src":"13811:7:1"}]},{"nativeSrc":"13863:17:1","nodeType":"YulAssignment","src":"13863:17:1","value":{"name":"value_2","nativeSrc":"13873:7:1","nodeType":"YulIdentifier","src":"13873:7:1"},"variableNames":[{"name":"value2","nativeSrc":"13863:6:1","nodeType":"YulIdentifier","src":"13863:6:1"}]}]},"name":"abi_decode_tuple_t_addresst_uint256t_uint256","nativeSrc":"13399:487:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"13453:9:1","nodeType":"YulTypedName","src":"13453:9:1","type":""},{"name":"dataEnd","nativeSrc":"13464:7:1","nodeType":"YulTypedName","src":"13464:7:1","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"13476:6:1","nodeType":"YulTypedName","src":"13476:6:1","type":""},{"name":"value1","nativeSrc":"13484:6:1","nodeType":"YulTypedName","src":"13484:6:1","type":""},{"name":"value2","nativeSrc":"13492:6:1","nodeType":"YulTypedName","src":"13492:6:1","type":""}],"src":"13399:487:1"},{"body":{"nativeSrc":"14048:244:1","nodeType":"YulBlock","src":"14048:244:1","statements":[{"nativeSrc":"14058:26:1","nodeType":"YulAssignment","src":"14058:26:1","value":{"arguments":[{"name":"headStart","nativeSrc":"14070:9:1","nodeType":"YulIdentifier","src":"14070:9:1"},{"kind":"number","nativeSrc":"14081:2:1","nodeType":"YulLiteral","src":"14081:2:1","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"14066:3:1","nodeType":"YulIdentifier","src":"14066:3:1"},"nativeSrc":"14066:18:1","nodeType":"YulFunctionCall","src":"14066:18:1"},"variableNames":[{"name":"tail","nativeSrc":"14058:4:1","nodeType":"YulIdentifier","src":"14058:4:1"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"14100:9:1","nodeType":"YulIdentifier","src":"14100:9:1"},{"arguments":[{"name":"value0","nativeSrc":"14115:6:1","nodeType":"YulIdentifier","src":"14115:6:1"},{"kind":"number","nativeSrc":"14123:34:1","nodeType":"YulLiteral","src":"14123:34:1","type":"","value":"0xffffffffffffffffffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"14111:3:1","nodeType":"YulIdentifier","src":"14111:3:1"},"nativeSrc":"14111:47:1","nodeType":"YulFunctionCall","src":"14111:47:1"}],"functionName":{"name":"mstore","nativeSrc":"14093:6:1","nodeType":"YulIdentifier","src":"14093:6:1"},"nativeSrc":"14093:66:1","nodeType":"YulFunctionCall","src":"14093:66:1"},"nativeSrc":"14093:66:1","nodeType":"YulExpressionStatement","src":"14093:66:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"14179:9:1","nodeType":"YulIdentifier","src":"14179:9:1"},{"kind":"number","nativeSrc":"14190:2:1","nodeType":"YulLiteral","src":"14190:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"14175:3:1","nodeType":"YulIdentifier","src":"14175:3:1"},"nativeSrc":"14175:18:1","nodeType":"YulFunctionCall","src":"14175:18:1"},{"arguments":[{"name":"value1","nativeSrc":"14199:6:1","nodeType":"YulIdentifier","src":"14199:6:1"},{"kind":"number","nativeSrc":"14207:34:1","nodeType":"YulLiteral","src":"14207:34:1","type":"","value":"0xffffffffffffffffffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"14195:3:1","nodeType":"YulIdentifier","src":"14195:3:1"},"nativeSrc":"14195:47:1","nodeType":"YulFunctionCall","src":"14195:47:1"}],"functionName":{"name":"mstore","nativeSrc":"14168:6:1","nodeType":"YulIdentifier","src":"14168:6:1"},"nativeSrc":"14168:75:1","nodeType":"YulFunctionCall","src":"14168:75:1"},"nativeSrc":"14168:75:1","nodeType":"YulExpressionStatement","src":"14168:75:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"14263:9:1","nodeType":"YulIdentifier","src":"14263:9:1"},{"kind":"number","nativeSrc":"14274:2:1","nodeType":"YulLiteral","src":"14274:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"14259:3:1","nodeType":"YulIdentifier","src":"14259:3:1"},"nativeSrc":"14259:18:1","nodeType":"YulFunctionCall","src":"14259:18:1"},{"name":"value2","nativeSrc":"14279:6:1","nodeType":"YulIdentifier","src":"14279:6:1"}],"functionName":{"name":"mstore","nativeSrc":"14252:6:1","nodeType":"YulIdentifier","src":"14252:6:1"},"nativeSrc":"14252:34:1","nodeType":"YulFunctionCall","src":"14252:34:1"},"nativeSrc":"14252:34:1","nodeType":"YulExpressionStatement","src":"14252:34:1"}]},"name":"abi_encode_tuple_t_uint128_t_uint128_t_uint256__to_t_uint128_t_uint128_t_uint256__fromStack_reversed","nativeSrc":"13891:401:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"14001:9:1","nodeType":"YulTypedName","src":"14001:9:1","type":""},{"name":"value2","nativeSrc":"14012:6:1","nodeType":"YulTypedName","src":"14012:6:1","type":""},{"name":"value1","nativeSrc":"14020:6:1","nodeType":"YulTypedName","src":"14020:6:1","type":""},{"name":"value0","nativeSrc":"14028:6:1","nodeType":"YulTypedName","src":"14028:6:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"14039:4:1","nodeType":"YulTypedName","src":"14039:4:1","type":""}],"src":"13891:401:1"},{"body":{"nativeSrc":"14486:717:1","nodeType":"YulBlock","src":"14486:717:1","statements":[{"body":{"nativeSrc":"14533:16:1","nodeType":"YulBlock","src":"14533:16:1","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"14542:1:1","nodeType":"YulLiteral","src":"14542:1:1","type":"","value":"0"},{"kind":"number","nativeSrc":"14545:1:1","nodeType":"YulLiteral","src":"14545:1:1","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"14535:6:1","nodeType":"YulIdentifier","src":"14535:6:1"},"nativeSrc":"14535:12:1","nodeType":"YulFunctionCall","src":"14535:12:1"},"nativeSrc":"14535:12:1","nodeType":"YulExpressionStatement","src":"14535:12:1"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"14507:7:1","nodeType":"YulIdentifier","src":"14507:7:1"},{"name":"headStart","nativeSrc":"14516:9:1","nodeType":"YulIdentifier","src":"14516:9:1"}],"functionName":{"name":"sub","nativeSrc":"14503:3:1","nodeType":"YulIdentifier","src":"14503:3:1"},"nativeSrc":"14503:23:1","nodeType":"YulFunctionCall","src":"14503:23:1"},{"kind":"number","nativeSrc":"14528:3:1","nodeType":"YulLiteral","src":"14528:3:1","type":"","value":"224"}],"functionName":{"name":"slt","nativeSrc":"14499:3:1","nodeType":"YulIdentifier","src":"14499:3:1"},"nativeSrc":"14499:33:1","nodeType":"YulFunctionCall","src":"14499:33:1"},"nativeSrc":"14496:53:1","nodeType":"YulIf","src":"14496:53:1"},{"nativeSrc":"14558:36:1","nodeType":"YulVariableDeclaration","src":"14558:36:1","value":{"arguments":[{"name":"headStart","nativeSrc":"14584:9:1","nodeType":"YulIdentifier","src":"14584:9:1"}],"functionName":{"name":"calldataload","nativeSrc":"14571:12:1","nodeType":"YulIdentifier","src":"14571:12:1"},"nativeSrc":"14571:23:1","nodeType":"YulFunctionCall","src":"14571:23:1"},"variables":[{"name":"value","nativeSrc":"14562:5:1","nodeType":"YulTypedName","src":"14562:5:1","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"14628:5:1","nodeType":"YulIdentifier","src":"14628:5:1"}],"functionName":{"name":"validator_revert_address","nativeSrc":"14603:24:1","nodeType":"YulIdentifier","src":"14603:24:1"},"nativeSrc":"14603:31:1","nodeType":"YulFunctionCall","src":"14603:31:1"},"nativeSrc":"14603:31:1","nodeType":"YulExpressionStatement","src":"14603:31:1"},{"nativeSrc":"14643:15:1","nodeType":"YulAssignment","src":"14643:15:1","value":{"name":"value","nativeSrc":"14653:5:1","nodeType":"YulIdentifier","src":"14653:5:1"},"variableNames":[{"name":"value0","nativeSrc":"14643:6:1","nodeType":"YulIdentifier","src":"14643:6:1"}]},{"nativeSrc":"14667:60:1","nodeType":"YulAssignment","src":"14667:60:1","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"14712:9:1","nodeType":"YulIdentifier","src":"14712:9:1"},{"kind":"number","nativeSrc":"14723:2:1","nodeType":"YulLiteral","src":"14723:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"14708:3:1","nodeType":"YulIdentifier","src":"14708:3:1"},"nativeSrc":"14708:18:1","nodeType":"YulFunctionCall","src":"14708:18:1"}],"functionName":{"name":"abi_decode_enum_DelegationType","nativeSrc":"14677:30:1","nodeType":"YulIdentifier","src":"14677:30:1"},"nativeSrc":"14677:50:1","nodeType":"YulFunctionCall","src":"14677:50:1"},"variableNames":[{"name":"value1","nativeSrc":"14667:6:1","nodeType":"YulIdentifier","src":"14667:6:1"}]},{"nativeSrc":"14736:16:1","nodeType":"YulVariableDeclaration","src":"14736:16:1","value":{"kind":"number","nativeSrc":"14751:1:1","nodeType":"YulLiteral","src":"14751:1:1","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"14740:7:1","nodeType":"YulTypedName","src":"14740:7:1","type":""}]},{"nativeSrc":"14761:43:1","nodeType":"YulAssignment","src":"14761:43:1","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"14789:9:1","nodeType":"YulIdentifier","src":"14789:9:1"},{"kind":"number","nativeSrc":"14800:2:1","nodeType":"YulLiteral","src":"14800:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"14785:3:1","nodeType":"YulIdentifier","src":"14785:3:1"},"nativeSrc":"14785:18:1","nodeType":"YulFunctionCall","src":"14785:18:1"}],"functionName":{"name":"calldataload","nativeSrc":"14772:12:1","nodeType":"YulIdentifier","src":"14772:12:1"},"nativeSrc":"14772:32:1","nodeType":"YulFunctionCall","src":"14772:32:1"},"variableNames":[{"name":"value_1","nativeSrc":"14761:7:1","nodeType":"YulIdentifier","src":"14761:7:1"}]},{"nativeSrc":"14813:17:1","nodeType":"YulAssignment","src":"14813:17:1","value":{"name":"value_1","nativeSrc":"14823:7:1","nodeType":"YulIdentifier","src":"14823:7:1"},"variableNames":[{"name":"value2","nativeSrc":"14813:6:1","nodeType":"YulIdentifier","src":"14813:6:1"}]},{"nativeSrc":"14839:16:1","nodeType":"YulVariableDeclaration","src":"14839:16:1","value":{"kind":"number","nativeSrc":"14854:1:1","nodeType":"YulLiteral","src":"14854:1:1","type":"","value":"0"},"variables":[{"name":"value_2","nativeSrc":"14843:7:1","nodeType":"YulTypedName","src":"14843:7:1","type":""}]},{"nativeSrc":"14864:43:1","nodeType":"YulAssignment","src":"14864:43:1","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"14892:9:1","nodeType":"YulIdentifier","src":"14892:9:1"},{"kind":"number","nativeSrc":"14903:2:1","nodeType":"YulLiteral","src":"14903:2:1","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"14888:3:1","nodeType":"YulIdentifier","src":"14888:3:1"},"nativeSrc":"14888:18:1","nodeType":"YulFunctionCall","src":"14888:18:1"}],"functionName":{"name":"calldataload","nativeSrc":"14875:12:1","nodeType":"YulIdentifier","src":"14875:12:1"},"nativeSrc":"14875:32:1","nodeType":"YulFunctionCall","src":"14875:32:1"},"variableNames":[{"name":"value_2","nativeSrc":"14864:7:1","nodeType":"YulIdentifier","src":"14864:7:1"}]},{"nativeSrc":"14916:17:1","nodeType":"YulAssignment","src":"14916:17:1","value":{"name":"value_2","nativeSrc":"14926:7:1","nodeType":"YulIdentifier","src":"14926:7:1"},"variableNames":[{"name":"value3","nativeSrc":"14916:6:1","nodeType":"YulIdentifier","src":"14916:6:1"}]},{"nativeSrc":"14942:47:1","nodeType":"YulAssignment","src":"14942:47:1","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"14973:9:1","nodeType":"YulIdentifier","src":"14973:9:1"},{"kind":"number","nativeSrc":"14984:3:1","nodeType":"YulLiteral","src":"14984:3:1","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"14969:3:1","nodeType":"YulIdentifier","src":"14969:3:1"},"nativeSrc":"14969:19:1","nodeType":"YulFunctionCall","src":"14969:19:1"}],"functionName":{"name":"abi_decode_uint8","nativeSrc":"14952:16:1","nodeType":"YulIdentifier","src":"14952:16:1"},"nativeSrc":"14952:37:1","nodeType":"YulFunctionCall","src":"14952:37:1"},"variableNames":[{"name":"value4","nativeSrc":"14942:6:1","nodeType":"YulIdentifier","src":"14942:6:1"}]},{"nativeSrc":"14998:16:1","nodeType":"YulVariableDeclaration","src":"14998:16:1","value":{"kind":"number","nativeSrc":"15013:1:1","nodeType":"YulLiteral","src":"15013:1:1","type":"","value":"0"},"variables":[{"name":"value_3","nativeSrc":"15002:7:1","nodeType":"YulTypedName","src":"15002:7:1","type":""}]},{"nativeSrc":"15023:44:1","nodeType":"YulAssignment","src":"15023:44:1","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"15051:9:1","nodeType":"YulIdentifier","src":"15051:9:1"},{"kind":"number","nativeSrc":"15062:3:1","nodeType":"YulLiteral","src":"15062:3:1","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"15047:3:1","nodeType":"YulIdentifier","src":"15047:3:1"},"nativeSrc":"15047:19:1","nodeType":"YulFunctionCall","src":"15047:19:1"}],"functionName":{"name":"calldataload","nativeSrc":"15034:12:1","nodeType":"YulIdentifier","src":"15034:12:1"},"nativeSrc":"15034:33:1","nodeType":"YulFunctionCall","src":"15034:33:1"},"variableNames":[{"name":"value_3","nativeSrc":"15023:7:1","nodeType":"YulIdentifier","src":"15023:7:1"}]},{"nativeSrc":"15076:17:1","nodeType":"YulAssignment","src":"15076:17:1","value":{"name":"value_3","nativeSrc":"15086:7:1","nodeType":"YulIdentifier","src":"15086:7:1"},"variableNames":[{"name":"value5","nativeSrc":"15076:6:1","nodeType":"YulIdentifier","src":"15076:6:1"}]},{"nativeSrc":"15102:16:1","nodeType":"YulVariableDeclaration","src":"15102:16:1","value":{"kind":"number","nativeSrc":"15117:1:1","nodeType":"YulLiteral","src":"15117:1:1","type":"","value":"0"},"variables":[{"name":"value_4","nativeSrc":"15106:7:1","nodeType":"YulTypedName","src":"15106:7:1","type":""}]},{"nativeSrc":"15127:44:1","nodeType":"YulAssignment","src":"15127:44:1","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"15155:9:1","nodeType":"YulIdentifier","src":"15155:9:1"},{"kind":"number","nativeSrc":"15166:3:1","nodeType":"YulLiteral","src":"15166:3:1","type":"","value":"192"}],"functionName":{"name":"add","nativeSrc":"15151:3:1","nodeType":"YulIdentifier","src":"15151:3:1"},"nativeSrc":"15151:19:1","nodeType":"YulFunctionCall","src":"15151:19:1"}],"functionName":{"name":"calldataload","nativeSrc":"15138:12:1","nodeType":"YulIdentifier","src":"15138:12:1"},"nativeSrc":"15138:33:1","nodeType":"YulFunctionCall","src":"15138:33:1"},"variableNames":[{"name":"value_4","nativeSrc":"15127:7:1","nodeType":"YulIdentifier","src":"15127:7:1"}]},{"nativeSrc":"15180:17:1","nodeType":"YulAssignment","src":"15180:17:1","value":{"name":"value_4","nativeSrc":"15190:7:1","nodeType":"YulIdentifier","src":"15190:7:1"},"variableNames":[{"name":"value6","nativeSrc":"15180:6:1","nodeType":"YulIdentifier","src":"15180:6:1"}]}]},"name":"abi_decode_tuple_t_addresst_enum$_DelegationType_$1088t_uint256t_uint256t_uint8t_bytes32t_bytes32","nativeSrc":"14297:906:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"14404:9:1","nodeType":"YulTypedName","src":"14404:9:1","type":""},{"name":"dataEnd","nativeSrc":"14415:7:1","nodeType":"YulTypedName","src":"14415:7:1","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"14427:6:1","nodeType":"YulTypedName","src":"14427:6:1","type":""},{"name":"value1","nativeSrc":"14435:6:1","nodeType":"YulTypedName","src":"14435:6:1","type":""},{"name":"value2","nativeSrc":"14443:6:1","nodeType":"YulTypedName","src":"14443:6:1","type":""},{"name":"value3","nativeSrc":"14451:6:1","nodeType":"YulTypedName","src":"14451:6:1","type":""},{"name":"value4","nativeSrc":"14459:6:1","nodeType":"YulTypedName","src":"14459:6:1","type":""},{"name":"value5","nativeSrc":"14467:6:1","nodeType":"YulTypedName","src":"14467:6:1","type":""},{"name":"value6","nativeSrc":"14475:6:1","nodeType":"YulTypedName","src":"14475:6:1","type":""}],"src":"14297:906:1"},{"body":{"nativeSrc":"15382:175:1","nodeType":"YulBlock","src":"15382:175:1","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"15399:9:1","nodeType":"YulIdentifier","src":"15399:9:1"},{"kind":"number","nativeSrc":"15410:2:1","nodeType":"YulLiteral","src":"15410:2:1","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"15392:6:1","nodeType":"YulIdentifier","src":"15392:6:1"},"nativeSrc":"15392:21:1","nodeType":"YulFunctionCall","src":"15392:21:1"},"nativeSrc":"15392:21:1","nodeType":"YulExpressionStatement","src":"15392:21:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"15433:9:1","nodeType":"YulIdentifier","src":"15433:9:1"},{"kind":"number","nativeSrc":"15444:2:1","nodeType":"YulLiteral","src":"15444:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"15429:3:1","nodeType":"YulIdentifier","src":"15429:3:1"},"nativeSrc":"15429:18:1","nodeType":"YulFunctionCall","src":"15429:18:1"},{"kind":"number","nativeSrc":"15449:2:1","nodeType":"YulLiteral","src":"15449:2:1","type":"","value":"25"}],"functionName":{"name":"mstore","nativeSrc":"15422:6:1","nodeType":"YulIdentifier","src":"15422:6:1"},"nativeSrc":"15422:30:1","nodeType":"YulFunctionCall","src":"15422:30:1"},"nativeSrc":"15422:30:1","nodeType":"YulExpressionStatement","src":"15422:30:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"15472:9:1","nodeType":"YulIdentifier","src":"15472:9:1"},{"kind":"number","nativeSrc":"15483:2:1","nodeType":"YulLiteral","src":"15483:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"15468:3:1","nodeType":"YulIdentifier","src":"15468:3:1"},"nativeSrc":"15468:18:1","nodeType":"YulFunctionCall","src":"15468:18:1"},{"hexValue":"43414c4c45525f4e4f545f534c415348494e475f41444d494e","kind":"string","nativeSrc":"15488:27:1","nodeType":"YulLiteral","src":"15488:27:1","type":"","value":"CALLER_NOT_SLASHING_ADMIN"}],"functionName":{"name":"mstore","nativeSrc":"15461:6:1","nodeType":"YulIdentifier","src":"15461:6:1"},"nativeSrc":"15461:55:1","nodeType":"YulFunctionCall","src":"15461:55:1"},"nativeSrc":"15461:55:1","nodeType":"YulExpressionStatement","src":"15461:55:1"},{"nativeSrc":"15525:26:1","nodeType":"YulAssignment","src":"15525:26:1","value":{"arguments":[{"name":"headStart","nativeSrc":"15537:9:1","nodeType":"YulIdentifier","src":"15537:9:1"},{"kind":"number","nativeSrc":"15548:2:1","nodeType":"YulLiteral","src":"15548:2:1","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"15533:3:1","nodeType":"YulIdentifier","src":"15533:3:1"},"nativeSrc":"15533:18:1","nodeType":"YulFunctionCall","src":"15533:18:1"},"variableNames":[{"name":"tail","nativeSrc":"15525:4:1","nodeType":"YulIdentifier","src":"15525:4:1"}]}]},"name":"abi_encode_tuple_t_stringliteral_6fb33ededa50927431023a1ca5722fb9abe7b87aeeb47e46d1f13b646b0719ba__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"15208:349:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"15359:9:1","nodeType":"YulTypedName","src":"15359:9:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"15373:4:1","nodeType":"YulTypedName","src":"15373:4:1","type":""}],"src":"15208:349:1"},{"body":{"nativeSrc":"15736:179:1","nodeType":"YulBlock","src":"15736:179:1","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"15753:9:1","nodeType":"YulIdentifier","src":"15753:9:1"},{"kind":"number","nativeSrc":"15764:2:1","nodeType":"YulLiteral","src":"15764:2:1","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"15746:6:1","nodeType":"YulIdentifier","src":"15746:6:1"},"nativeSrc":"15746:21:1","nodeType":"YulFunctionCall","src":"15746:21:1"},"nativeSrc":"15746:21:1","nodeType":"YulExpressionStatement","src":"15746:21:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"15787:9:1","nodeType":"YulIdentifier","src":"15787:9:1"},{"kind":"number","nativeSrc":"15798:2:1","nodeType":"YulLiteral","src":"15798:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"15783:3:1","nodeType":"YulIdentifier","src":"15783:3:1"},"nativeSrc":"15783:18:1","nodeType":"YulFunctionCall","src":"15783:18:1"},{"kind":"number","nativeSrc":"15803:2:1","nodeType":"YulLiteral","src":"15803:2:1","type":"","value":"29"}],"functionName":{"name":"mstore","nativeSrc":"15776:6:1","nodeType":"YulIdentifier","src":"15776:6:1"},"nativeSrc":"15776:30:1","nodeType":"YulFunctionCall","src":"15776:30:1"},"nativeSrc":"15776:30:1","nodeType":"YulExpressionStatement","src":"15776:30:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"15826:9:1","nodeType":"YulIdentifier","src":"15826:9:1"},{"kind":"number","nativeSrc":"15837:2:1","nodeType":"YulLiteral","src":"15837:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"15822:3:1","nodeType":"YulIdentifier","src":"15822:3:1"},"nativeSrc":"15822:18:1","nodeType":"YulFunctionCall","src":"15822:18:1"},{"hexValue":"50524556494f55535f534c415348494e475f4e4f545f534554544c4544","kind":"string","nativeSrc":"15842:31:1","nodeType":"YulLiteral","src":"15842:31:1","type":"","value":"PREVIOUS_SLASHING_NOT_SETTLED"}],"functionName":{"name":"mstore","nativeSrc":"15815:6:1","nodeType":"YulIdentifier","src":"15815:6:1"},"nativeSrc":"15815:59:1","nodeType":"YulFunctionCall","src":"15815:59:1"},"nativeSrc":"15815:59:1","nodeType":"YulExpressionStatement","src":"15815:59:1"},{"nativeSrc":"15883:26:1","nodeType":"YulAssignment","src":"15883:26:1","value":{"arguments":[{"name":"headStart","nativeSrc":"15895:9:1","nodeType":"YulIdentifier","src":"15895:9:1"},{"kind":"number","nativeSrc":"15906:2:1","nodeType":"YulLiteral","src":"15906:2:1","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"15891:3:1","nodeType":"YulIdentifier","src":"15891:3:1"},"nativeSrc":"15891:18:1","nodeType":"YulFunctionCall","src":"15891:18:1"},"variableNames":[{"name":"tail","nativeSrc":"15883:4:1","nodeType":"YulIdentifier","src":"15883:4:1"}]}]},"name":"abi_encode_tuple_t_stringliteral_f77daace20469de8df4d27824d8f88ae642c918133f638a98e78576c5af835a5__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"15562:353:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"15713:9:1","nodeType":"YulTypedName","src":"15713:9:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"15727:4:1","nodeType":"YulTypedName","src":"15727:4:1","type":""}],"src":"15562:353:1"},{"body":{"nativeSrc":"16094:161:1","nodeType":"YulBlock","src":"16094:161:1","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"16111:9:1","nodeType":"YulIdentifier","src":"16111:9:1"},{"kind":"number","nativeSrc":"16122:2:1","nodeType":"YulLiteral","src":"16122:2:1","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"16104:6:1","nodeType":"YulIdentifier","src":"16104:6:1"},"nativeSrc":"16104:21:1","nodeType":"YulFunctionCall","src":"16104:21:1"},"nativeSrc":"16104:21:1","nodeType":"YulExpressionStatement","src":"16104:21:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"16145:9:1","nodeType":"YulIdentifier","src":"16145:9:1"},{"kind":"number","nativeSrc":"16156:2:1","nodeType":"YulLiteral","src":"16156:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"16141:3:1","nodeType":"YulIdentifier","src":"16141:3:1"},"nativeSrc":"16141:18:1","nodeType":"YulFunctionCall","src":"16141:18:1"},{"kind":"number","nativeSrc":"16161:2:1","nodeType":"YulLiteral","src":"16161:2:1","type":"","value":"11"}],"functionName":{"name":"mstore","nativeSrc":"16134:6:1","nodeType":"YulIdentifier","src":"16134:6:1"},"nativeSrc":"16134:30:1","nodeType":"YulFunctionCall","src":"16134:30:1"},"nativeSrc":"16134:30:1","nodeType":"YulExpressionStatement","src":"16134:30:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"16184:9:1","nodeType":"YulIdentifier","src":"16184:9:1"},{"kind":"number","nativeSrc":"16195:2:1","nodeType":"YulLiteral","src":"16195:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"16180:3:1","nodeType":"YulIdentifier","src":"16180:3:1"},"nativeSrc":"16180:18:1","nodeType":"YulFunctionCall","src":"16180:18:1"},{"hexValue":"5a45524f5f414d4f554e54","kind":"string","nativeSrc":"16200:13:1","nodeType":"YulLiteral","src":"16200:13:1","type":"","value":"ZERO_AMOUNT"}],"functionName":{"name":"mstore","nativeSrc":"16173:6:1","nodeType":"YulIdentifier","src":"16173:6:1"},"nativeSrc":"16173:41:1","nodeType":"YulFunctionCall","src":"16173:41:1"},"nativeSrc":"16173:41:1","nodeType":"YulExpressionStatement","src":"16173:41:1"},{"nativeSrc":"16223:26:1","nodeType":"YulAssignment","src":"16223:26:1","value":{"arguments":[{"name":"headStart","nativeSrc":"16235:9:1","nodeType":"YulIdentifier","src":"16235:9:1"},{"kind":"number","nativeSrc":"16246:2:1","nodeType":"YulLiteral","src":"16246:2:1","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"16231:3:1","nodeType":"YulIdentifier","src":"16231:3:1"},"nativeSrc":"16231:18:1","nodeType":"YulFunctionCall","src":"16231:18:1"},"variableNames":[{"name":"tail","nativeSrc":"16223:4:1","nodeType":"YulIdentifier","src":"16223:4:1"}]}]},"name":"abi_encode_tuple_t_stringliteral_ad8e292265788ac5c19f708ed96612bf3229f5fbdf9e1b9b3466c3f5a1b60243__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"15920:335:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"16071:9:1","nodeType":"YulTypedName","src":"16071:9:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"16085:4:1","nodeType":"YulTypedName","src":"16085:4:1","type":""}],"src":"15920:335:1"},{"body":{"nativeSrc":"16292:95:1","nodeType":"YulBlock","src":"16292:95:1","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"16309:1:1","nodeType":"YulLiteral","src":"16309:1:1","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"16316:3:1","nodeType":"YulLiteral","src":"16316:3:1","type":"","value":"224"},{"kind":"number","nativeSrc":"16321:10:1","nodeType":"YulLiteral","src":"16321:10:1","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"16312:3:1","nodeType":"YulIdentifier","src":"16312:3:1"},"nativeSrc":"16312:20:1","nodeType":"YulFunctionCall","src":"16312:20:1"}],"functionName":{"name":"mstore","nativeSrc":"16302:6:1","nodeType":"YulIdentifier","src":"16302:6:1"},"nativeSrc":"16302:31:1","nodeType":"YulFunctionCall","src":"16302:31:1"},"nativeSrc":"16302:31:1","nodeType":"YulExpressionStatement","src":"16302:31:1"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"16349:1:1","nodeType":"YulLiteral","src":"16349:1:1","type":"","value":"4"},{"kind":"number","nativeSrc":"16352:4:1","nodeType":"YulLiteral","src":"16352:4:1","type":"","value":"0x11"}],"functionName":{"name":"mstore","nativeSrc":"16342:6:1","nodeType":"YulIdentifier","src":"16342:6:1"},"nativeSrc":"16342:15:1","nodeType":"YulFunctionCall","src":"16342:15:1"},"nativeSrc":"16342:15:1","nodeType":"YulExpressionStatement","src":"16342:15:1"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"16373:1:1","nodeType":"YulLiteral","src":"16373:1:1","type":"","value":"0"},{"kind":"number","nativeSrc":"16376:4:1","nodeType":"YulLiteral","src":"16376:4:1","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"16366:6:1","nodeType":"YulIdentifier","src":"16366:6:1"},"nativeSrc":"16366:15:1","nodeType":"YulFunctionCall","src":"16366:15:1"},"nativeSrc":"16366:15:1","nodeType":"YulExpressionStatement","src":"16366:15:1"}]},"name":"panic_error_0x11","nativeSrc":"16260:127:1","nodeType":"YulFunctionDefinition","src":"16260:127:1"},{"body":{"nativeSrc":"16441:79:1","nodeType":"YulBlock","src":"16441:79:1","statements":[{"nativeSrc":"16451:17:1","nodeType":"YulAssignment","src":"16451:17:1","value":{"arguments":[{"name":"x","nativeSrc":"16463:1:1","nodeType":"YulIdentifier","src":"16463:1:1"},{"name":"y","nativeSrc":"16466:1:1","nodeType":"YulIdentifier","src":"16466:1:1"}],"functionName":{"name":"sub","nativeSrc":"16459:3:1","nodeType":"YulIdentifier","src":"16459:3:1"},"nativeSrc":"16459:9:1","nodeType":"YulFunctionCall","src":"16459:9:1"},"variableNames":[{"name":"diff","nativeSrc":"16451:4:1","nodeType":"YulIdentifier","src":"16451:4:1"}]},{"body":{"nativeSrc":"16492:22:1","nodeType":"YulBlock","src":"16492:22:1","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"16494:16:1","nodeType":"YulIdentifier","src":"16494:16:1"},"nativeSrc":"16494:18:1","nodeType":"YulFunctionCall","src":"16494:18:1"},"nativeSrc":"16494:18:1","nodeType":"YulExpressionStatement","src":"16494:18:1"}]},"condition":{"arguments":[{"name":"diff","nativeSrc":"16483:4:1","nodeType":"YulIdentifier","src":"16483:4:1"},{"name":"x","nativeSrc":"16489:1:1","nodeType":"YulIdentifier","src":"16489:1:1"}],"functionName":{"name":"gt","nativeSrc":"16480:2:1","nodeType":"YulIdentifier","src":"16480:2:1"},"nativeSrc":"16480:11:1","nodeType":"YulFunctionCall","src":"16480:11:1"},"nativeSrc":"16477:37:1","nodeType":"YulIf","src":"16477:37:1"}]},"name":"checked_sub_t_uint256","nativeSrc":"16392:128:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"16423:1:1","nodeType":"YulTypedName","src":"16423:1:1","type":""},{"name":"y","nativeSrc":"16426:1:1","nodeType":"YulTypedName","src":"16426:1:1","type":""}],"returnVariables":[{"name":"diff","nativeSrc":"16432:4:1","nodeType":"YulTypedName","src":"16432:4:1","type":""}],"src":"16392:128:1"},{"body":{"nativeSrc":"16699:170:1","nodeType":"YulBlock","src":"16699:170:1","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"16716:9:1","nodeType":"YulIdentifier","src":"16716:9:1"},{"kind":"number","nativeSrc":"16727:2:1","nodeType":"YulLiteral","src":"16727:2:1","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"16709:6:1","nodeType":"YulIdentifier","src":"16709:6:1"},"nativeSrc":"16709:21:1","nodeType":"YulFunctionCall","src":"16709:21:1"},"nativeSrc":"16709:21:1","nodeType":"YulExpressionStatement","src":"16709:21:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"16750:9:1","nodeType":"YulIdentifier","src":"16750:9:1"},{"kind":"number","nativeSrc":"16761:2:1","nodeType":"YulLiteral","src":"16761:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"16746:3:1","nodeType":"YulIdentifier","src":"16746:3:1"},"nativeSrc":"16746:18:1","nodeType":"YulFunctionCall","src":"16746:18:1"},{"kind":"number","nativeSrc":"16766:2:1","nodeType":"YulLiteral","src":"16766:2:1","type":"","value":"20"}],"functionName":{"name":"mstore","nativeSrc":"16739:6:1","nodeType":"YulIdentifier","src":"16739:6:1"},"nativeSrc":"16739:30:1","nodeType":"YulFunctionCall","src":"16739:30:1"},"nativeSrc":"16739:30:1","nodeType":"YulExpressionStatement","src":"16739:30:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"16789:9:1","nodeType":"YulIdentifier","src":"16789:9:1"},{"kind":"number","nativeSrc":"16800:2:1","nodeType":"YulLiteral","src":"16800:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"16785:3:1","nodeType":"YulIdentifier","src":"16785:3:1"},"nativeSrc":"16785:18:1","nodeType":"YulFunctionCall","src":"16785:18:1"},{"hexValue":"52454d41494e494e475f4c545f4d494e494d554d","kind":"string","nativeSrc":"16805:22:1","nodeType":"YulLiteral","src":"16805:22:1","type":"","value":"REMAINING_LT_MINIMUM"}],"functionName":{"name":"mstore","nativeSrc":"16778:6:1","nodeType":"YulIdentifier","src":"16778:6:1"},"nativeSrc":"16778:50:1","nodeType":"YulFunctionCall","src":"16778:50:1"},"nativeSrc":"16778:50:1","nodeType":"YulExpressionStatement","src":"16778:50:1"},{"nativeSrc":"16837:26:1","nodeType":"YulAssignment","src":"16837:26:1","value":{"arguments":[{"name":"headStart","nativeSrc":"16849:9:1","nodeType":"YulIdentifier","src":"16849:9:1"},{"kind":"number","nativeSrc":"16860:2:1","nodeType":"YulLiteral","src":"16860:2:1","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"16845:3:1","nodeType":"YulIdentifier","src":"16845:3:1"},"nativeSrc":"16845:18:1","nodeType":"YulFunctionCall","src":"16845:18:1"},"variableNames":[{"name":"tail","nativeSrc":"16837:4:1","nodeType":"YulIdentifier","src":"16837:4:1"}]}]},"name":"abi_encode_tuple_t_stringliteral_e42e312e91b2c7decf2c17d44adbe92f5dbd21dd2fe6c255c257f03ae436b4f4__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"16525:344:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"16676:9:1","nodeType":"YulTypedName","src":"16676:9:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"16690:4:1","nodeType":"YulTypedName","src":"16690:4:1","type":""}],"src":"16525:344:1"},{"body":{"nativeSrc":"16929:325:1","nodeType":"YulBlock","src":"16929:325:1","statements":[{"nativeSrc":"16939:22:1","nodeType":"YulAssignment","src":"16939:22:1","value":{"arguments":[{"kind":"number","nativeSrc":"16953:1:1","nodeType":"YulLiteral","src":"16953:1:1","type":"","value":"1"},{"name":"data","nativeSrc":"16956:4:1","nodeType":"YulIdentifier","src":"16956:4:1"}],"functionName":{"name":"shr","nativeSrc":"16949:3:1","nodeType":"YulIdentifier","src":"16949:3:1"},"nativeSrc":"16949:12:1","nodeType":"YulFunctionCall","src":"16949:12:1"},"variableNames":[{"name":"length","nativeSrc":"16939:6:1","nodeType":"YulIdentifier","src":"16939:6:1"}]},{"nativeSrc":"16970:38:1","nodeType":"YulVariableDeclaration","src":"16970:38:1","value":{"arguments":[{"name":"data","nativeSrc":"17000:4:1","nodeType":"YulIdentifier","src":"17000:4:1"},{"kind":"number","nativeSrc":"17006:1:1","nodeType":"YulLiteral","src":"17006:1:1","type":"","value":"1"}],"functionName":{"name":"and","nativeSrc":"16996:3:1","nodeType":"YulIdentifier","src":"16996:3:1"},"nativeSrc":"16996:12:1","nodeType":"YulFunctionCall","src":"16996:12:1"},"variables":[{"name":"outOfPlaceEncoding","nativeSrc":"16974:18:1","nodeType":"YulTypedName","src":"16974:18:1","type":""}]},{"body":{"nativeSrc":"17047:31:1","nodeType":"YulBlock","src":"17047:31:1","statements":[{"nativeSrc":"17049:27:1","nodeType":"YulAssignment","src":"17049:27:1","value":{"arguments":[{"name":"length","nativeSrc":"17063:6:1","nodeType":"YulIdentifier","src":"17063:6:1"},{"kind":"number","nativeSrc":"17071:4:1","nodeType":"YulLiteral","src":"17071:4:1","type":"","value":"0x7f"}],"functionName":{"name":"and","nativeSrc":"17059:3:1","nodeType":"YulIdentifier","src":"17059:3:1"},"nativeSrc":"17059:17:1","nodeType":"YulFunctionCall","src":"17059:17:1"},"variableNames":[{"name":"length","nativeSrc":"17049:6:1","nodeType":"YulIdentifier","src":"17049:6:1"}]}]},"condition":{"arguments":[{"name":"outOfPlaceEncoding","nativeSrc":"17027:18:1","nodeType":"YulIdentifier","src":"17027:18:1"}],"functionName":{"name":"iszero","nativeSrc":"17020:6:1","nodeType":"YulIdentifier","src":"17020:6:1"},"nativeSrc":"17020:26:1","nodeType":"YulFunctionCall","src":"17020:26:1"},"nativeSrc":"17017:61:1","nodeType":"YulIf","src":"17017:61:1"},{"body":{"nativeSrc":"17137:111:1","nodeType":"YulBlock","src":"17137:111:1","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"17158:1:1","nodeType":"YulLiteral","src":"17158:1:1","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"17165:3:1","nodeType":"YulLiteral","src":"17165:3:1","type":"","value":"224"},{"kind":"number","nativeSrc":"17170:10:1","nodeType":"YulLiteral","src":"17170:10:1","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"17161:3:1","nodeType":"YulIdentifier","src":"17161:3:1"},"nativeSrc":"17161:20:1","nodeType":"YulFunctionCall","src":"17161:20:1"}],"functionName":{"name":"mstore","nativeSrc":"17151:6:1","nodeType":"YulIdentifier","src":"17151:6:1"},"nativeSrc":"17151:31:1","nodeType":"YulFunctionCall","src":"17151:31:1"},"nativeSrc":"17151:31:1","nodeType":"YulExpressionStatement","src":"17151:31:1"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"17202:1:1","nodeType":"YulLiteral","src":"17202:1:1","type":"","value":"4"},{"kind":"number","nativeSrc":"17205:4:1","nodeType":"YulLiteral","src":"17205:4:1","type":"","value":"0x22"}],"functionName":{"name":"mstore","nativeSrc":"17195:6:1","nodeType":"YulIdentifier","src":"17195:6:1"},"nativeSrc":"17195:15:1","nodeType":"YulFunctionCall","src":"17195:15:1"},"nativeSrc":"17195:15:1","nodeType":"YulExpressionStatement","src":"17195:15:1"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"17230:1:1","nodeType":"YulLiteral","src":"17230:1:1","type":"","value":"0"},{"kind":"number","nativeSrc":"17233:4:1","nodeType":"YulLiteral","src":"17233:4:1","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"17223:6:1","nodeType":"YulIdentifier","src":"17223:6:1"},"nativeSrc":"17223:15:1","nodeType":"YulFunctionCall","src":"17223:15:1"},"nativeSrc":"17223:15:1","nodeType":"YulExpressionStatement","src":"17223:15:1"}]},"condition":{"arguments":[{"name":"outOfPlaceEncoding","nativeSrc":"17093:18:1","nodeType":"YulIdentifier","src":"17093:18:1"},{"arguments":[{"name":"length","nativeSrc":"17116:6:1","nodeType":"YulIdentifier","src":"17116:6:1"},{"kind":"number","nativeSrc":"17124:2:1","nodeType":"YulLiteral","src":"17124:2:1","type":"","value":"32"}],"functionName":{"name":"lt","nativeSrc":"17113:2:1","nodeType":"YulIdentifier","src":"17113:2:1"},"nativeSrc":"17113:14:1","nodeType":"YulFunctionCall","src":"17113:14:1"}],"functionName":{"name":"eq","nativeSrc":"17090:2:1","nodeType":"YulIdentifier","src":"17090:2:1"},"nativeSrc":"17090:38:1","nodeType":"YulFunctionCall","src":"17090:38:1"},"nativeSrc":"17087:161:1","nodeType":"YulIf","src":"17087:161:1"}]},"name":"extract_byte_array_length","nativeSrc":"16874:380:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"data","nativeSrc":"16909:4:1","nodeType":"YulTypedName","src":"16909:4:1","type":""}],"returnVariables":[{"name":"length","nativeSrc":"16918:6:1","nodeType":"YulTypedName","src":"16918:6:1","type":""}],"src":"16874:380:1"},{"body":{"nativeSrc":"17433:173:1","nodeType":"YulBlock","src":"17433:173:1","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"17450:9:1","nodeType":"YulIdentifier","src":"17450:9:1"},{"kind":"number","nativeSrc":"17461:2:1","nodeType":"YulLiteral","src":"17461:2:1","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"17443:6:1","nodeType":"YulIdentifier","src":"17443:6:1"},"nativeSrc":"17443:21:1","nodeType":"YulFunctionCall","src":"17443:21:1"},"nativeSrc":"17443:21:1","nodeType":"YulExpressionStatement","src":"17443:21:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"17484:9:1","nodeType":"YulIdentifier","src":"17484:9:1"},{"kind":"number","nativeSrc":"17495:2:1","nodeType":"YulLiteral","src":"17495:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"17480:3:1","nodeType":"YulIdentifier","src":"17480:3:1"},"nativeSrc":"17480:18:1","nodeType":"YulFunctionCall","src":"17480:18:1"},{"kind":"number","nativeSrc":"17500:2:1","nodeType":"YulLiteral","src":"17500:2:1","type":"","value":"23"}],"functionName":{"name":"mstore","nativeSrc":"17473:6:1","nodeType":"YulIdentifier","src":"17473:6:1"},"nativeSrc":"17473:30:1","nodeType":"YulFunctionCall","src":"17473:30:1"},"nativeSrc":"17473:30:1","nodeType":"YulExpressionStatement","src":"17473:30:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"17523:9:1","nodeType":"YulIdentifier","src":"17523:9:1"},{"kind":"number","nativeSrc":"17534:2:1","nodeType":"YulLiteral","src":"17534:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"17519:3:1","nodeType":"YulIdentifier","src":"17519:3:1"},"nativeSrc":"17519:18:1","nodeType":"YulFunctionCall","src":"17519:18:1"},{"hexValue":"43414c4c45525f4e4f545f434c41494d5f48454c504552","kind":"string","nativeSrc":"17539:25:1","nodeType":"YulLiteral","src":"17539:25:1","type":"","value":"CALLER_NOT_CLAIM_HELPER"}],"functionName":{"name":"mstore","nativeSrc":"17512:6:1","nodeType":"YulIdentifier","src":"17512:6:1"},"nativeSrc":"17512:53:1","nodeType":"YulFunctionCall","src":"17512:53:1"},"nativeSrc":"17512:53:1","nodeType":"YulExpressionStatement","src":"17512:53:1"},{"nativeSrc":"17574:26:1","nodeType":"YulAssignment","src":"17574:26:1","value":{"arguments":[{"name":"headStart","nativeSrc":"17586:9:1","nodeType":"YulIdentifier","src":"17586:9:1"},{"kind":"number","nativeSrc":"17597:2:1","nodeType":"YulLiteral","src":"17597:2:1","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"17582:3:1","nodeType":"YulIdentifier","src":"17582:3:1"},"nativeSrc":"17582:18:1","nodeType":"YulFunctionCall","src":"17582:18:1"},"variableNames":[{"name":"tail","nativeSrc":"17574:4:1","nodeType":"YulIdentifier","src":"17574:4:1"}]}]},"name":"abi_encode_tuple_t_stringliteral_2783cc94d2815145fca23f61c101ffc8ff8c6a01d5b51321a6791062a0684adf__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"17259:347:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"17410:9:1","nodeType":"YulTypedName","src":"17410:9:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"17424:4:1","nodeType":"YulTypedName","src":"17424:4:1","type":""}],"src":"17259:347:1"},{"body":{"nativeSrc":"17659:77:1","nodeType":"YulBlock","src":"17659:77:1","statements":[{"nativeSrc":"17669:16:1","nodeType":"YulAssignment","src":"17669:16:1","value":{"arguments":[{"name":"x","nativeSrc":"17680:1:1","nodeType":"YulIdentifier","src":"17680:1:1"},{"name":"y","nativeSrc":"17683:1:1","nodeType":"YulIdentifier","src":"17683:1:1"}],"functionName":{"name":"add","nativeSrc":"17676:3:1","nodeType":"YulIdentifier","src":"17676:3:1"},"nativeSrc":"17676:9:1","nodeType":"YulFunctionCall","src":"17676:9:1"},"variableNames":[{"name":"sum","nativeSrc":"17669:3:1","nodeType":"YulIdentifier","src":"17669:3:1"}]},{"body":{"nativeSrc":"17708:22:1","nodeType":"YulBlock","src":"17708:22:1","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"17710:16:1","nodeType":"YulIdentifier","src":"17710:16:1"},"nativeSrc":"17710:18:1","nodeType":"YulFunctionCall","src":"17710:18:1"},"nativeSrc":"17710:18:1","nodeType":"YulExpressionStatement","src":"17710:18:1"}]},"condition":{"arguments":[{"name":"x","nativeSrc":"17700:1:1","nodeType":"YulIdentifier","src":"17700:1:1"},{"name":"sum","nativeSrc":"17703:3:1","nodeType":"YulIdentifier","src":"17703:3:1"}],"functionName":{"name":"gt","nativeSrc":"17697:2:1","nodeType":"YulIdentifier","src":"17697:2:1"},"nativeSrc":"17697:10:1","nodeType":"YulFunctionCall","src":"17697:10:1"},"nativeSrc":"17694:36:1","nodeType":"YulIf","src":"17694:36:1"}]},"name":"checked_add_t_uint256","nativeSrc":"17611:125:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"17642:1:1","nodeType":"YulTypedName","src":"17642:1:1","type":""},{"name":"y","nativeSrc":"17645:1:1","nodeType":"YulTypedName","src":"17645:1:1","type":""}],"returnVariables":[{"name":"sum","nativeSrc":"17651:3:1","nodeType":"YulTypedName","src":"17651:3:1","type":""}],"src":"17611:125:1"},{"body":{"nativeSrc":"17915:167:1","nodeType":"YulBlock","src":"17915:167:1","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"17932:9:1","nodeType":"YulIdentifier","src":"17932:9:1"},{"kind":"number","nativeSrc":"17943:2:1","nodeType":"YulLiteral","src":"17943:2:1","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"17925:6:1","nodeType":"YulIdentifier","src":"17925:6:1"},"nativeSrc":"17925:21:1","nodeType":"YulFunctionCall","src":"17925:21:1"},"nativeSrc":"17925:21:1","nodeType":"YulExpressionStatement","src":"17925:21:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"17966:9:1","nodeType":"YulIdentifier","src":"17966:9:1"},{"kind":"number","nativeSrc":"17977:2:1","nodeType":"YulLiteral","src":"17977:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"17962:3:1","nodeType":"YulIdentifier","src":"17962:3:1"},"nativeSrc":"17962:18:1","nodeType":"YulFunctionCall","src":"17962:18:1"},{"kind":"number","nativeSrc":"17982:2:1","nodeType":"YulLiteral","src":"17982:2:1","type":"","value":"17"}],"functionName":{"name":"mstore","nativeSrc":"17955:6:1","nodeType":"YulIdentifier","src":"17955:6:1"},"nativeSrc":"17955:30:1","nodeType":"YulFunctionCall","src":"17955:30:1"},"nativeSrc":"17955:30:1","nodeType":"YulExpressionStatement","src":"17955:30:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"18005:9:1","nodeType":"YulIdentifier","src":"18005:9:1"},{"kind":"number","nativeSrc":"18016:2:1","nodeType":"YulLiteral","src":"18016:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"18001:3:1","nodeType":"YulIdentifier","src":"18001:3:1"},"nativeSrc":"18001:18:1","nodeType":"YulFunctionCall","src":"18001:18:1"},{"hexValue":"414d4f554e545f4c545f4d494e494d554d","kind":"string","nativeSrc":"18021:19:1","nodeType":"YulLiteral","src":"18021:19:1","type":"","value":"AMOUNT_LT_MINIMUM"}],"functionName":{"name":"mstore","nativeSrc":"17994:6:1","nodeType":"YulIdentifier","src":"17994:6:1"},"nativeSrc":"17994:47:1","nodeType":"YulFunctionCall","src":"17994:47:1"},"nativeSrc":"17994:47:1","nodeType":"YulExpressionStatement","src":"17994:47:1"},{"nativeSrc":"18050:26:1","nodeType":"YulAssignment","src":"18050:26:1","value":{"arguments":[{"name":"headStart","nativeSrc":"18062:9:1","nodeType":"YulIdentifier","src":"18062:9:1"},{"kind":"number","nativeSrc":"18073:2:1","nodeType":"YulLiteral","src":"18073:2:1","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"18058:3:1","nodeType":"YulIdentifier","src":"18058:3:1"},"nativeSrc":"18058:18:1","nodeType":"YulFunctionCall","src":"18058:18:1"},"variableNames":[{"name":"tail","nativeSrc":"18050:4:1","nodeType":"YulIdentifier","src":"18050:4:1"}]}]},"name":"abi_encode_tuple_t_stringliteral_621f50d6436d0a4dd01bdd0a290cbd90a33871f85d2f75ec24041520fb128387__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"17741:341:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"17892:9:1","nodeType":"YulTypedName","src":"17892:9:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"17906:4:1","nodeType":"YulTypedName","src":"17906:4:1","type":""}],"src":"17741:341:1"},{"body":{"nativeSrc":"18261:167:1","nodeType":"YulBlock","src":"18261:167:1","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"18278:9:1","nodeType":"YulIdentifier","src":"18278:9:1"},{"kind":"number","nativeSrc":"18289:2:1","nodeType":"YulLiteral","src":"18289:2:1","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"18271:6:1","nodeType":"YulIdentifier","src":"18271:6:1"},"nativeSrc":"18271:21:1","nodeType":"YulFunctionCall","src":"18271:21:1"},"nativeSrc":"18271:21:1","nodeType":"YulExpressionStatement","src":"18271:21:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"18312:9:1","nodeType":"YulIdentifier","src":"18312:9:1"},{"kind":"number","nativeSrc":"18323:2:1","nodeType":"YulLiteral","src":"18323:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"18308:3:1","nodeType":"YulIdentifier","src":"18308:3:1"},"nativeSrc":"18308:18:1","nodeType":"YulFunctionCall","src":"18308:18:1"},{"kind":"number","nativeSrc":"18328:2:1","nodeType":"YulLiteral","src":"18328:2:1","type":"","value":"17"}],"functionName":{"name":"mstore","nativeSrc":"18301:6:1","nodeType":"YulIdentifier","src":"18301:6:1"},"nativeSrc":"18301:30:1","nodeType":"YulFunctionCall","src":"18301:30:1"},"nativeSrc":"18301:30:1","nodeType":"YulExpressionStatement","src":"18301:30:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"18351:9:1","nodeType":"YulIdentifier","src":"18351:9:1"},{"kind":"number","nativeSrc":"18362:2:1","nodeType":"YulLiteral","src":"18362:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"18347:3:1","nodeType":"YulIdentifier","src":"18347:3:1"},"nativeSrc":"18347:18:1","nodeType":"YulFunctionCall","src":"18347:18:1"},{"hexValue":"5348415245535f4c545f4d494e494d554d","kind":"string","nativeSrc":"18367:19:1","nodeType":"YulLiteral","src":"18367:19:1","type":"","value":"SHARES_LT_MINIMUM"}],"functionName":{"name":"mstore","nativeSrc":"18340:6:1","nodeType":"YulIdentifier","src":"18340:6:1"},"nativeSrc":"18340:47:1","nodeType":"YulFunctionCall","src":"18340:47:1"},"nativeSrc":"18340:47:1","nodeType":"YulExpressionStatement","src":"18340:47:1"},{"nativeSrc":"18396:26:1","nodeType":"YulAssignment","src":"18396:26:1","value":{"arguments":[{"name":"headStart","nativeSrc":"18408:9:1","nodeType":"YulIdentifier","src":"18408:9:1"},{"kind":"number","nativeSrc":"18419:2:1","nodeType":"YulLiteral","src":"18419:2:1","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"18404:3:1","nodeType":"YulIdentifier","src":"18404:3:1"},"nativeSrc":"18404:18:1","nodeType":"YulFunctionCall","src":"18404:18:1"},"variableNames":[{"name":"tail","nativeSrc":"18396:4:1","nodeType":"YulIdentifier","src":"18396:4:1"}]}]},"name":"abi_encode_tuple_t_stringliteral_5407ed0094c102003a23cbee6bcb44020e6bb1be4fa76486e3d76e28e8ab8c65__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"18087:341:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"18238:9:1","nodeType":"YulTypedName","src":"18238:9:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"18252:4:1","nodeType":"YulTypedName","src":"18252:4:1","type":""}],"src":"18087:341:1"},{"body":{"nativeSrc":"18485:116:1","nodeType":"YulBlock","src":"18485:116:1","statements":[{"nativeSrc":"18495:20:1","nodeType":"YulAssignment","src":"18495:20:1","value":{"arguments":[{"name":"x","nativeSrc":"18510:1:1","nodeType":"YulIdentifier","src":"18510:1:1"},{"name":"y","nativeSrc":"18513:1:1","nodeType":"YulIdentifier","src":"18513:1:1"}],"functionName":{"name":"mul","nativeSrc":"18506:3:1","nodeType":"YulIdentifier","src":"18506:3:1"},"nativeSrc":"18506:9:1","nodeType":"YulFunctionCall","src":"18506:9:1"},"variableNames":[{"name":"product","nativeSrc":"18495:7:1","nodeType":"YulIdentifier","src":"18495:7:1"}]},{"body":{"nativeSrc":"18573:22:1","nodeType":"YulBlock","src":"18573:22:1","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"18575:16:1","nodeType":"YulIdentifier","src":"18575:16:1"},"nativeSrc":"18575:18:1","nodeType":"YulFunctionCall","src":"18575:18:1"},"nativeSrc":"18575:18:1","nodeType":"YulExpressionStatement","src":"18575:18:1"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"x","nativeSrc":"18544:1:1","nodeType":"YulIdentifier","src":"18544:1:1"}],"functionName":{"name":"iszero","nativeSrc":"18537:6:1","nodeType":"YulIdentifier","src":"18537:6:1"},"nativeSrc":"18537:9:1","nodeType":"YulFunctionCall","src":"18537:9:1"},{"arguments":[{"name":"y","nativeSrc":"18551:1:1","nodeType":"YulIdentifier","src":"18551:1:1"},{"arguments":[{"name":"product","nativeSrc":"18558:7:1","nodeType":"YulIdentifier","src":"18558:7:1"},{"name":"x","nativeSrc":"18567:1:1","nodeType":"YulIdentifier","src":"18567:1:1"}],"functionName":{"name":"div","nativeSrc":"18554:3:1","nodeType":"YulIdentifier","src":"18554:3:1"},"nativeSrc":"18554:15:1","nodeType":"YulFunctionCall","src":"18554:15:1"}],"functionName":{"name":"eq","nativeSrc":"18548:2:1","nodeType":"YulIdentifier","src":"18548:2:1"},"nativeSrc":"18548:22:1","nodeType":"YulFunctionCall","src":"18548:22:1"}],"functionName":{"name":"or","nativeSrc":"18534:2:1","nodeType":"YulIdentifier","src":"18534:2:1"},"nativeSrc":"18534:37:1","nodeType":"YulFunctionCall","src":"18534:37:1"}],"functionName":{"name":"iszero","nativeSrc":"18527:6:1","nodeType":"YulIdentifier","src":"18527:6:1"},"nativeSrc":"18527:45:1","nodeType":"YulFunctionCall","src":"18527:45:1"},"nativeSrc":"18524:71:1","nodeType":"YulIf","src":"18524:71:1"}]},"name":"checked_mul_t_uint256","nativeSrc":"18433:168:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"18464:1:1","nodeType":"YulTypedName","src":"18464:1:1","type":""},{"name":"y","nativeSrc":"18467:1:1","nodeType":"YulTypedName","src":"18467:1:1","type":""}],"returnVariables":[{"name":"product","nativeSrc":"18473:7:1","nodeType":"YulTypedName","src":"18473:7:1","type":""}],"src":"18433:168:1"},{"body":{"nativeSrc":"18638:95:1","nodeType":"YulBlock","src":"18638:95:1","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"18655:1:1","nodeType":"YulLiteral","src":"18655:1:1","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"18662:3:1","nodeType":"YulLiteral","src":"18662:3:1","type":"","value":"224"},{"kind":"number","nativeSrc":"18667:10:1","nodeType":"YulLiteral","src":"18667:10:1","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"18658:3:1","nodeType":"YulIdentifier","src":"18658:3:1"},"nativeSrc":"18658:20:1","nodeType":"YulFunctionCall","src":"18658:20:1"}],"functionName":{"name":"mstore","nativeSrc":"18648:6:1","nodeType":"YulIdentifier","src":"18648:6:1"},"nativeSrc":"18648:31:1","nodeType":"YulFunctionCall","src":"18648:31:1"},"nativeSrc":"18648:31:1","nodeType":"YulExpressionStatement","src":"18648:31:1"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"18695:1:1","nodeType":"YulLiteral","src":"18695:1:1","type":"","value":"4"},{"kind":"number","nativeSrc":"18698:4:1","nodeType":"YulLiteral","src":"18698:4:1","type":"","value":"0x12"}],"functionName":{"name":"mstore","nativeSrc":"18688:6:1","nodeType":"YulIdentifier","src":"18688:6:1"},"nativeSrc":"18688:15:1","nodeType":"YulFunctionCall","src":"18688:15:1"},"nativeSrc":"18688:15:1","nodeType":"YulExpressionStatement","src":"18688:15:1"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"18719:1:1","nodeType":"YulLiteral","src":"18719:1:1","type":"","value":"0"},{"kind":"number","nativeSrc":"18722:4:1","nodeType":"YulLiteral","src":"18722:4:1","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"18712:6:1","nodeType":"YulIdentifier","src":"18712:6:1"},"nativeSrc":"18712:15:1","nodeType":"YulFunctionCall","src":"18712:15:1"},"nativeSrc":"18712:15:1","nodeType":"YulExpressionStatement","src":"18712:15:1"}]},"name":"panic_error_0x12","nativeSrc":"18606:127:1","nodeType":"YulFunctionDefinition","src":"18606:127:1"},{"body":{"nativeSrc":"18784:171:1","nodeType":"YulBlock","src":"18784:171:1","statements":[{"body":{"nativeSrc":"18815:111:1","nodeType":"YulBlock","src":"18815:111:1","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"18836:1:1","nodeType":"YulLiteral","src":"18836:1:1","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"18843:3:1","nodeType":"YulLiteral","src":"18843:3:1","type":"","value":"224"},{"kind":"number","nativeSrc":"18848:10:1","nodeType":"YulLiteral","src":"18848:10:1","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"18839:3:1","nodeType":"YulIdentifier","src":"18839:3:1"},"nativeSrc":"18839:20:1","nodeType":"YulFunctionCall","src":"18839:20:1"}],"functionName":{"name":"mstore","nativeSrc":"18829:6:1","nodeType":"YulIdentifier","src":"18829:6:1"},"nativeSrc":"18829:31:1","nodeType":"YulFunctionCall","src":"18829:31:1"},"nativeSrc":"18829:31:1","nodeType":"YulExpressionStatement","src":"18829:31:1"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"18880:1:1","nodeType":"YulLiteral","src":"18880:1:1","type":"","value":"4"},{"kind":"number","nativeSrc":"18883:4:1","nodeType":"YulLiteral","src":"18883:4:1","type":"","value":"0x12"}],"functionName":{"name":"mstore","nativeSrc":"18873:6:1","nodeType":"YulIdentifier","src":"18873:6:1"},"nativeSrc":"18873:15:1","nodeType":"YulFunctionCall","src":"18873:15:1"},"nativeSrc":"18873:15:1","nodeType":"YulExpressionStatement","src":"18873:15:1"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"18908:1:1","nodeType":"YulLiteral","src":"18908:1:1","type":"","value":"0"},{"kind":"number","nativeSrc":"18911:4:1","nodeType":"YulLiteral","src":"18911:4:1","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"18901:6:1","nodeType":"YulIdentifier","src":"18901:6:1"},"nativeSrc":"18901:15:1","nodeType":"YulFunctionCall","src":"18901:15:1"},"nativeSrc":"18901:15:1","nodeType":"YulExpressionStatement","src":"18901:15:1"}]},"condition":{"arguments":[{"name":"y","nativeSrc":"18804:1:1","nodeType":"YulIdentifier","src":"18804:1:1"}],"functionName":{"name":"iszero","nativeSrc":"18797:6:1","nodeType":"YulIdentifier","src":"18797:6:1"},"nativeSrc":"18797:9:1","nodeType":"YulFunctionCall","src":"18797:9:1"},"nativeSrc":"18794:132:1","nodeType":"YulIf","src":"18794:132:1"},{"nativeSrc":"18935:14:1","nodeType":"YulAssignment","src":"18935:14:1","value":{"arguments":[{"name":"x","nativeSrc":"18944:1:1","nodeType":"YulIdentifier","src":"18944:1:1"},{"name":"y","nativeSrc":"18947:1:1","nodeType":"YulIdentifier","src":"18947:1:1"}],"functionName":{"name":"div","nativeSrc":"18940:3:1","nodeType":"YulIdentifier","src":"18940:3:1"},"nativeSrc":"18940:9:1","nodeType":"YulFunctionCall","src":"18940:9:1"},"variableNames":[{"name":"r","nativeSrc":"18935:1:1","nodeType":"YulIdentifier","src":"18935:1:1"}]}]},"name":"checked_div_t_uint256","nativeSrc":"18738:217:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"18769:1:1","nodeType":"YulTypedName","src":"18769:1:1","type":""},{"name":"y","nativeSrc":"18772:1:1","nodeType":"YulTypedName","src":"18772:1:1","type":""}],"returnVariables":[{"name":"r","nativeSrc":"18778:1:1","nodeType":"YulTypedName","src":"18778:1:1","type":""}],"src":"18738:217:1"},{"body":{"nativeSrc":"19225:401:1","nodeType":"YulBlock","src":"19225:401:1","statements":[{"nativeSrc":"19235:27:1","nodeType":"YulAssignment","src":"19235:27:1","value":{"arguments":[{"name":"headStart","nativeSrc":"19247:9:1","nodeType":"YulIdentifier","src":"19247:9:1"},{"kind":"number","nativeSrc":"19258:3:1","nodeType":"YulLiteral","src":"19258:3:1","type":"","value":"224"}],"functionName":{"name":"add","nativeSrc":"19243:3:1","nodeType":"YulIdentifier","src":"19243:3:1"},"nativeSrc":"19243:19:1","nodeType":"YulFunctionCall","src":"19243:19:1"},"variableNames":[{"name":"tail","nativeSrc":"19235:4:1","nodeType":"YulIdentifier","src":"19235:4:1"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"19278:9:1","nodeType":"YulIdentifier","src":"19278:9:1"},{"arguments":[{"name":"value0","nativeSrc":"19293:6:1","nodeType":"YulIdentifier","src":"19293:6:1"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"19309:3:1","nodeType":"YulLiteral","src":"19309:3:1","type":"","value":"160"},{"kind":"number","nativeSrc":"19314:1:1","nodeType":"YulLiteral","src":"19314:1:1","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"19305:3:1","nodeType":"YulIdentifier","src":"19305:3:1"},"nativeSrc":"19305:11:1","nodeType":"YulFunctionCall","src":"19305:11:1"},{"kind":"number","nativeSrc":"19318:1:1","nodeType":"YulLiteral","src":"19318:1:1","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"19301:3:1","nodeType":"YulIdentifier","src":"19301:3:1"},"nativeSrc":"19301:19:1","nodeType":"YulFunctionCall","src":"19301:19:1"}],"functionName":{"name":"and","nativeSrc":"19289:3:1","nodeType":"YulIdentifier","src":"19289:3:1"},"nativeSrc":"19289:32:1","nodeType":"YulFunctionCall","src":"19289:32:1"}],"functionName":{"name":"mstore","nativeSrc":"19271:6:1","nodeType":"YulIdentifier","src":"19271:6:1"},"nativeSrc":"19271:51:1","nodeType":"YulFunctionCall","src":"19271:51:1"},"nativeSrc":"19271:51:1","nodeType":"YulExpressionStatement","src":"19271:51:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"19342:9:1","nodeType":"YulIdentifier","src":"19342:9:1"},{"kind":"number","nativeSrc":"19353:2:1","nodeType":"YulLiteral","src":"19353:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"19338:3:1","nodeType":"YulIdentifier","src":"19338:3:1"},"nativeSrc":"19338:18:1","nodeType":"YulFunctionCall","src":"19338:18:1"},{"arguments":[{"name":"value1","nativeSrc":"19362:6:1","nodeType":"YulIdentifier","src":"19362:6:1"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"19378:3:1","nodeType":"YulLiteral","src":"19378:3:1","type":"","value":"160"},{"kind":"number","nativeSrc":"19383:1:1","nodeType":"YulLiteral","src":"19383:1:1","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"19374:3:1","nodeType":"YulIdentifier","src":"19374:3:1"},"nativeSrc":"19374:11:1","nodeType":"YulFunctionCall","src":"19374:11:1"},{"kind":"number","nativeSrc":"19387:1:1","nodeType":"YulLiteral","src":"19387:1:1","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"19370:3:1","nodeType":"YulIdentifier","src":"19370:3:1"},"nativeSrc":"19370:19:1","nodeType":"YulFunctionCall","src":"19370:19:1"}],"functionName":{"name":"and","nativeSrc":"19358:3:1","nodeType":"YulIdentifier","src":"19358:3:1"},"nativeSrc":"19358:32:1","nodeType":"YulFunctionCall","src":"19358:32:1"}],"functionName":{"name":"mstore","nativeSrc":"19331:6:1","nodeType":"YulIdentifier","src":"19331:6:1"},"nativeSrc":"19331:60:1","nodeType":"YulFunctionCall","src":"19331:60:1"},"nativeSrc":"19331:60:1","nodeType":"YulExpressionStatement","src":"19331:60:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"19411:9:1","nodeType":"YulIdentifier","src":"19411:9:1"},{"kind":"number","nativeSrc":"19422:2:1","nodeType":"YulLiteral","src":"19422:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"19407:3:1","nodeType":"YulIdentifier","src":"19407:3:1"},"nativeSrc":"19407:18:1","nodeType":"YulFunctionCall","src":"19407:18:1"},{"name":"value2","nativeSrc":"19427:6:1","nodeType":"YulIdentifier","src":"19427:6:1"}],"functionName":{"name":"mstore","nativeSrc":"19400:6:1","nodeType":"YulIdentifier","src":"19400:6:1"},"nativeSrc":"19400:34:1","nodeType":"YulFunctionCall","src":"19400:34:1"},"nativeSrc":"19400:34:1","nodeType":"YulExpressionStatement","src":"19400:34:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"19454:9:1","nodeType":"YulIdentifier","src":"19454:9:1"},{"kind":"number","nativeSrc":"19465:2:1","nodeType":"YulLiteral","src":"19465:2:1","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"19450:3:1","nodeType":"YulIdentifier","src":"19450:3:1"},"nativeSrc":"19450:18:1","nodeType":"YulFunctionCall","src":"19450:18:1"},{"name":"value3","nativeSrc":"19470:6:1","nodeType":"YulIdentifier","src":"19470:6:1"}],"functionName":{"name":"mstore","nativeSrc":"19443:6:1","nodeType":"YulIdentifier","src":"19443:6:1"},"nativeSrc":"19443:34:1","nodeType":"YulFunctionCall","src":"19443:34:1"},"nativeSrc":"19443:34:1","nodeType":"YulExpressionStatement","src":"19443:34:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"19497:9:1","nodeType":"YulIdentifier","src":"19497:9:1"},{"kind":"number","nativeSrc":"19508:3:1","nodeType":"YulLiteral","src":"19508:3:1","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"19493:3:1","nodeType":"YulIdentifier","src":"19493:3:1"},"nativeSrc":"19493:19:1","nodeType":"YulFunctionCall","src":"19493:19:1"},{"arguments":[{"name":"value4","nativeSrc":"19518:6:1","nodeType":"YulIdentifier","src":"19518:6:1"},{"kind":"number","nativeSrc":"19526:4:1","nodeType":"YulLiteral","src":"19526:4:1","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"19514:3:1","nodeType":"YulIdentifier","src":"19514:3:1"},"nativeSrc":"19514:17:1","nodeType":"YulFunctionCall","src":"19514:17:1"}],"functionName":{"name":"mstore","nativeSrc":"19486:6:1","nodeType":"YulIdentifier","src":"19486:6:1"},"nativeSrc":"19486:46:1","nodeType":"YulFunctionCall","src":"19486:46:1"},"nativeSrc":"19486:46:1","nodeType":"YulExpressionStatement","src":"19486:46:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"19552:9:1","nodeType":"YulIdentifier","src":"19552:9:1"},{"kind":"number","nativeSrc":"19563:3:1","nodeType":"YulLiteral","src":"19563:3:1","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"19548:3:1","nodeType":"YulIdentifier","src":"19548:3:1"},"nativeSrc":"19548:19:1","nodeType":"YulFunctionCall","src":"19548:19:1"},{"name":"value5","nativeSrc":"19569:6:1","nodeType":"YulIdentifier","src":"19569:6:1"}],"functionName":{"name":"mstore","nativeSrc":"19541:6:1","nodeType":"YulIdentifier","src":"19541:6:1"},"nativeSrc":"19541:35:1","nodeType":"YulFunctionCall","src":"19541:35:1"},"nativeSrc":"19541:35:1","nodeType":"YulExpressionStatement","src":"19541:35:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"19596:9:1","nodeType":"YulIdentifier","src":"19596:9:1"},{"kind":"number","nativeSrc":"19607:3:1","nodeType":"YulLiteral","src":"19607:3:1","type":"","value":"192"}],"functionName":{"name":"add","nativeSrc":"19592:3:1","nodeType":"YulIdentifier","src":"19592:3:1"},"nativeSrc":"19592:19:1","nodeType":"YulFunctionCall","src":"19592:19:1"},{"name":"value6","nativeSrc":"19613:6:1","nodeType":"YulIdentifier","src":"19613:6:1"}],"functionName":{"name":"mstore","nativeSrc":"19585:6:1","nodeType":"YulIdentifier","src":"19585:6:1"},"nativeSrc":"19585:35:1","nodeType":"YulFunctionCall","src":"19585:35:1"},"nativeSrc":"19585:35:1","nodeType":"YulExpressionStatement","src":"19585:35:1"}]},"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","nativeSrc":"18960:666:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"19146:9:1","nodeType":"YulTypedName","src":"19146:9:1","type":""},{"name":"value6","nativeSrc":"19157:6:1","nodeType":"YulTypedName","src":"19157:6:1","type":""},{"name":"value5","nativeSrc":"19165:6:1","nodeType":"YulTypedName","src":"19165:6:1","type":""},{"name":"value4","nativeSrc":"19173:6:1","nodeType":"YulTypedName","src":"19173:6:1","type":""},{"name":"value3","nativeSrc":"19181:6:1","nodeType":"YulTypedName","src":"19181:6:1","type":""},{"name":"value2","nativeSrc":"19189:6:1","nodeType":"YulTypedName","src":"19189:6:1","type":""},{"name":"value1","nativeSrc":"19197:6:1","nodeType":"YulTypedName","src":"19197:6:1","type":""},{"name":"value0","nativeSrc":"19205:6:1","nodeType":"YulTypedName","src":"19205:6:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"19216:4:1","nodeType":"YulTypedName","src":"19216:4:1","type":""}],"src":"18960:666:1"},{"body":{"nativeSrc":"19805:175:1","nodeType":"YulBlock","src":"19805:175:1","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"19822:9:1","nodeType":"YulIdentifier","src":"19822:9:1"},{"kind":"number","nativeSrc":"19833:2:1","nodeType":"YulLiteral","src":"19833:2:1","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"19815:6:1","nodeType":"YulIdentifier","src":"19815:6:1"},"nativeSrc":"19815:21:1","nodeType":"YulFunctionCall","src":"19815:21:1"},"nativeSrc":"19815:21:1","nodeType":"YulExpressionStatement","src":"19815:21:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"19856:9:1","nodeType":"YulIdentifier","src":"19856:9:1"},{"kind":"number","nativeSrc":"19867:2:1","nodeType":"YulLiteral","src":"19867:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"19852:3:1","nodeType":"YulIdentifier","src":"19852:3:1"},"nativeSrc":"19852:18:1","nodeType":"YulFunctionCall","src":"19852:18:1"},{"kind":"number","nativeSrc":"19872:2:1","nodeType":"YulLiteral","src":"19872:2:1","type":"","value":"25"}],"functionName":{"name":"mstore","nativeSrc":"19845:6:1","nodeType":"YulIdentifier","src":"19845:6:1"},"nativeSrc":"19845:30:1","nodeType":"YulFunctionCall","src":"19845:30:1"},"nativeSrc":"19845:30:1","nodeType":"YulExpressionStatement","src":"19845:30:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"19895:9:1","nodeType":"YulIdentifier","src":"19895:9:1"},{"kind":"number","nativeSrc":"19906:2:1","nodeType":"YulLiteral","src":"19906:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"19891:3:1","nodeType":"YulIdentifier","src":"19891:3:1"},"nativeSrc":"19891:18:1","nodeType":"YulFunctionCall","src":"19891:18:1"},{"hexValue":"43414c4c45525f4e4f545f434f4f4c444f574e5f41444d494e","kind":"string","nativeSrc":"19911:27:1","nodeType":"YulLiteral","src":"19911:27:1","type":"","value":"CALLER_NOT_COOLDOWN_ADMIN"}],"functionName":{"name":"mstore","nativeSrc":"19884:6:1","nodeType":"YulIdentifier","src":"19884:6:1"},"nativeSrc":"19884:55:1","nodeType":"YulFunctionCall","src":"19884:55:1"},"nativeSrc":"19884:55:1","nodeType":"YulExpressionStatement","src":"19884:55:1"},{"nativeSrc":"19948:26:1","nodeType":"YulAssignment","src":"19948:26:1","value":{"arguments":[{"name":"headStart","nativeSrc":"19960:9:1","nodeType":"YulIdentifier","src":"19960:9:1"},{"kind":"number","nativeSrc":"19971:2:1","nodeType":"YulLiteral","src":"19971:2:1","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"19956:3:1","nodeType":"YulIdentifier","src":"19956:3:1"},"nativeSrc":"19956:18:1","nodeType":"YulFunctionCall","src":"19956:18:1"},"variableNames":[{"name":"tail","nativeSrc":"19948:4:1","nodeType":"YulIdentifier","src":"19948:4:1"}]}]},"name":"abi_encode_tuple_t_stringliteral_d49ebb848086492947fc93c9ef60d839aa895187a88d01c0575e0469055263d2__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"19631:349:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"19782:9:1","nodeType":"YulTypedName","src":"19782:9:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"19796:4:1","nodeType":"YulTypedName","src":"19796:4:1","type":""}],"src":"19631:349:1"},{"body":{"nativeSrc":"20017:95:1","nodeType":"YulBlock","src":"20017:95:1","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"20034:1:1","nodeType":"YulLiteral","src":"20034:1:1","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"20041:3:1","nodeType":"YulLiteral","src":"20041:3:1","type":"","value":"224"},{"kind":"number","nativeSrc":"20046:10:1","nodeType":"YulLiteral","src":"20046:10:1","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"20037:3:1","nodeType":"YulIdentifier","src":"20037:3:1"},"nativeSrc":"20037:20:1","nodeType":"YulFunctionCall","src":"20037:20:1"}],"functionName":{"name":"mstore","nativeSrc":"20027:6:1","nodeType":"YulIdentifier","src":"20027:6:1"},"nativeSrc":"20027:31:1","nodeType":"YulFunctionCall","src":"20027:31:1"},"nativeSrc":"20027:31:1","nodeType":"YulExpressionStatement","src":"20027:31:1"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"20074:1:1","nodeType":"YulLiteral","src":"20074:1:1","type":"","value":"4"},{"kind":"number","nativeSrc":"20077:4:1","nodeType":"YulLiteral","src":"20077:4:1","type":"","value":"0x32"}],"functionName":{"name":"mstore","nativeSrc":"20067:6:1","nodeType":"YulIdentifier","src":"20067:6:1"},"nativeSrc":"20067:15:1","nodeType":"YulFunctionCall","src":"20067:15:1"},"nativeSrc":"20067:15:1","nodeType":"YulExpressionStatement","src":"20067:15:1"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"20098:1:1","nodeType":"YulLiteral","src":"20098:1:1","type":"","value":"0"},{"kind":"number","nativeSrc":"20101:4:1","nodeType":"YulLiteral","src":"20101:4:1","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"20091:6:1","nodeType":"YulIdentifier","src":"20091:6:1"},"nativeSrc":"20091:15:1","nodeType":"YulFunctionCall","src":"20091:15:1"},"nativeSrc":"20091:15:1","nodeType":"YulExpressionStatement","src":"20091:15:1"}]},"name":"panic_error_0x32","nativeSrc":"19985:127:1","nodeType":"YulFunctionDefinition","src":"19985:127:1"},{"body":{"nativeSrc":"20291:227:1","nodeType":"YulBlock","src":"20291:227:1","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"20308:9:1","nodeType":"YulIdentifier","src":"20308:9:1"},{"kind":"number","nativeSrc":"20319:2:1","nodeType":"YulLiteral","src":"20319:2:1","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"20301:6:1","nodeType":"YulIdentifier","src":"20301:6:1"},"nativeSrc":"20301:21:1","nodeType":"YulFunctionCall","src":"20301:21:1"},"nativeSrc":"20301:21:1","nodeType":"YulExpressionStatement","src":"20301:21:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"20342:9:1","nodeType":"YulIdentifier","src":"20342:9:1"},{"kind":"number","nativeSrc":"20353:2:1","nodeType":"YulLiteral","src":"20353:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"20338:3:1","nodeType":"YulIdentifier","src":"20338:3:1"},"nativeSrc":"20338:18:1","nodeType":"YulFunctionCall","src":"20338:18:1"},{"kind":"number","nativeSrc":"20358:2:1","nodeType":"YulLiteral","src":"20358:2:1","type":"","value":"37"}],"functionName":{"name":"mstore","nativeSrc":"20331:6:1","nodeType":"YulIdentifier","src":"20331:6:1"},"nativeSrc":"20331:30:1","nodeType":"YulFunctionCall","src":"20331:30:1"},"nativeSrc":"20331:30:1","nodeType":"YulExpressionStatement","src":"20331:30:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"20381:9:1","nodeType":"YulIdentifier","src":"20381:9:1"},{"kind":"number","nativeSrc":"20392:2:1","nodeType":"YulLiteral","src":"20392:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"20377:3:1","nodeType":"YulIdentifier","src":"20377:3:1"},"nativeSrc":"20377:18:1","nodeType":"YulFunctionCall","src":"20377:18:1"},{"hexValue":"45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77","kind":"string","nativeSrc":"20397:34:1","nodeType":"YulLiteral","src":"20397:34:1","type":"","value":"ERC20: decreased allowance below"}],"functionName":{"name":"mstore","nativeSrc":"20370:6:1","nodeType":"YulIdentifier","src":"20370:6:1"},"nativeSrc":"20370:62:1","nodeType":"YulFunctionCall","src":"20370:62:1"},"nativeSrc":"20370:62:1","nodeType":"YulExpressionStatement","src":"20370:62:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"20452:9:1","nodeType":"YulIdentifier","src":"20452:9:1"},{"kind":"number","nativeSrc":"20463:2:1","nodeType":"YulLiteral","src":"20463:2:1","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"20448:3:1","nodeType":"YulIdentifier","src":"20448:3:1"},"nativeSrc":"20448:18:1","nodeType":"YulFunctionCall","src":"20448:18:1"},{"hexValue":"207a65726f","kind":"string","nativeSrc":"20468:7:1","nodeType":"YulLiteral","src":"20468:7:1","type":"","value":" zero"}],"functionName":{"name":"mstore","nativeSrc":"20441:6:1","nodeType":"YulIdentifier","src":"20441:6:1"},"nativeSrc":"20441:35:1","nodeType":"YulFunctionCall","src":"20441:35:1"},"nativeSrc":"20441:35:1","nodeType":"YulExpressionStatement","src":"20441:35:1"},{"nativeSrc":"20485:27:1","nodeType":"YulAssignment","src":"20485:27:1","value":{"arguments":[{"name":"headStart","nativeSrc":"20497:9:1","nodeType":"YulIdentifier","src":"20497:9:1"},{"kind":"number","nativeSrc":"20508:3:1","nodeType":"YulLiteral","src":"20508:3:1","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"20493:3:1","nodeType":"YulIdentifier","src":"20493:3:1"},"nativeSrc":"20493:19:1","nodeType":"YulFunctionCall","src":"20493:19:1"},"variableNames":[{"name":"tail","nativeSrc":"20485:4:1","nodeType":"YulIdentifier","src":"20485:4:1"}]}]},"name":"abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"20117:401:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"20268:9:1","nodeType":"YulTypedName","src":"20268:9:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"20282:4:1","nodeType":"YulTypedName","src":"20282:4:1","type":""}],"src":"20117:401:1"},{"body":{"nativeSrc":"20697:236:1","nodeType":"YulBlock","src":"20697:236:1","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"20714:9:1","nodeType":"YulIdentifier","src":"20714:9:1"},{"kind":"number","nativeSrc":"20725:2:1","nodeType":"YulLiteral","src":"20725:2:1","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"20707:6:1","nodeType":"YulIdentifier","src":"20707:6:1"},"nativeSrc":"20707:21:1","nodeType":"YulFunctionCall","src":"20707:21:1"},"nativeSrc":"20707:21:1","nodeType":"YulExpressionStatement","src":"20707:21:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"20748:9:1","nodeType":"YulIdentifier","src":"20748:9:1"},{"kind":"number","nativeSrc":"20759:2:1","nodeType":"YulLiteral","src":"20759:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"20744:3:1","nodeType":"YulIdentifier","src":"20744:3:1"},"nativeSrc":"20744:18:1","nodeType":"YulFunctionCall","src":"20744:18:1"},{"kind":"number","nativeSrc":"20764:2:1","nodeType":"YulLiteral","src":"20764:2:1","type":"","value":"46"}],"functionName":{"name":"mstore","nativeSrc":"20737:6:1","nodeType":"YulIdentifier","src":"20737:6:1"},"nativeSrc":"20737:30:1","nodeType":"YulFunctionCall","src":"20737:30:1"},"nativeSrc":"20737:30:1","nodeType":"YulExpressionStatement","src":"20737:30:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"20787:9:1","nodeType":"YulIdentifier","src":"20787:9:1"},{"kind":"number","nativeSrc":"20798:2:1","nodeType":"YulLiteral","src":"20798:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"20783:3:1","nodeType":"YulIdentifier","src":"20783:3:1"},"nativeSrc":"20783:18:1","nodeType":"YulFunctionCall","src":"20783:18:1"},{"hexValue":"436f6e747261637420696e7374616e63652068617320616c7265616479206265","kind":"string","nativeSrc":"20803:34:1","nodeType":"YulLiteral","src":"20803:34:1","type":"","value":"Contract instance has already be"}],"functionName":{"name":"mstore","nativeSrc":"20776:6:1","nodeType":"YulIdentifier","src":"20776:6:1"},"nativeSrc":"20776:62:1","nodeType":"YulFunctionCall","src":"20776:62:1"},"nativeSrc":"20776:62:1","nodeType":"YulExpressionStatement","src":"20776:62:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"20858:9:1","nodeType":"YulIdentifier","src":"20858:9:1"},{"kind":"number","nativeSrc":"20869:2:1","nodeType":"YulLiteral","src":"20869:2:1","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"20854:3:1","nodeType":"YulIdentifier","src":"20854:3:1"},"nativeSrc":"20854:18:1","nodeType":"YulFunctionCall","src":"20854:18:1"},{"hexValue":"656e20696e697469616c697a6564","kind":"string","nativeSrc":"20874:16:1","nodeType":"YulLiteral","src":"20874:16:1","type":"","value":"en initialized"}],"functionName":{"name":"mstore","nativeSrc":"20847:6:1","nodeType":"YulIdentifier","src":"20847:6:1"},"nativeSrc":"20847:44:1","nodeType":"YulFunctionCall","src":"20847:44:1"},"nativeSrc":"20847:44:1","nodeType":"YulExpressionStatement","src":"20847:44:1"},{"nativeSrc":"20900:27:1","nodeType":"YulAssignment","src":"20900:27:1","value":{"arguments":[{"name":"headStart","nativeSrc":"20912:9:1","nodeType":"YulIdentifier","src":"20912:9:1"},{"kind":"number","nativeSrc":"20923:3:1","nodeType":"YulLiteral","src":"20923:3:1","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"20908:3:1","nodeType":"YulIdentifier","src":"20908:3:1"},"nativeSrc":"20908:19:1","nodeType":"YulFunctionCall","src":"20908:19:1"},"variableNames":[{"name":"tail","nativeSrc":"20900:4:1","nodeType":"YulIdentifier","src":"20900:4:1"}]}]},"name":"abi_encode_tuple_t_stringliteral_9fbba6c4dcac9134893b633b9564f36435b3f927c1d5fa152c5c14b20cecb1a4__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"20523:410:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"20674:9:1","nodeType":"YulTypedName","src":"20674:9:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"20688:4:1","nodeType":"YulTypedName","src":"20688:4:1","type":""}],"src":"20523:410:1"},{"body":{"nativeSrc":"21067:145:1","nodeType":"YulBlock","src":"21067:145:1","statements":[{"nativeSrc":"21077:26:1","nodeType":"YulAssignment","src":"21077:26:1","value":{"arguments":[{"name":"headStart","nativeSrc":"21089:9:1","nodeType":"YulIdentifier","src":"21089:9:1"},{"kind":"number","nativeSrc":"21100:2:1","nodeType":"YulLiteral","src":"21100:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"21085:3:1","nodeType":"YulIdentifier","src":"21085:3:1"},"nativeSrc":"21085:18:1","nodeType":"YulFunctionCall","src":"21085:18:1"},"variableNames":[{"name":"tail","nativeSrc":"21077:4:1","nodeType":"YulIdentifier","src":"21077:4:1"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"21119:9:1","nodeType":"YulIdentifier","src":"21119:9:1"},{"arguments":[{"name":"value0","nativeSrc":"21134:6:1","nodeType":"YulIdentifier","src":"21134:6:1"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"21150:3:1","nodeType":"YulLiteral","src":"21150:3:1","type":"","value":"160"},{"kind":"number","nativeSrc":"21155:1:1","nodeType":"YulLiteral","src":"21155:1:1","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"21146:3:1","nodeType":"YulIdentifier","src":"21146:3:1"},"nativeSrc":"21146:11:1","nodeType":"YulFunctionCall","src":"21146:11:1"},{"kind":"number","nativeSrc":"21159:1:1","nodeType":"YulLiteral","src":"21159:1:1","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"21142:3:1","nodeType":"YulIdentifier","src":"21142:3:1"},"nativeSrc":"21142:19:1","nodeType":"YulFunctionCall","src":"21142:19:1"}],"functionName":{"name":"and","nativeSrc":"21130:3:1","nodeType":"YulIdentifier","src":"21130:3:1"},"nativeSrc":"21130:32:1","nodeType":"YulFunctionCall","src":"21130:32:1"}],"functionName":{"name":"mstore","nativeSrc":"21112:6:1","nodeType":"YulIdentifier","src":"21112:6:1"},"nativeSrc":"21112:51:1","nodeType":"YulFunctionCall","src":"21112:51:1"},"nativeSrc":"21112:51:1","nodeType":"YulExpressionStatement","src":"21112:51:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"21183:9:1","nodeType":"YulIdentifier","src":"21183:9:1"},{"kind":"number","nativeSrc":"21194:2:1","nodeType":"YulLiteral","src":"21194:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"21179:3:1","nodeType":"YulIdentifier","src":"21179:3:1"},"nativeSrc":"21179:18:1","nodeType":"YulFunctionCall","src":"21179:18:1"},{"name":"value1","nativeSrc":"21199:6:1","nodeType":"YulIdentifier","src":"21199:6:1"}],"functionName":{"name":"mstore","nativeSrc":"21172:6:1","nodeType":"YulIdentifier","src":"21172:6:1"},"nativeSrc":"21172:34:1","nodeType":"YulFunctionCall","src":"21172:34:1"},"nativeSrc":"21172:34:1","nodeType":"YulExpressionStatement","src":"21172:34:1"}]},"name":"abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed","nativeSrc":"20938:274:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"21028:9:1","nodeType":"YulTypedName","src":"21028:9:1","type":""},{"name":"value1","nativeSrc":"21039:6:1","nodeType":"YulTypedName","src":"21039:6:1","type":""},{"name":"value0","nativeSrc":"21047:6:1","nodeType":"YulTypedName","src":"21047:6:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"21058:4:1","nodeType":"YulTypedName","src":"21058:4:1","type":""}],"src":"20938:274:1"},{"body":{"nativeSrc":"21295:199:1","nodeType":"YulBlock","src":"21295:199:1","statements":[{"body":{"nativeSrc":"21341:16:1","nodeType":"YulBlock","src":"21341:16:1","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"21350:1:1","nodeType":"YulLiteral","src":"21350:1:1","type":"","value":"0"},{"kind":"number","nativeSrc":"21353:1:1","nodeType":"YulLiteral","src":"21353:1:1","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"21343:6:1","nodeType":"YulIdentifier","src":"21343:6:1"},"nativeSrc":"21343:12:1","nodeType":"YulFunctionCall","src":"21343:12:1"},"nativeSrc":"21343:12:1","nodeType":"YulExpressionStatement","src":"21343:12:1"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"21316:7:1","nodeType":"YulIdentifier","src":"21316:7:1"},{"name":"headStart","nativeSrc":"21325:9:1","nodeType":"YulIdentifier","src":"21325:9:1"}],"functionName":{"name":"sub","nativeSrc":"21312:3:1","nodeType":"YulIdentifier","src":"21312:3:1"},"nativeSrc":"21312:23:1","nodeType":"YulFunctionCall","src":"21312:23:1"},{"kind":"number","nativeSrc":"21337:2:1","nodeType":"YulLiteral","src":"21337:2:1","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"21308:3:1","nodeType":"YulIdentifier","src":"21308:3:1"},"nativeSrc":"21308:32:1","nodeType":"YulFunctionCall","src":"21308:32:1"},"nativeSrc":"21305:52:1","nodeType":"YulIf","src":"21305:52:1"},{"nativeSrc":"21366:29:1","nodeType":"YulVariableDeclaration","src":"21366:29:1","value":{"arguments":[{"name":"headStart","nativeSrc":"21385:9:1","nodeType":"YulIdentifier","src":"21385:9:1"}],"functionName":{"name":"mload","nativeSrc":"21379:5:1","nodeType":"YulIdentifier","src":"21379:5:1"},"nativeSrc":"21379:16:1","nodeType":"YulFunctionCall","src":"21379:16:1"},"variables":[{"name":"value","nativeSrc":"21370:5:1","nodeType":"YulTypedName","src":"21370:5:1","type":""}]},{"body":{"nativeSrc":"21448:16:1","nodeType":"YulBlock","src":"21448:16:1","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"21457:1:1","nodeType":"YulLiteral","src":"21457:1:1","type":"","value":"0"},{"kind":"number","nativeSrc":"21460:1:1","nodeType":"YulLiteral","src":"21460:1:1","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"21450:6:1","nodeType":"YulIdentifier","src":"21450:6:1"},"nativeSrc":"21450:12:1","nodeType":"YulFunctionCall","src":"21450:12:1"},"nativeSrc":"21450:12:1","nodeType":"YulExpressionStatement","src":"21450:12:1"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"21417:5:1","nodeType":"YulIdentifier","src":"21417:5:1"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"21438:5:1","nodeType":"YulIdentifier","src":"21438:5:1"}],"functionName":{"name":"iszero","nativeSrc":"21431:6:1","nodeType":"YulIdentifier","src":"21431:6:1"},"nativeSrc":"21431:13:1","nodeType":"YulFunctionCall","src":"21431:13:1"}],"functionName":{"name":"iszero","nativeSrc":"21424:6:1","nodeType":"YulIdentifier","src":"21424:6:1"},"nativeSrc":"21424:21:1","nodeType":"YulFunctionCall","src":"21424:21:1"}],"functionName":{"name":"eq","nativeSrc":"21414:2:1","nodeType":"YulIdentifier","src":"21414:2:1"},"nativeSrc":"21414:32:1","nodeType":"YulFunctionCall","src":"21414:32:1"}],"functionName":{"name":"iszero","nativeSrc":"21407:6:1","nodeType":"YulIdentifier","src":"21407:6:1"},"nativeSrc":"21407:40:1","nodeType":"YulFunctionCall","src":"21407:40:1"},"nativeSrc":"21404:60:1","nodeType":"YulIf","src":"21404:60:1"},{"nativeSrc":"21473:15:1","nodeType":"YulAssignment","src":"21473:15:1","value":{"name":"value","nativeSrc":"21483:5:1","nodeType":"YulIdentifier","src":"21483:5:1"},"variableNames":[{"name":"value0","nativeSrc":"21473:6:1","nodeType":"YulIdentifier","src":"21473:6:1"}]}]},"name":"abi_decode_tuple_t_bool_fromMemory","nativeSrc":"21217:277:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"21261:9:1","nodeType":"YulTypedName","src":"21261:9:1","type":""},{"name":"dataEnd","nativeSrc":"21272:7:1","nodeType":"YulTypedName","src":"21272:7:1","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"21284:6:1","nodeType":"YulTypedName","src":"21284:6:1","type":""}],"src":"21217:277:1"},{"body":{"nativeSrc":"21673:171:1","nodeType":"YulBlock","src":"21673:171:1","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"21690:9:1","nodeType":"YulIdentifier","src":"21690:9:1"},{"kind":"number","nativeSrc":"21701:2:1","nodeType":"YulLiteral","src":"21701:2:1","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"21683:6:1","nodeType":"YulIdentifier","src":"21683:6:1"},"nativeSrc":"21683:21:1","nodeType":"YulFunctionCall","src":"21683:21:1"},"nativeSrc":"21683:21:1","nodeType":"YulExpressionStatement","src":"21683:21:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"21724:9:1","nodeType":"YulIdentifier","src":"21724:9:1"},{"kind":"number","nativeSrc":"21735:2:1","nodeType":"YulLiteral","src":"21735:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"21720:3:1","nodeType":"YulIdentifier","src":"21720:3:1"},"nativeSrc":"21720:18:1","nodeType":"YulFunctionCall","src":"21720:18:1"},{"kind":"number","nativeSrc":"21740:2:1","nodeType":"YulLiteral","src":"21740:2:1","type":"","value":"21"}],"functionName":{"name":"mstore","nativeSrc":"21713:6:1","nodeType":"YulIdentifier","src":"21713:6:1"},"nativeSrc":"21713:30:1","nodeType":"YulFunctionCall","src":"21713:30:1"},"nativeSrc":"21713:30:1","nodeType":"YulExpressionStatement","src":"21713:30:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"21763:9:1","nodeType":"YulIdentifier","src":"21763:9:1"},{"kind":"number","nativeSrc":"21774:2:1","nodeType":"YulLiteral","src":"21774:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"21759:3:1","nodeType":"YulIdentifier","src":"21759:3:1"},"nativeSrc":"21759:18:1","nodeType":"YulFunctionCall","src":"21759:18:1"},{"hexValue":"43414c4c45525f4e4f545f524f4c455f41444d494e","kind":"string","nativeSrc":"21779:23:1","nodeType":"YulLiteral","src":"21779:23:1","type":"","value":"CALLER_NOT_ROLE_ADMIN"}],"functionName":{"name":"mstore","nativeSrc":"21752:6:1","nodeType":"YulIdentifier","src":"21752:6:1"},"nativeSrc":"21752:51:1","nodeType":"YulFunctionCall","src":"21752:51:1"},"nativeSrc":"21752:51:1","nodeType":"YulExpressionStatement","src":"21752:51:1"},{"nativeSrc":"21812:26:1","nodeType":"YulAssignment","src":"21812:26:1","value":{"arguments":[{"name":"headStart","nativeSrc":"21824:9:1","nodeType":"YulIdentifier","src":"21824:9:1"},{"kind":"number","nativeSrc":"21835:2:1","nodeType":"YulLiteral","src":"21835:2:1","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"21820:3:1","nodeType":"YulIdentifier","src":"21820:3:1"},"nativeSrc":"21820:18:1","nodeType":"YulFunctionCall","src":"21820:18:1"},"variableNames":[{"name":"tail","nativeSrc":"21812:4:1","nodeType":"YulIdentifier","src":"21812:4:1"}]}]},"name":"abi_encode_tuple_t_stringliteral_5e135040f8dc35152fcfe1ddf129384a9ce13d1776c5e6dc86a62f244bfcfc0b__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"21499:345:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"21650:9:1","nodeType":"YulTypedName","src":"21650:9:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"21664:4:1","nodeType":"YulTypedName","src":"21664:4:1","type":""}],"src":"21499:345:1"},{"body":{"nativeSrc":"22023:171:1","nodeType":"YulBlock","src":"22023:171:1","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"22040:9:1","nodeType":"YulIdentifier","src":"22040:9:1"},{"kind":"number","nativeSrc":"22051:2:1","nodeType":"YulLiteral","src":"22051:2:1","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"22033:6:1","nodeType":"YulIdentifier","src":"22033:6:1"},"nativeSrc":"22033:21:1","nodeType":"YulFunctionCall","src":"22033:21:1"},"nativeSrc":"22033:21:1","nodeType":"YulExpressionStatement","src":"22033:21:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"22074:9:1","nodeType":"YulIdentifier","src":"22074:9:1"},{"kind":"number","nativeSrc":"22085:2:1","nodeType":"YulLiteral","src":"22085:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"22070:3:1","nodeType":"YulIdentifier","src":"22070:3:1"},"nativeSrc":"22070:18:1","nodeType":"YulFunctionCall","src":"22070:18:1"},{"kind":"number","nativeSrc":"22090:2:1","nodeType":"YulLiteral","src":"22090:2:1","type":"","value":"21"}],"functionName":{"name":"mstore","nativeSrc":"22063:6:1","nodeType":"YulIdentifier","src":"22063:6:1"},"nativeSrc":"22063:30:1","nodeType":"YulFunctionCall","src":"22063:30:1"},"nativeSrc":"22063:30:1","nodeType":"YulExpressionStatement","src":"22063:30:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"22113:9:1","nodeType":"YulIdentifier","src":"22113:9:1"},{"kind":"number","nativeSrc":"22124:2:1","nodeType":"YulLiteral","src":"22124:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"22109:3:1","nodeType":"YulIdentifier","src":"22109:3:1"},"nativeSrc":"22109:18:1","nodeType":"YulFunctionCall","src":"22109:18:1"},{"hexValue":"4f4e4c595f454d495353494f4e5f4d414e41474552","kind":"string","nativeSrc":"22129:23:1","nodeType":"YulLiteral","src":"22129:23:1","type":"","value":"ONLY_EMISSION_MANAGER"}],"functionName":{"name":"mstore","nativeSrc":"22102:6:1","nodeType":"YulIdentifier","src":"22102:6:1"},"nativeSrc":"22102:51:1","nodeType":"YulFunctionCall","src":"22102:51:1"},"nativeSrc":"22102:51:1","nodeType":"YulExpressionStatement","src":"22102:51:1"},{"nativeSrc":"22162:26:1","nodeType":"YulAssignment","src":"22162:26:1","value":{"arguments":[{"name":"headStart","nativeSrc":"22174:9:1","nodeType":"YulIdentifier","src":"22174:9:1"},{"kind":"number","nativeSrc":"22185:2:1","nodeType":"YulLiteral","src":"22185:2:1","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"22170:3:1","nodeType":"YulIdentifier","src":"22170:3:1"},"nativeSrc":"22170:18:1","nodeType":"YulFunctionCall","src":"22170:18:1"},"variableNames":[{"name":"tail","nativeSrc":"22162:4:1","nodeType":"YulIdentifier","src":"22162:4:1"}]}]},"name":"abi_encode_tuple_t_stringliteral_a28d34ff463a8cc689c6ec4b8c995983f85d0a40987242bc4cc3cec37303c18e__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"21849:345:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"22000:9:1","nodeType":"YulTypedName","src":"22000:9:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"22014:4:1","nodeType":"YulTypedName","src":"22014:4:1","type":""}],"src":"21849:345:1"},{"body":{"nativeSrc":"22384:232:1","nodeType":"YulBlock","src":"22384:232:1","statements":[{"nativeSrc":"22394:27:1","nodeType":"YulAssignment","src":"22394:27:1","value":{"arguments":[{"name":"headStart","nativeSrc":"22406:9:1","nodeType":"YulIdentifier","src":"22406:9:1"},{"kind":"number","nativeSrc":"22417:3:1","nodeType":"YulLiteral","src":"22417:3:1","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"22402:3:1","nodeType":"YulIdentifier","src":"22402:3:1"},"nativeSrc":"22402:19:1","nodeType":"YulFunctionCall","src":"22402:19:1"},"variableNames":[{"name":"tail","nativeSrc":"22394:4:1","nodeType":"YulIdentifier","src":"22394:4:1"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"22437:9:1","nodeType":"YulIdentifier","src":"22437:9:1"},{"name":"value0","nativeSrc":"22448:6:1","nodeType":"YulIdentifier","src":"22448:6:1"}],"functionName":{"name":"mstore","nativeSrc":"22430:6:1","nodeType":"YulIdentifier","src":"22430:6:1"},"nativeSrc":"22430:25:1","nodeType":"YulFunctionCall","src":"22430:25:1"},"nativeSrc":"22430:25:1","nodeType":"YulExpressionStatement","src":"22430:25:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"22475:9:1","nodeType":"YulIdentifier","src":"22475:9:1"},{"kind":"number","nativeSrc":"22486:2:1","nodeType":"YulLiteral","src":"22486:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"22471:3:1","nodeType":"YulIdentifier","src":"22471:3:1"},"nativeSrc":"22471:18:1","nodeType":"YulFunctionCall","src":"22471:18:1"},{"arguments":[{"name":"value1","nativeSrc":"22495:6:1","nodeType":"YulIdentifier","src":"22495:6:1"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"22511:3:1","nodeType":"YulLiteral","src":"22511:3:1","type":"","value":"160"},{"kind":"number","nativeSrc":"22516:1:1","nodeType":"YulLiteral","src":"22516:1:1","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"22507:3:1","nodeType":"YulIdentifier","src":"22507:3:1"},"nativeSrc":"22507:11:1","nodeType":"YulFunctionCall","src":"22507:11:1"},{"kind":"number","nativeSrc":"22520:1:1","nodeType":"YulLiteral","src":"22520:1:1","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"22503:3:1","nodeType":"YulIdentifier","src":"22503:3:1"},"nativeSrc":"22503:19:1","nodeType":"YulFunctionCall","src":"22503:19:1"}],"functionName":{"name":"and","nativeSrc":"22491:3:1","nodeType":"YulIdentifier","src":"22491:3:1"},"nativeSrc":"22491:32:1","nodeType":"YulFunctionCall","src":"22491:32:1"}],"functionName":{"name":"mstore","nativeSrc":"22464:6:1","nodeType":"YulIdentifier","src":"22464:6:1"},"nativeSrc":"22464:60:1","nodeType":"YulFunctionCall","src":"22464:60:1"},"nativeSrc":"22464:60:1","nodeType":"YulExpressionStatement","src":"22464:60:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"22544:9:1","nodeType":"YulIdentifier","src":"22544:9:1"},{"kind":"number","nativeSrc":"22555:2:1","nodeType":"YulLiteral","src":"22555:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"22540:3:1","nodeType":"YulIdentifier","src":"22540:3:1"},"nativeSrc":"22540:18:1","nodeType":"YulFunctionCall","src":"22540:18:1"},{"name":"value2","nativeSrc":"22560:6:1","nodeType":"YulIdentifier","src":"22560:6:1"}],"functionName":{"name":"mstore","nativeSrc":"22533:6:1","nodeType":"YulIdentifier","src":"22533:6:1"},"nativeSrc":"22533:34:1","nodeType":"YulFunctionCall","src":"22533:34:1"},"nativeSrc":"22533:34:1","nodeType":"YulExpressionStatement","src":"22533:34:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"22587:9:1","nodeType":"YulIdentifier","src":"22587:9:1"},{"kind":"number","nativeSrc":"22598:2:1","nodeType":"YulLiteral","src":"22598:2:1","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"22583:3:1","nodeType":"YulIdentifier","src":"22583:3:1"},"nativeSrc":"22583:18:1","nodeType":"YulFunctionCall","src":"22583:18:1"},{"name":"value3","nativeSrc":"22603:6:1","nodeType":"YulIdentifier","src":"22603:6:1"}],"functionName":{"name":"mstore","nativeSrc":"22576:6:1","nodeType":"YulIdentifier","src":"22576:6:1"},"nativeSrc":"22576:34:1","nodeType":"YulFunctionCall","src":"22576:34:1"},"nativeSrc":"22576:34:1","nodeType":"YulExpressionStatement","src":"22576:34:1"}]},"name":"abi_encode_tuple_t_bytes32_t_address_t_uint256_t_uint256__to_t_bytes32_t_address_t_uint256_t_uint256__fromStack_reversed","nativeSrc":"22199:417:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"22329:9:1","nodeType":"YulTypedName","src":"22329:9:1","type":""},{"name":"value3","nativeSrc":"22340:6:1","nodeType":"YulTypedName","src":"22340:6:1","type":""},{"name":"value2","nativeSrc":"22348:6:1","nodeType":"YulTypedName","src":"22348:6:1","type":""},{"name":"value1","nativeSrc":"22356:6:1","nodeType":"YulTypedName","src":"22356:6:1","type":""},{"name":"value0","nativeSrc":"22364:6:1","nodeType":"YulTypedName","src":"22364:6:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"22375:4:1","nodeType":"YulTypedName","src":"22375:4:1","type":""}],"src":"22199:417:1"},{"body":{"nativeSrc":"22869:144:1","nodeType":"YulBlock","src":"22869:144:1","statements":[{"expression":{"arguments":[{"name":"pos","nativeSrc":"22886:3:1","nodeType":"YulIdentifier","src":"22886:3:1"},{"arguments":[{"kind":"number","nativeSrc":"22895:3:1","nodeType":"YulLiteral","src":"22895:3:1","type":"","value":"240"},{"kind":"number","nativeSrc":"22900:4:1","nodeType":"YulLiteral","src":"22900:4:1","type":"","value":"6401"}],"functionName":{"name":"shl","nativeSrc":"22891:3:1","nodeType":"YulIdentifier","src":"22891:3:1"},"nativeSrc":"22891:14:1","nodeType":"YulFunctionCall","src":"22891:14:1"}],"functionName":{"name":"mstore","nativeSrc":"22879:6:1","nodeType":"YulIdentifier","src":"22879:6:1"},"nativeSrc":"22879:27:1","nodeType":"YulFunctionCall","src":"22879:27:1"},"nativeSrc":"22879:27:1","nodeType":"YulExpressionStatement","src":"22879:27:1"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"22926:3:1","nodeType":"YulIdentifier","src":"22926:3:1"},{"kind":"number","nativeSrc":"22931:1:1","nodeType":"YulLiteral","src":"22931:1:1","type":"","value":"2"}],"functionName":{"name":"add","nativeSrc":"22922:3:1","nodeType":"YulIdentifier","src":"22922:3:1"},"nativeSrc":"22922:11:1","nodeType":"YulFunctionCall","src":"22922:11:1"},{"name":"value0","nativeSrc":"22935:6:1","nodeType":"YulIdentifier","src":"22935:6:1"}],"functionName":{"name":"mstore","nativeSrc":"22915:6:1","nodeType":"YulIdentifier","src":"22915:6:1"},"nativeSrc":"22915:27:1","nodeType":"YulFunctionCall","src":"22915:27:1"},"nativeSrc":"22915:27:1","nodeType":"YulExpressionStatement","src":"22915:27:1"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"22962:3:1","nodeType":"YulIdentifier","src":"22962:3:1"},{"kind":"number","nativeSrc":"22967:2:1","nodeType":"YulLiteral","src":"22967:2:1","type":"","value":"34"}],"functionName":{"name":"add","nativeSrc":"22958:3:1","nodeType":"YulIdentifier","src":"22958:3:1"},"nativeSrc":"22958:12:1","nodeType":"YulFunctionCall","src":"22958:12:1"},{"name":"value1","nativeSrc":"22972:6:1","nodeType":"YulIdentifier","src":"22972:6:1"}],"functionName":{"name":"mstore","nativeSrc":"22951:6:1","nodeType":"YulIdentifier","src":"22951:6:1"},"nativeSrc":"22951:28:1","nodeType":"YulFunctionCall","src":"22951:28:1"},"nativeSrc":"22951:28:1","nodeType":"YulExpressionStatement","src":"22951:28:1"},{"nativeSrc":"22988:19:1","nodeType":"YulAssignment","src":"22988:19:1","value":{"arguments":[{"name":"pos","nativeSrc":"22999:3:1","nodeType":"YulIdentifier","src":"22999:3:1"},{"kind":"number","nativeSrc":"23004:2:1","nodeType":"YulLiteral","src":"23004:2:1","type":"","value":"66"}],"functionName":{"name":"add","nativeSrc":"22995:3:1","nodeType":"YulIdentifier","src":"22995:3:1"},"nativeSrc":"22995:12:1","nodeType":"YulFunctionCall","src":"22995:12:1"},"variableNames":[{"name":"end","nativeSrc":"22988:3:1","nodeType":"YulIdentifier","src":"22988:3:1"}]}]},"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","nativeSrc":"22621:392:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nativeSrc":"22837:3:1","nodeType":"YulTypedName","src":"22837:3:1","type":""},{"name":"value1","nativeSrc":"22842:6:1","nodeType":"YulTypedName","src":"22842:6:1","type":""},{"name":"value0","nativeSrc":"22850:6:1","nodeType":"YulTypedName","src":"22850:6:1","type":""}],"returnVariables":[{"name":"end","nativeSrc":"22861:3:1","nodeType":"YulTypedName","src":"22861:3:1","type":""}],"src":"22621:392:1"},{"body":{"nativeSrc":"23199:217:1","nodeType":"YulBlock","src":"23199:217:1","statements":[{"nativeSrc":"23209:27:1","nodeType":"YulAssignment","src":"23209:27:1","value":{"arguments":[{"name":"headStart","nativeSrc":"23221:9:1","nodeType":"YulIdentifier","src":"23221:9:1"},{"kind":"number","nativeSrc":"23232:3:1","nodeType":"YulLiteral","src":"23232:3:1","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"23217:3:1","nodeType":"YulIdentifier","src":"23217:3:1"},"nativeSrc":"23217:19:1","nodeType":"YulFunctionCall","src":"23217:19:1"},"variableNames":[{"name":"tail","nativeSrc":"23209:4:1","nodeType":"YulIdentifier","src":"23209:4:1"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"23252:9:1","nodeType":"YulIdentifier","src":"23252:9:1"},{"name":"value0","nativeSrc":"23263:6:1","nodeType":"YulIdentifier","src":"23263:6:1"}],"functionName":{"name":"mstore","nativeSrc":"23245:6:1","nodeType":"YulIdentifier","src":"23245:6:1"},"nativeSrc":"23245:25:1","nodeType":"YulFunctionCall","src":"23245:25:1"},"nativeSrc":"23245:25:1","nodeType":"YulExpressionStatement","src":"23245:25:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"23290:9:1","nodeType":"YulIdentifier","src":"23290:9:1"},{"kind":"number","nativeSrc":"23301:2:1","nodeType":"YulLiteral","src":"23301:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"23286:3:1","nodeType":"YulIdentifier","src":"23286:3:1"},"nativeSrc":"23286:18:1","nodeType":"YulFunctionCall","src":"23286:18:1"},{"arguments":[{"name":"value1","nativeSrc":"23310:6:1","nodeType":"YulIdentifier","src":"23310:6:1"},{"kind":"number","nativeSrc":"23318:4:1","nodeType":"YulLiteral","src":"23318:4:1","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"23306:3:1","nodeType":"YulIdentifier","src":"23306:3:1"},"nativeSrc":"23306:17:1","nodeType":"YulFunctionCall","src":"23306:17:1"}],"functionName":{"name":"mstore","nativeSrc":"23279:6:1","nodeType":"YulIdentifier","src":"23279:6:1"},"nativeSrc":"23279:45:1","nodeType":"YulFunctionCall","src":"23279:45:1"},"nativeSrc":"23279:45:1","nodeType":"YulExpressionStatement","src":"23279:45:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"23344:9:1","nodeType":"YulIdentifier","src":"23344:9:1"},{"kind":"number","nativeSrc":"23355:2:1","nodeType":"YulLiteral","src":"23355:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"23340:3:1","nodeType":"YulIdentifier","src":"23340:3:1"},"nativeSrc":"23340:18:1","nodeType":"YulFunctionCall","src":"23340:18:1"},{"name":"value2","nativeSrc":"23360:6:1","nodeType":"YulIdentifier","src":"23360:6:1"}],"functionName":{"name":"mstore","nativeSrc":"23333:6:1","nodeType":"YulIdentifier","src":"23333:6:1"},"nativeSrc":"23333:34:1","nodeType":"YulFunctionCall","src":"23333:34:1"},"nativeSrc":"23333:34:1","nodeType":"YulExpressionStatement","src":"23333:34:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"23387:9:1","nodeType":"YulIdentifier","src":"23387:9:1"},{"kind":"number","nativeSrc":"23398:2:1","nodeType":"YulLiteral","src":"23398:2:1","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"23383:3:1","nodeType":"YulIdentifier","src":"23383:3:1"},"nativeSrc":"23383:18:1","nodeType":"YulFunctionCall","src":"23383:18:1"},{"name":"value3","nativeSrc":"23403:6:1","nodeType":"YulIdentifier","src":"23403:6:1"}],"functionName":{"name":"mstore","nativeSrc":"23376:6:1","nodeType":"YulIdentifier","src":"23376:6:1"},"nativeSrc":"23376:34:1","nodeType":"YulFunctionCall","src":"23376:34:1"},"nativeSrc":"23376:34:1","nodeType":"YulExpressionStatement","src":"23376:34:1"}]},"name":"abi_encode_tuple_t_bytes32_t_uint8_t_bytes32_t_bytes32__to_t_bytes32_t_uint8_t_bytes32_t_bytes32__fromStack_reversed","nativeSrc":"23018:398:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"23144:9:1","nodeType":"YulTypedName","src":"23144:9:1","type":""},{"name":"value3","nativeSrc":"23155:6:1","nodeType":"YulTypedName","src":"23155:6:1","type":""},{"name":"value2","nativeSrc":"23163:6:1","nodeType":"YulTypedName","src":"23163:6:1","type":""},{"name":"value1","nativeSrc":"23171:6:1","nodeType":"YulTypedName","src":"23171:6:1","type":""},{"name":"value0","nativeSrc":"23179:6:1","nodeType":"YulTypedName","src":"23179:6:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"23190:4:1","nodeType":"YulTypedName","src":"23190:4:1","type":""}],"src":"23018:398:1"},{"body":{"nativeSrc":"23595:167:1","nodeType":"YulBlock","src":"23595:167:1","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"23612:9:1","nodeType":"YulIdentifier","src":"23612:9:1"},{"kind":"number","nativeSrc":"23623:2:1","nodeType":"YulLiteral","src":"23623:2:1","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"23605:6:1","nodeType":"YulIdentifier","src":"23605:6:1"},"nativeSrc":"23605:21:1","nodeType":"YulFunctionCall","src":"23605:21:1"},"nativeSrc":"23605:21:1","nodeType":"YulExpressionStatement","src":"23605:21:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"23646:9:1","nodeType":"YulIdentifier","src":"23646:9:1"},{"kind":"number","nativeSrc":"23657:2:1","nodeType":"YulLiteral","src":"23657:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"23642:3:1","nodeType":"YulIdentifier","src":"23642:3:1"},"nativeSrc":"23642:18:1","nodeType":"YulFunctionCall","src":"23642:18:1"},{"kind":"number","nativeSrc":"23662:2:1","nodeType":"YulLiteral","src":"23662:2:1","type":"","value":"17"}],"functionName":{"name":"mstore","nativeSrc":"23635:6:1","nodeType":"YulIdentifier","src":"23635:6:1"},"nativeSrc":"23635:30:1","nodeType":"YulFunctionCall","src":"23635:30:1"},"nativeSrc":"23635:30:1","nodeType":"YulExpressionStatement","src":"23635:30:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"23685:9:1","nodeType":"YulIdentifier","src":"23685:9:1"},{"kind":"number","nativeSrc":"23696:2:1","nodeType":"YulLiteral","src":"23696:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"23681:3:1","nodeType":"YulIdentifier","src":"23681:3:1"},"nativeSrc":"23681:18:1","nodeType":"YulFunctionCall","src":"23681:18:1"},{"hexValue":"494e56414c49445f5349474e4154555245","kind":"string","nativeSrc":"23701:19:1","nodeType":"YulLiteral","src":"23701:19:1","type":"","value":"INVALID_SIGNATURE"}],"functionName":{"name":"mstore","nativeSrc":"23674:6:1","nodeType":"YulIdentifier","src":"23674:6:1"},"nativeSrc":"23674:47:1","nodeType":"YulFunctionCall","src":"23674:47:1"},"nativeSrc":"23674:47:1","nodeType":"YulExpressionStatement","src":"23674:47:1"},{"nativeSrc":"23730:26:1","nodeType":"YulAssignment","src":"23730:26:1","value":{"arguments":[{"name":"headStart","nativeSrc":"23742:9:1","nodeType":"YulIdentifier","src":"23742:9:1"},{"kind":"number","nativeSrc":"23753:2:1","nodeType":"YulLiteral","src":"23753:2:1","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"23738:3:1","nodeType":"YulIdentifier","src":"23738:3:1"},"nativeSrc":"23738:18:1","nodeType":"YulFunctionCall","src":"23738:18:1"},"variableNames":[{"name":"tail","nativeSrc":"23730:4:1","nodeType":"YulIdentifier","src":"23730:4:1"}]}]},"name":"abi_encode_tuple_t_stringliteral_5e2e9eaa2d734966dea0900deacd15b20129fbce05255d633a3ce5ebca181b88__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"23421:341:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"23572:9:1","nodeType":"YulTypedName","src":"23572:9:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"23586:4:1","nodeType":"YulTypedName","src":"23586:4:1","type":""}],"src":"23421:341:1"},{"body":{"nativeSrc":"23814:88:1","nodeType":"YulBlock","src":"23814:88:1","statements":[{"body":{"nativeSrc":"23845:22:1","nodeType":"YulBlock","src":"23845:22:1","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"23847:16:1","nodeType":"YulIdentifier","src":"23847:16:1"},"nativeSrc":"23847:18:1","nodeType":"YulFunctionCall","src":"23847:18:1"},"nativeSrc":"23847:18:1","nodeType":"YulExpressionStatement","src":"23847:18:1"}]},"condition":{"arguments":[{"name":"value","nativeSrc":"23830:5:1","nodeType":"YulIdentifier","src":"23830:5:1"},{"arguments":[{"kind":"number","nativeSrc":"23841:1:1","nodeType":"YulLiteral","src":"23841:1:1","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"23837:3:1","nodeType":"YulIdentifier","src":"23837:3:1"},"nativeSrc":"23837:6:1","nodeType":"YulFunctionCall","src":"23837:6:1"}],"functionName":{"name":"eq","nativeSrc":"23827:2:1","nodeType":"YulIdentifier","src":"23827:2:1"},"nativeSrc":"23827:17:1","nodeType":"YulFunctionCall","src":"23827:17:1"},"nativeSrc":"23824:43:1","nodeType":"YulIf","src":"23824:43:1"},{"nativeSrc":"23876:20:1","nodeType":"YulAssignment","src":"23876:20:1","value":{"arguments":[{"name":"value","nativeSrc":"23887:5:1","nodeType":"YulIdentifier","src":"23887:5:1"},{"kind":"number","nativeSrc":"23894:1:1","nodeType":"YulLiteral","src":"23894:1:1","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"23883:3:1","nodeType":"YulIdentifier","src":"23883:3:1"},"nativeSrc":"23883:13:1","nodeType":"YulFunctionCall","src":"23883:13:1"},"variableNames":[{"name":"ret","nativeSrc":"23876:3:1","nodeType":"YulIdentifier","src":"23876:3:1"}]}]},"name":"increment_t_uint256","nativeSrc":"23767:135:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"23796:5:1","nodeType":"YulTypedName","src":"23796:5:1","type":""}],"returnVariables":[{"name":"ret","nativeSrc":"23806:3:1","nodeType":"YulTypedName","src":"23806:3:1","type":""}],"src":"23767:135:1"},{"body":{"nativeSrc":"24081:163:1","nodeType":"YulBlock","src":"24081:163:1","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"24098:9:1","nodeType":"YulIdentifier","src":"24098:9:1"},{"kind":"number","nativeSrc":"24109:2:1","nodeType":"YulLiteral","src":"24109:2:1","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"24091:6:1","nodeType":"YulIdentifier","src":"24091:6:1"},"nativeSrc":"24091:21:1","nodeType":"YulFunctionCall","src":"24091:21:1"},"nativeSrc":"24091:21:1","nodeType":"YulExpressionStatement","src":"24091:21:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"24132:9:1","nodeType":"YulIdentifier","src":"24132:9:1"},{"kind":"number","nativeSrc":"24143:2:1","nodeType":"YulLiteral","src":"24143:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"24128:3:1","nodeType":"YulIdentifier","src":"24128:3:1"},"nativeSrc":"24128:18:1","nodeType":"YulFunctionCall","src":"24128:18:1"},{"kind":"number","nativeSrc":"24148:2:1","nodeType":"YulLiteral","src":"24148:2:1","type":"","value":"13"}],"functionName":{"name":"mstore","nativeSrc":"24121:6:1","nodeType":"YulIdentifier","src":"24121:6:1"},"nativeSrc":"24121:30:1","nodeType":"YulFunctionCall","src":"24121:30:1"},"nativeSrc":"24121:30:1","nodeType":"YulExpressionStatement","src":"24121:30:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"24171:9:1","nodeType":"YulIdentifier","src":"24171:9:1"},{"kind":"number","nativeSrc":"24182:2:1","nodeType":"YulLiteral","src":"24182:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"24167:3:1","nodeType":"YulIdentifier","src":"24167:3:1"},"nativeSrc":"24167:18:1","nodeType":"YulFunctionCall","src":"24167:18:1"},{"hexValue":"494e56414c49445f4e4f4e4345","kind":"string","nativeSrc":"24187:15:1","nodeType":"YulLiteral","src":"24187:15:1","type":"","value":"INVALID_NONCE"}],"functionName":{"name":"mstore","nativeSrc":"24160:6:1","nodeType":"YulIdentifier","src":"24160:6:1"},"nativeSrc":"24160:43:1","nodeType":"YulFunctionCall","src":"24160:43:1"},"nativeSrc":"24160:43:1","nodeType":"YulExpressionStatement","src":"24160:43:1"},{"nativeSrc":"24212:26:1","nodeType":"YulAssignment","src":"24212:26:1","value":{"arguments":[{"name":"headStart","nativeSrc":"24224:9:1","nodeType":"YulIdentifier","src":"24224:9:1"},{"kind":"number","nativeSrc":"24235:2:1","nodeType":"YulLiteral","src":"24235:2:1","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"24220:3:1","nodeType":"YulIdentifier","src":"24220:3:1"},"nativeSrc":"24220:18:1","nodeType":"YulFunctionCall","src":"24220:18:1"},"variableNames":[{"name":"tail","nativeSrc":"24212:4:1","nodeType":"YulIdentifier","src":"24212:4:1"}]}]},"name":"abi_encode_tuple_t_stringliteral_a19e25beaf00f467d35fbe7e167b5794fca796dbfd417dd2accc8f5303300b99__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"23907:337:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"24058:9:1","nodeType":"YulTypedName","src":"24058:9:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"24072:4:1","nodeType":"YulTypedName","src":"24072:4:1","type":""}],"src":"23907:337:1"},{"body":{"nativeSrc":"24423:168:1","nodeType":"YulBlock","src":"24423:168:1","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"24440:9:1","nodeType":"YulIdentifier","src":"24440:9:1"},{"kind":"number","nativeSrc":"24451:2:1","nodeType":"YulLiteral","src":"24451:2:1","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"24433:6:1","nodeType":"YulIdentifier","src":"24433:6:1"},"nativeSrc":"24433:21:1","nodeType":"YulFunctionCall","src":"24433:21:1"},"nativeSrc":"24433:21:1","nodeType":"YulExpressionStatement","src":"24433:21:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"24474:9:1","nodeType":"YulIdentifier","src":"24474:9:1"},{"kind":"number","nativeSrc":"24485:2:1","nodeType":"YulLiteral","src":"24485:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"24470:3:1","nodeType":"YulIdentifier","src":"24470:3:1"},"nativeSrc":"24470:18:1","nodeType":"YulFunctionCall","src":"24470:18:1"},{"kind":"number","nativeSrc":"24490:2:1","nodeType":"YulLiteral","src":"24490:2:1","type":"","value":"18"}],"functionName":{"name":"mstore","nativeSrc":"24463:6:1","nodeType":"YulIdentifier","src":"24463:6:1"},"nativeSrc":"24463:30:1","nodeType":"YulFunctionCall","src":"24463:30:1"},"nativeSrc":"24463:30:1","nodeType":"YulExpressionStatement","src":"24463:30:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"24513:9:1","nodeType":"YulIdentifier","src":"24513:9:1"},{"kind":"number","nativeSrc":"24524:2:1","nodeType":"YulLiteral","src":"24524:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"24509:3:1","nodeType":"YulIdentifier","src":"24509:3:1"},"nativeSrc":"24509:18:1","nodeType":"YulFunctionCall","src":"24509:18:1"},{"hexValue":"494e56414c49445f45585049524154494f4e","kind":"string","nativeSrc":"24529:20:1","nodeType":"YulLiteral","src":"24529:20:1","type":"","value":"INVALID_EXPIRATION"}],"functionName":{"name":"mstore","nativeSrc":"24502:6:1","nodeType":"YulIdentifier","src":"24502:6:1"},"nativeSrc":"24502:48:1","nodeType":"YulFunctionCall","src":"24502:48:1"},"nativeSrc":"24502:48:1","nodeType":"YulExpressionStatement","src":"24502:48:1"},{"nativeSrc":"24559:26:1","nodeType":"YulAssignment","src":"24559:26:1","value":{"arguments":[{"name":"headStart","nativeSrc":"24571:9:1","nodeType":"YulIdentifier","src":"24571:9:1"},{"kind":"number","nativeSrc":"24582:2:1","nodeType":"YulLiteral","src":"24582:2:1","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"24567:3:1","nodeType":"YulIdentifier","src":"24567:3:1"},"nativeSrc":"24567:18:1","nodeType":"YulFunctionCall","src":"24567:18:1"},"variableNames":[{"name":"tail","nativeSrc":"24559:4:1","nodeType":"YulIdentifier","src":"24559:4:1"}]}]},"name":"abi_encode_tuple_t_stringliteral_9fe3e5cf49f72bf8a6a8455c3e990f8479f5dfa09ac808886f330a39b0029c2d__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"24249:342:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"24400:9:1","nodeType":"YulTypedName","src":"24400:9:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"24414:4:1","nodeType":"YulTypedName","src":"24414:4:1","type":""}],"src":"24249:342:1"},{"body":{"nativeSrc":"24770:163:1","nodeType":"YulBlock","src":"24770:163:1","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"24787:9:1","nodeType":"YulIdentifier","src":"24787:9:1"},{"kind":"number","nativeSrc":"24798:2:1","nodeType":"YulLiteral","src":"24798:2:1","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"24780:6:1","nodeType":"YulIdentifier","src":"24780:6:1"},"nativeSrc":"24780:21:1","nodeType":"YulFunctionCall","src":"24780:21:1"},"nativeSrc":"24780:21:1","nodeType":"YulExpressionStatement","src":"24780:21:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"24821:9:1","nodeType":"YulIdentifier","src":"24821:9:1"},{"kind":"number","nativeSrc":"24832:2:1","nodeType":"YulLiteral","src":"24832:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"24817:3:1","nodeType":"YulIdentifier","src":"24817:3:1"},"nativeSrc":"24817:18:1","nodeType":"YulFunctionCall","src":"24817:18:1"},{"kind":"number","nativeSrc":"24837:2:1","nodeType":"YulLiteral","src":"24837:2:1","type":"","value":"13"}],"functionName":{"name":"mstore","nativeSrc":"24810:6:1","nodeType":"YulIdentifier","src":"24810:6:1"},"nativeSrc":"24810:30:1","nodeType":"YulFunctionCall","src":"24810:30:1"},"nativeSrc":"24810:30:1","nodeType":"YulExpressionStatement","src":"24810:30:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"24860:9:1","nodeType":"YulIdentifier","src":"24860:9:1"},{"kind":"number","nativeSrc":"24871:2:1","nodeType":"YulLiteral","src":"24871:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"24856:3:1","nodeType":"YulIdentifier","src":"24856:3:1"},"nativeSrc":"24856:18:1","nodeType":"YulFunctionCall","src":"24856:18:1"},{"hexValue":"494e56414c49445f4f574e4552","kind":"string","nativeSrc":"24876:15:1","nodeType":"YulLiteral","src":"24876:15:1","type":"","value":"INVALID_OWNER"}],"functionName":{"name":"mstore","nativeSrc":"24849:6:1","nodeType":"YulIdentifier","src":"24849:6:1"},"nativeSrc":"24849:43:1","nodeType":"YulFunctionCall","src":"24849:43:1"},"nativeSrc":"24849:43:1","nodeType":"YulExpressionStatement","src":"24849:43:1"},{"nativeSrc":"24901:26:1","nodeType":"YulAssignment","src":"24901:26:1","value":{"arguments":[{"name":"headStart","nativeSrc":"24913:9:1","nodeType":"YulIdentifier","src":"24913:9:1"},{"kind":"number","nativeSrc":"24924:2:1","nodeType":"YulLiteral","src":"24924:2:1","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"24909:3:1","nodeType":"YulIdentifier","src":"24909:3:1"},"nativeSrc":"24909:18:1","nodeType":"YulFunctionCall","src":"24909:18:1"},"variableNames":[{"name":"tail","nativeSrc":"24901:4:1","nodeType":"YulIdentifier","src":"24901:4:1"}]}]},"name":"abi_encode_tuple_t_stringliteral_a30e2b4f22d955e30086ae3aef0adfd87eec9d0d3f055d6aa9af61f522dda886__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"24596:337:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"24747:9:1","nodeType":"YulTypedName","src":"24747:9:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"24761:4:1","nodeType":"YulTypedName","src":"24761:4:1","type":""}],"src":"24596:337:1"},{"body":{"nativeSrc":"25179:346:1","nodeType":"YulBlock","src":"25179:346:1","statements":[{"nativeSrc":"25189:27:1","nodeType":"YulAssignment","src":"25189:27:1","value":{"arguments":[{"name":"headStart","nativeSrc":"25201:9:1","nodeType":"YulIdentifier","src":"25201:9:1"},{"kind":"number","nativeSrc":"25212:3:1","nodeType":"YulLiteral","src":"25212:3:1","type":"","value":"192"}],"functionName":{"name":"add","nativeSrc":"25197:3:1","nodeType":"YulIdentifier","src":"25197:3:1"},"nativeSrc":"25197:19:1","nodeType":"YulFunctionCall","src":"25197:19:1"},"variableNames":[{"name":"tail","nativeSrc":"25189:4:1","nodeType":"YulIdentifier","src":"25189:4:1"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"25232:9:1","nodeType":"YulIdentifier","src":"25232:9:1"},{"name":"value0","nativeSrc":"25243:6:1","nodeType":"YulIdentifier","src":"25243:6:1"}],"functionName":{"name":"mstore","nativeSrc":"25225:6:1","nodeType":"YulIdentifier","src":"25225:6:1"},"nativeSrc":"25225:25:1","nodeType":"YulFunctionCall","src":"25225:25:1"},"nativeSrc":"25225:25:1","nodeType":"YulExpressionStatement","src":"25225:25:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"25270:9:1","nodeType":"YulIdentifier","src":"25270:9:1"},{"kind":"number","nativeSrc":"25281:2:1","nodeType":"YulLiteral","src":"25281:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"25266:3:1","nodeType":"YulIdentifier","src":"25266:3:1"},"nativeSrc":"25266:18:1","nodeType":"YulFunctionCall","src":"25266:18:1"},{"arguments":[{"name":"value1","nativeSrc":"25290:6:1","nodeType":"YulIdentifier","src":"25290:6:1"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"25306:3:1","nodeType":"YulLiteral","src":"25306:3:1","type":"","value":"160"},{"kind":"number","nativeSrc":"25311:1:1","nodeType":"YulLiteral","src":"25311:1:1","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"25302:3:1","nodeType":"YulIdentifier","src":"25302:3:1"},"nativeSrc":"25302:11:1","nodeType":"YulFunctionCall","src":"25302:11:1"},{"kind":"number","nativeSrc":"25315:1:1","nodeType":"YulLiteral","src":"25315:1:1","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"25298:3:1","nodeType":"YulIdentifier","src":"25298:3:1"},"nativeSrc":"25298:19:1","nodeType":"YulFunctionCall","src":"25298:19:1"}],"functionName":{"name":"and","nativeSrc":"25286:3:1","nodeType":"YulIdentifier","src":"25286:3:1"},"nativeSrc":"25286:32:1","nodeType":"YulFunctionCall","src":"25286:32:1"}],"functionName":{"name":"mstore","nativeSrc":"25259:6:1","nodeType":"YulIdentifier","src":"25259:6:1"},"nativeSrc":"25259:60:1","nodeType":"YulFunctionCall","src":"25259:60:1"},"nativeSrc":"25259:60:1","nodeType":"YulExpressionStatement","src":"25259:60:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"25339:9:1","nodeType":"YulIdentifier","src":"25339:9:1"},{"kind":"number","nativeSrc":"25350:2:1","nodeType":"YulLiteral","src":"25350:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"25335:3:1","nodeType":"YulIdentifier","src":"25335:3:1"},"nativeSrc":"25335:18:1","nodeType":"YulFunctionCall","src":"25335:18:1"},{"arguments":[{"name":"value2","nativeSrc":"25359:6:1","nodeType":"YulIdentifier","src":"25359:6:1"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"25375:3:1","nodeType":"YulLiteral","src":"25375:3:1","type":"","value":"160"},{"kind":"number","nativeSrc":"25380:1:1","nodeType":"YulLiteral","src":"25380:1:1","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"25371:3:1","nodeType":"YulIdentifier","src":"25371:3:1"},"nativeSrc":"25371:11:1","nodeType":"YulFunctionCall","src":"25371:11:1"},{"kind":"number","nativeSrc":"25384:1:1","nodeType":"YulLiteral","src":"25384:1:1","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"25367:3:1","nodeType":"YulIdentifier","src":"25367:3:1"},"nativeSrc":"25367:19:1","nodeType":"YulFunctionCall","src":"25367:19:1"}],"functionName":{"name":"and","nativeSrc":"25355:3:1","nodeType":"YulIdentifier","src":"25355:3:1"},"nativeSrc":"25355:32:1","nodeType":"YulFunctionCall","src":"25355:32:1"}],"functionName":{"name":"mstore","nativeSrc":"25328:6:1","nodeType":"YulIdentifier","src":"25328:6:1"},"nativeSrc":"25328:60:1","nodeType":"YulFunctionCall","src":"25328:60:1"},"nativeSrc":"25328:60:1","nodeType":"YulExpressionStatement","src":"25328:60:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"25408:9:1","nodeType":"YulIdentifier","src":"25408:9:1"},{"kind":"number","nativeSrc":"25419:2:1","nodeType":"YulLiteral","src":"25419:2:1","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"25404:3:1","nodeType":"YulIdentifier","src":"25404:3:1"},"nativeSrc":"25404:18:1","nodeType":"YulFunctionCall","src":"25404:18:1"},{"name":"value3","nativeSrc":"25424:6:1","nodeType":"YulIdentifier","src":"25424:6:1"}],"functionName":{"name":"mstore","nativeSrc":"25397:6:1","nodeType":"YulIdentifier","src":"25397:6:1"},"nativeSrc":"25397:34:1","nodeType":"YulFunctionCall","src":"25397:34:1"},"nativeSrc":"25397:34:1","nodeType":"YulExpressionStatement","src":"25397:34:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"25451:9:1","nodeType":"YulIdentifier","src":"25451:9:1"},{"kind":"number","nativeSrc":"25462:3:1","nodeType":"YulLiteral","src":"25462:3:1","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"25447:3:1","nodeType":"YulIdentifier","src":"25447:3:1"},"nativeSrc":"25447:19:1","nodeType":"YulFunctionCall","src":"25447:19:1"},{"name":"value4","nativeSrc":"25468:6:1","nodeType":"YulIdentifier","src":"25468:6:1"}],"functionName":{"name":"mstore","nativeSrc":"25440:6:1","nodeType":"YulIdentifier","src":"25440:6:1"},"nativeSrc":"25440:35:1","nodeType":"YulFunctionCall","src":"25440:35:1"},"nativeSrc":"25440:35:1","nodeType":"YulExpressionStatement","src":"25440:35:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"25495:9:1","nodeType":"YulIdentifier","src":"25495:9:1"},{"kind":"number","nativeSrc":"25506:3:1","nodeType":"YulLiteral","src":"25506:3:1","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"25491:3:1","nodeType":"YulIdentifier","src":"25491:3:1"},"nativeSrc":"25491:19:1","nodeType":"YulFunctionCall","src":"25491:19:1"},{"name":"value5","nativeSrc":"25512:6:1","nodeType":"YulIdentifier","src":"25512:6:1"}],"functionName":{"name":"mstore","nativeSrc":"25484:6:1","nodeType":"YulIdentifier","src":"25484:6:1"},"nativeSrc":"25484:35:1","nodeType":"YulFunctionCall","src":"25484:35:1"},"nativeSrc":"25484:35:1","nodeType":"YulExpressionStatement","src":"25484:35:1"}]},"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","nativeSrc":"24938:587:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"25108:9:1","nodeType":"YulTypedName","src":"25108:9:1","type":""},{"name":"value5","nativeSrc":"25119:6:1","nodeType":"YulTypedName","src":"25119:6:1","type":""},{"name":"value4","nativeSrc":"25127:6:1","nodeType":"YulTypedName","src":"25127:6:1","type":""},{"name":"value3","nativeSrc":"25135:6:1","nodeType":"YulTypedName","src":"25135:6:1","type":""},{"name":"value2","nativeSrc":"25143:6:1","nodeType":"YulTypedName","src":"25143:6:1","type":""},{"name":"value1","nativeSrc":"25151:6:1","nodeType":"YulTypedName","src":"25151:6:1","type":""},{"name":"value0","nativeSrc":"25159:6:1","nodeType":"YulTypedName","src":"25159:6:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"25170:4:1","nodeType":"YulTypedName","src":"25170:4:1","type":""}],"src":"24938:587:1"},{"body":{"nativeSrc":"25562:95:1","nodeType":"YulBlock","src":"25562:95:1","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"25579:1:1","nodeType":"YulLiteral","src":"25579:1:1","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"25586:3:1","nodeType":"YulLiteral","src":"25586:3:1","type":"","value":"224"},{"kind":"number","nativeSrc":"25591:10:1","nodeType":"YulLiteral","src":"25591:10:1","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"25582:3:1","nodeType":"YulIdentifier","src":"25582:3:1"},"nativeSrc":"25582:20:1","nodeType":"YulFunctionCall","src":"25582:20:1"}],"functionName":{"name":"mstore","nativeSrc":"25572:6:1","nodeType":"YulIdentifier","src":"25572:6:1"},"nativeSrc":"25572:31:1","nodeType":"YulFunctionCall","src":"25572:31:1"},"nativeSrc":"25572:31:1","nodeType":"YulExpressionStatement","src":"25572:31:1"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"25619:1:1","nodeType":"YulLiteral","src":"25619:1:1","type":"","value":"4"},{"kind":"number","nativeSrc":"25622:4:1","nodeType":"YulLiteral","src":"25622:4:1","type":"","value":"0x21"}],"functionName":{"name":"mstore","nativeSrc":"25612:6:1","nodeType":"YulIdentifier","src":"25612:6:1"},"nativeSrc":"25612:15:1","nodeType":"YulFunctionCall","src":"25612:15:1"},"nativeSrc":"25612:15:1","nodeType":"YulExpressionStatement","src":"25612:15:1"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"25643:1:1","nodeType":"YulLiteral","src":"25643:1:1","type":"","value":"0"},{"kind":"number","nativeSrc":"25646:4:1","nodeType":"YulLiteral","src":"25646:4:1","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"25636:6:1","nodeType":"YulIdentifier","src":"25636:6:1"},"nativeSrc":"25636:15:1","nodeType":"YulFunctionCall","src":"25636:15:1"},"nativeSrc":"25636:15:1","nodeType":"YulExpressionStatement","src":"25636:15:1"}]},"name":"panic_error_0x21","nativeSrc":"25530:127:1","nodeType":"YulFunctionDefinition","src":"25530:127:1"},{"body":{"nativeSrc":"25875:276:1","nodeType":"YulBlock","src":"25875:276:1","statements":[{"nativeSrc":"25885:27:1","nodeType":"YulAssignment","src":"25885:27:1","value":{"arguments":[{"name":"headStart","nativeSrc":"25897:9:1","nodeType":"YulIdentifier","src":"25897:9:1"},{"kind":"number","nativeSrc":"25908:3:1","nodeType":"YulLiteral","src":"25908:3:1","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"25893:3:1","nodeType":"YulIdentifier","src":"25893:3:1"},"nativeSrc":"25893:19:1","nodeType":"YulFunctionCall","src":"25893:19:1"},"variableNames":[{"name":"tail","nativeSrc":"25885:4:1","nodeType":"YulIdentifier","src":"25885:4:1"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"25928:9:1","nodeType":"YulIdentifier","src":"25928:9:1"},{"name":"value0","nativeSrc":"25939:6:1","nodeType":"YulIdentifier","src":"25939:6:1"}],"functionName":{"name":"mstore","nativeSrc":"25921:6:1","nodeType":"YulIdentifier","src":"25921:6:1"},"nativeSrc":"25921:25:1","nodeType":"YulFunctionCall","src":"25921:25:1"},"nativeSrc":"25921:25:1","nodeType":"YulExpressionStatement","src":"25921:25:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"25966:9:1","nodeType":"YulIdentifier","src":"25966:9:1"},{"kind":"number","nativeSrc":"25977:2:1","nodeType":"YulLiteral","src":"25977:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"25962:3:1","nodeType":"YulIdentifier","src":"25962:3:1"},"nativeSrc":"25962:18:1","nodeType":"YulFunctionCall","src":"25962:18:1"},{"arguments":[{"name":"value1","nativeSrc":"25986:6:1","nodeType":"YulIdentifier","src":"25986:6:1"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"26002:3:1","nodeType":"YulLiteral","src":"26002:3:1","type":"","value":"160"},{"kind":"number","nativeSrc":"26007:1:1","nodeType":"YulLiteral","src":"26007:1:1","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"25998:3:1","nodeType":"YulIdentifier","src":"25998:3:1"},"nativeSrc":"25998:11:1","nodeType":"YulFunctionCall","src":"25998:11:1"},{"kind":"number","nativeSrc":"26011:1:1","nodeType":"YulLiteral","src":"26011:1:1","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"25994:3:1","nodeType":"YulIdentifier","src":"25994:3:1"},"nativeSrc":"25994:19:1","nodeType":"YulFunctionCall","src":"25994:19:1"}],"functionName":{"name":"and","nativeSrc":"25982:3:1","nodeType":"YulIdentifier","src":"25982:3:1"},"nativeSrc":"25982:32:1","nodeType":"YulFunctionCall","src":"25982:32:1"}],"functionName":{"name":"mstore","nativeSrc":"25955:6:1","nodeType":"YulIdentifier","src":"25955:6:1"},"nativeSrc":"25955:60:1","nodeType":"YulFunctionCall","src":"25955:60:1"},"nativeSrc":"25955:60:1","nodeType":"YulExpressionStatement","src":"25955:60:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"26035:9:1","nodeType":"YulIdentifier","src":"26035:9:1"},{"kind":"number","nativeSrc":"26046:2:1","nodeType":"YulLiteral","src":"26046:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"26031:3:1","nodeType":"YulIdentifier","src":"26031:3:1"},"nativeSrc":"26031:18:1","nodeType":"YulFunctionCall","src":"26031:18:1"},{"name":"value2","nativeSrc":"26051:6:1","nodeType":"YulIdentifier","src":"26051:6:1"}],"functionName":{"name":"mstore","nativeSrc":"26024:6:1","nodeType":"YulIdentifier","src":"26024:6:1"},"nativeSrc":"26024:34:1","nodeType":"YulFunctionCall","src":"26024:34:1"},"nativeSrc":"26024:34:1","nodeType":"YulExpressionStatement","src":"26024:34:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"26078:9:1","nodeType":"YulIdentifier","src":"26078:9:1"},{"kind":"number","nativeSrc":"26089:2:1","nodeType":"YulLiteral","src":"26089:2:1","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"26074:3:1","nodeType":"YulIdentifier","src":"26074:3:1"},"nativeSrc":"26074:18:1","nodeType":"YulFunctionCall","src":"26074:18:1"},{"name":"value3","nativeSrc":"26094:6:1","nodeType":"YulIdentifier","src":"26094:6:1"}],"functionName":{"name":"mstore","nativeSrc":"26067:6:1","nodeType":"YulIdentifier","src":"26067:6:1"},"nativeSrc":"26067:34:1","nodeType":"YulFunctionCall","src":"26067:34:1"},"nativeSrc":"26067:34:1","nodeType":"YulExpressionStatement","src":"26067:34:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"26121:9:1","nodeType":"YulIdentifier","src":"26121:9:1"},{"kind":"number","nativeSrc":"26132:3:1","nodeType":"YulLiteral","src":"26132:3:1","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"26117:3:1","nodeType":"YulIdentifier","src":"26117:3:1"},"nativeSrc":"26117:19:1","nodeType":"YulFunctionCall","src":"26117:19:1"},{"name":"value4","nativeSrc":"26138:6:1","nodeType":"YulIdentifier","src":"26138:6:1"}],"functionName":{"name":"mstore","nativeSrc":"26110:6:1","nodeType":"YulIdentifier","src":"26110:6:1"},"nativeSrc":"26110:35:1","nodeType":"YulFunctionCall","src":"26110:35:1"},"nativeSrc":"26110:35:1","nodeType":"YulExpressionStatement","src":"26110:35:1"}]},"name":"abi_encode_tuple_t_bytes32_t_address_t_uint256_t_uint256_t_uint256__to_t_bytes32_t_address_t_uint256_t_uint256_t_uint256__fromStack_reversed","nativeSrc":"25662:489:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"25812:9:1","nodeType":"YulTypedName","src":"25812:9:1","type":""},{"name":"value4","nativeSrc":"25823:6:1","nodeType":"YulTypedName","src":"25823:6:1","type":""},{"name":"value3","nativeSrc":"25831:6:1","nodeType":"YulTypedName","src":"25831:6:1","type":""},{"name":"value2","nativeSrc":"25839:6:1","nodeType":"YulTypedName","src":"25839:6:1","type":""},{"name":"value1","nativeSrc":"25847:6:1","nodeType":"YulTypedName","src":"25847:6:1","type":""},{"name":"value0","nativeSrc":"25855:6:1","nodeType":"YulTypedName","src":"25855:6:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"25866:4:1","nodeType":"YulTypedName","src":"25866:4:1","type":""}],"src":"25662:489:1"},{"body":{"nativeSrc":"26330:179:1","nodeType":"YulBlock","src":"26330:179:1","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"26347:9:1","nodeType":"YulIdentifier","src":"26347:9:1"},{"kind":"number","nativeSrc":"26358:2:1","nodeType":"YulLiteral","src":"26358:2:1","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"26340:6:1","nodeType":"YulIdentifier","src":"26340:6:1"},"nativeSrc":"26340:21:1","nodeType":"YulFunctionCall","src":"26340:21:1"},"nativeSrc":"26340:21:1","nodeType":"YulExpressionStatement","src":"26340:21:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"26381:9:1","nodeType":"YulIdentifier","src":"26381:9:1"},{"kind":"number","nativeSrc":"26392:2:1","nodeType":"YulLiteral","src":"26392:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"26377:3:1","nodeType":"YulIdentifier","src":"26377:3:1"},"nativeSrc":"26377:18:1","nodeType":"YulFunctionCall","src":"26377:18:1"},{"kind":"number","nativeSrc":"26397:2:1","nodeType":"YulLiteral","src":"26397:2:1","type":"","value":"29"}],"functionName":{"name":"mstore","nativeSrc":"26370:6:1","nodeType":"YulIdentifier","src":"26370:6:1"},"nativeSrc":"26370:30:1","nodeType":"YulFunctionCall","src":"26370:30:1"},"nativeSrc":"26370:30:1","nodeType":"YulExpressionStatement","src":"26370:30:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"26420:9:1","nodeType":"YulIdentifier","src":"26420:9:1"},{"kind":"number","nativeSrc":"26431:2:1","nodeType":"YulLiteral","src":"26431:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"26416:3:1","nodeType":"YulIdentifier","src":"26416:3:1"},"nativeSrc":"26416:18:1","nodeType":"YulFunctionCall","src":"26416:18:1"},{"hexValue":"43414c4c45525f4e4f545f50454e44494e475f524f4c455f41444d494e","kind":"string","nativeSrc":"26436:31:1","nodeType":"YulLiteral","src":"26436:31:1","type":"","value":"CALLER_NOT_PENDING_ROLE_ADMIN"}],"functionName":{"name":"mstore","nativeSrc":"26409:6:1","nodeType":"YulIdentifier","src":"26409:6:1"},"nativeSrc":"26409:59:1","nodeType":"YulFunctionCall","src":"26409:59:1"},"nativeSrc":"26409:59:1","nodeType":"YulExpressionStatement","src":"26409:59:1"},{"nativeSrc":"26477:26:1","nodeType":"YulAssignment","src":"26477:26:1","value":{"arguments":[{"name":"headStart","nativeSrc":"26489:9:1","nodeType":"YulIdentifier","src":"26489:9:1"},{"kind":"number","nativeSrc":"26500:2:1","nodeType":"YulLiteral","src":"26500:2:1","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"26485:3:1","nodeType":"YulIdentifier","src":"26485:3:1"},"nativeSrc":"26485:18:1","nodeType":"YulFunctionCall","src":"26485:18:1"},"variableNames":[{"name":"tail","nativeSrc":"26477:4:1","nodeType":"YulIdentifier","src":"26477:4:1"}]}]},"name":"abi_encode_tuple_t_stringliteral_e80295a9867834b2dfe1d7606b122307d35ebaa940c20b448f18824a9256df9d__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"26156:353:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"26307:9:1","nodeType":"YulTypedName","src":"26307:9:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"26321:4:1","nodeType":"YulTypedName","src":"26321:4:1","type":""}],"src":"26156:353:1"},{"body":{"nativeSrc":"26688:178:1","nodeType":"YulBlock","src":"26688:178:1","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"26705:9:1","nodeType":"YulIdentifier","src":"26705:9:1"},{"kind":"number","nativeSrc":"26716:2:1","nodeType":"YulLiteral","src":"26716:2:1","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"26698:6:1","nodeType":"YulIdentifier","src":"26698:6:1"},"nativeSrc":"26698:21:1","nodeType":"YulFunctionCall","src":"26698:21:1"},"nativeSrc":"26698:21:1","nodeType":"YulExpressionStatement","src":"26698:21:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"26739:9:1","nodeType":"YulIdentifier","src":"26739:9:1"},{"kind":"number","nativeSrc":"26750:2:1","nodeType":"YulLiteral","src":"26750:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"26735:3:1","nodeType":"YulIdentifier","src":"26735:3:1"},"nativeSrc":"26735:18:1","nodeType":"YulFunctionCall","src":"26735:18:1"},{"kind":"number","nativeSrc":"26755:2:1","nodeType":"YulLiteral","src":"26755:2:1","type":"","value":"28"}],"functionName":{"name":"mstore","nativeSrc":"26728:6:1","nodeType":"YulIdentifier","src":"26728:6:1"},"nativeSrc":"26728:30:1","nodeType":"YulFunctionCall","src":"26728:30:1"},"nativeSrc":"26728:30:1","nodeType":"YulExpressionStatement","src":"26728:30:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"26778:9:1","nodeType":"YulIdentifier","src":"26778:9:1"},{"kind":"number","nativeSrc":"26789:2:1","nodeType":"YulLiteral","src":"26789:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"26774:3:1","nodeType":"YulIdentifier","src":"26774:3:1"},"nativeSrc":"26774:18:1","nodeType":"YulFunctionCall","src":"26774:18:1"},{"hexValue":"4d4154485f4d554c5449504c49434154494f4e5f4f564552464c4f57","kind":"string","nativeSrc":"26794:30:1","nodeType":"YulLiteral","src":"26794:30:1","type":"","value":"MATH_MULTIPLICATION_OVERFLOW"}],"functionName":{"name":"mstore","nativeSrc":"26767:6:1","nodeType":"YulIdentifier","src":"26767:6:1"},"nativeSrc":"26767:58:1","nodeType":"YulFunctionCall","src":"26767:58:1"},"nativeSrc":"26767:58:1","nodeType":"YulExpressionStatement","src":"26767:58:1"},{"nativeSrc":"26834:26:1","nodeType":"YulAssignment","src":"26834:26:1","value":{"arguments":[{"name":"headStart","nativeSrc":"26846:9:1","nodeType":"YulIdentifier","src":"26846:9:1"},{"kind":"number","nativeSrc":"26857:2:1","nodeType":"YulLiteral","src":"26857:2:1","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"26842:3:1","nodeType":"YulIdentifier","src":"26842:3:1"},"nativeSrc":"26842:18:1","nodeType":"YulFunctionCall","src":"26842:18:1"},"variableNames":[{"name":"tail","nativeSrc":"26834:4:1","nodeType":"YulIdentifier","src":"26834:4:1"}]}]},"name":"abi_encode_tuple_t_stringliteral_6b96bc99e56604df6600e4ce66f7e91bdc3417f453200fce123d801c60b50ff8__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"26514:352:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"26665:9:1","nodeType":"YulTypedName","src":"26665:9:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"26679:4:1","nodeType":"YulTypedName","src":"26679:4:1","type":""}],"src":"26514:352:1"},{"body":{"nativeSrc":"26917:142:1","nodeType":"YulBlock","src":"26917:142:1","statements":[{"nativeSrc":"26927:37:1","nodeType":"YulVariableDeclaration","src":"26927:37:1","value":{"arguments":[{"name":"value","nativeSrc":"26946:5:1","nodeType":"YulIdentifier","src":"26946:5:1"},{"kind":"number","nativeSrc":"26953:10:1","nodeType":"YulLiteral","src":"26953:10:1","type":"","value":"0xffffffff"}],"functionName":{"name":"and","nativeSrc":"26942:3:1","nodeType":"YulIdentifier","src":"26942:3:1"},"nativeSrc":"26942:22:1","nodeType":"YulFunctionCall","src":"26942:22:1"},"variables":[{"name":"value_1","nativeSrc":"26931:7:1","nodeType":"YulTypedName","src":"26931:7:1","type":""}]},{"body":{"nativeSrc":"27000:22:1","nodeType":"YulBlock","src":"27000:22:1","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"27002:16:1","nodeType":"YulIdentifier","src":"27002:16:1"},"nativeSrc":"27002:18:1","nodeType":"YulFunctionCall","src":"27002:18:1"},"nativeSrc":"27002:18:1","nodeType":"YulExpressionStatement","src":"27002:18:1"}]},"condition":{"arguments":[{"name":"value_1","nativeSrc":"26979:7:1","nodeType":"YulIdentifier","src":"26979:7:1"},{"kind":"number","nativeSrc":"26988:10:1","nodeType":"YulLiteral","src":"26988:10:1","type":"","value":"0xffffffff"}],"functionName":{"name":"eq","nativeSrc":"26976:2:1","nodeType":"YulIdentifier","src":"26976:2:1"},"nativeSrc":"26976:23:1","nodeType":"YulFunctionCall","src":"26976:23:1"},"nativeSrc":"26973:49:1","nodeType":"YulIf","src":"26973:49:1"},{"nativeSrc":"27031:22:1","nodeType":"YulAssignment","src":"27031:22:1","value":{"arguments":[{"name":"value_1","nativeSrc":"27042:7:1","nodeType":"YulIdentifier","src":"27042:7:1"},{"kind":"number","nativeSrc":"27051:1:1","nodeType":"YulLiteral","src":"27051:1:1","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"27038:3:1","nodeType":"YulIdentifier","src":"27038:3:1"},"nativeSrc":"27038:15:1","nodeType":"YulFunctionCall","src":"27038:15:1"},"variableNames":[{"name":"ret","nativeSrc":"27031:3:1","nodeType":"YulIdentifier","src":"27031:3:1"}]}]},"name":"increment_t_uint32","nativeSrc":"26871:188:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"26899:5:1","nodeType":"YulTypedName","src":"26899:5:1","type":""}],"returnVariables":[{"name":"ret","nativeSrc":"26909:3:1","nodeType":"YulTypedName","src":"26909:3:1","type":""}],"src":"26871:188:1"},{"body":{"nativeSrc":"27238:226:1","nodeType":"YulBlock","src":"27238:226:1","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"27255:9:1","nodeType":"YulIdentifier","src":"27255:9:1"},{"kind":"number","nativeSrc":"27266:2:1","nodeType":"YulLiteral","src":"27266:2:1","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"27248:6:1","nodeType":"YulIdentifier","src":"27248:6:1"},"nativeSrc":"27248:21:1","nodeType":"YulFunctionCall","src":"27248:21:1"},"nativeSrc":"27248:21:1","nodeType":"YulExpressionStatement","src":"27248:21:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"27289:9:1","nodeType":"YulIdentifier","src":"27289:9:1"},{"kind":"number","nativeSrc":"27300:2:1","nodeType":"YulLiteral","src":"27300:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"27285:3:1","nodeType":"YulIdentifier","src":"27285:3:1"},"nativeSrc":"27285:18:1","nodeType":"YulFunctionCall","src":"27285:18:1"},{"kind":"number","nativeSrc":"27305:2:1","nodeType":"YulLiteral","src":"27305:2:1","type":"","value":"36"}],"functionName":{"name":"mstore","nativeSrc":"27278:6:1","nodeType":"YulIdentifier","src":"27278:6:1"},"nativeSrc":"27278:30:1","nodeType":"YulFunctionCall","src":"27278:30:1"},"nativeSrc":"27278:30:1","nodeType":"YulExpressionStatement","src":"27278:30:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"27328:9:1","nodeType":"YulIdentifier","src":"27328:9:1"},{"kind":"number","nativeSrc":"27339:2:1","nodeType":"YulLiteral","src":"27339:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"27324:3:1","nodeType":"YulIdentifier","src":"27324:3:1"},"nativeSrc":"27324:18:1","nodeType":"YulFunctionCall","src":"27324:18:1"},{"hexValue":"45524332303a20617070726f76652066726f6d20746865207a65726f20616464","kind":"string","nativeSrc":"27344:34:1","nodeType":"YulLiteral","src":"27344:34:1","type":"","value":"ERC20: approve from the zero add"}],"functionName":{"name":"mstore","nativeSrc":"27317:6:1","nodeType":"YulIdentifier","src":"27317:6:1"},"nativeSrc":"27317:62:1","nodeType":"YulFunctionCall","src":"27317:62:1"},"nativeSrc":"27317:62:1","nodeType":"YulExpressionStatement","src":"27317:62:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"27399:9:1","nodeType":"YulIdentifier","src":"27399:9:1"},{"kind":"number","nativeSrc":"27410:2:1","nodeType":"YulLiteral","src":"27410:2:1","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"27395:3:1","nodeType":"YulIdentifier","src":"27395:3:1"},"nativeSrc":"27395:18:1","nodeType":"YulFunctionCall","src":"27395:18:1"},{"hexValue":"72657373","kind":"string","nativeSrc":"27415:6:1","nodeType":"YulLiteral","src":"27415:6:1","type":"","value":"ress"}],"functionName":{"name":"mstore","nativeSrc":"27388:6:1","nodeType":"YulIdentifier","src":"27388:6:1"},"nativeSrc":"27388:34:1","nodeType":"YulFunctionCall","src":"27388:34:1"},"nativeSrc":"27388:34:1","nodeType":"YulExpressionStatement","src":"27388:34:1"},{"nativeSrc":"27431:27:1","nodeType":"YulAssignment","src":"27431:27:1","value":{"arguments":[{"name":"headStart","nativeSrc":"27443:9:1","nodeType":"YulIdentifier","src":"27443:9:1"},{"kind":"number","nativeSrc":"27454:3:1","nodeType":"YulLiteral","src":"27454:3:1","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"27439:3:1","nodeType":"YulIdentifier","src":"27439:3:1"},"nativeSrc":"27439:19:1","nodeType":"YulFunctionCall","src":"27439:19:1"},"variableNames":[{"name":"tail","nativeSrc":"27431:4:1","nodeType":"YulIdentifier","src":"27431:4:1"}]}]},"name":"abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"27064:400:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"27215:9:1","nodeType":"YulTypedName","src":"27215:9:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"27229:4:1","nodeType":"YulTypedName","src":"27229:4:1","type":""}],"src":"27064:400:1"},{"body":{"nativeSrc":"27643:224:1","nodeType":"YulBlock","src":"27643:224:1","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"27660:9:1","nodeType":"YulIdentifier","src":"27660:9:1"},{"kind":"number","nativeSrc":"27671:2:1","nodeType":"YulLiteral","src":"27671:2:1","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"27653:6:1","nodeType":"YulIdentifier","src":"27653:6:1"},"nativeSrc":"27653:21:1","nodeType":"YulFunctionCall","src":"27653:21:1"},"nativeSrc":"27653:21:1","nodeType":"YulExpressionStatement","src":"27653:21:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"27694:9:1","nodeType":"YulIdentifier","src":"27694:9:1"},{"kind":"number","nativeSrc":"27705:2:1","nodeType":"YulLiteral","src":"27705:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"27690:3:1","nodeType":"YulIdentifier","src":"27690:3:1"},"nativeSrc":"27690:18:1","nodeType":"YulFunctionCall","src":"27690:18:1"},{"kind":"number","nativeSrc":"27710:2:1","nodeType":"YulLiteral","src":"27710:2:1","type":"","value":"34"}],"functionName":{"name":"mstore","nativeSrc":"27683:6:1","nodeType":"YulIdentifier","src":"27683:6:1"},"nativeSrc":"27683:30:1","nodeType":"YulFunctionCall","src":"27683:30:1"},"nativeSrc":"27683:30:1","nodeType":"YulExpressionStatement","src":"27683:30:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"27733:9:1","nodeType":"YulIdentifier","src":"27733:9:1"},{"kind":"number","nativeSrc":"27744:2:1","nodeType":"YulLiteral","src":"27744:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"27729:3:1","nodeType":"YulIdentifier","src":"27729:3:1"},"nativeSrc":"27729:18:1","nodeType":"YulFunctionCall","src":"27729:18:1"},{"hexValue":"45524332303a20617070726f766520746f20746865207a65726f206164647265","kind":"string","nativeSrc":"27749:34:1","nodeType":"YulLiteral","src":"27749:34:1","type":"","value":"ERC20: approve to the zero addre"}],"functionName":{"name":"mstore","nativeSrc":"27722:6:1","nodeType":"YulIdentifier","src":"27722:6:1"},"nativeSrc":"27722:62:1","nodeType":"YulFunctionCall","src":"27722:62:1"},"nativeSrc":"27722:62:1","nodeType":"YulExpressionStatement","src":"27722:62:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"27804:9:1","nodeType":"YulIdentifier","src":"27804:9:1"},{"kind":"number","nativeSrc":"27815:2:1","nodeType":"YulLiteral","src":"27815:2:1","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"27800:3:1","nodeType":"YulIdentifier","src":"27800:3:1"},"nativeSrc":"27800:18:1","nodeType":"YulFunctionCall","src":"27800:18:1"},{"hexValue":"7373","kind":"string","nativeSrc":"27820:4:1","nodeType":"YulLiteral","src":"27820:4:1","type":"","value":"ss"}],"functionName":{"name":"mstore","nativeSrc":"27793:6:1","nodeType":"YulIdentifier","src":"27793:6:1"},"nativeSrc":"27793:32:1","nodeType":"YulFunctionCall","src":"27793:32:1"},"nativeSrc":"27793:32:1","nodeType":"YulExpressionStatement","src":"27793:32:1"},{"nativeSrc":"27834:27:1","nodeType":"YulAssignment","src":"27834:27:1","value":{"arguments":[{"name":"headStart","nativeSrc":"27846:9:1","nodeType":"YulIdentifier","src":"27846:9:1"},{"kind":"number","nativeSrc":"27857:3:1","nodeType":"YulLiteral","src":"27857:3:1","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"27842:3:1","nodeType":"YulIdentifier","src":"27842:3:1"},"nativeSrc":"27842:19:1","nodeType":"YulFunctionCall","src":"27842:19:1"},"variableNames":[{"name":"tail","nativeSrc":"27834:4:1","nodeType":"YulIdentifier","src":"27834:4:1"}]}]},"name":"abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"27469:398:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"27620:9:1","nodeType":"YulTypedName","src":"27620:9:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"27634:4:1","nodeType":"YulTypedName","src":"27634:4:1","type":""}],"src":"27469:398:1"},{"body":{"nativeSrc":"28046:169:1","nodeType":"YulBlock","src":"28046:169:1","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"28063:9:1","nodeType":"YulIdentifier","src":"28063:9:1"},{"kind":"number","nativeSrc":"28074:2:1","nodeType":"YulLiteral","src":"28074:2:1","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"28056:6:1","nodeType":"YulIdentifier","src":"28056:6:1"},"nativeSrc":"28056:21:1","nodeType":"YulFunctionCall","src":"28056:21:1"},"nativeSrc":"28056:21:1","nodeType":"YulExpressionStatement","src":"28056:21:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"28097:9:1","nodeType":"YulIdentifier","src":"28097:9:1"},{"kind":"number","nativeSrc":"28108:2:1","nodeType":"YulLiteral","src":"28108:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"28093:3:1","nodeType":"YulIdentifier","src":"28093:3:1"},"nativeSrc":"28093:18:1","nodeType":"YulFunctionCall","src":"28093:18:1"},{"kind":"number","nativeSrc":"28113:2:1","nodeType":"YulLiteral","src":"28113:2:1","type":"","value":"19"}],"functionName":{"name":"mstore","nativeSrc":"28086:6:1","nodeType":"YulIdentifier","src":"28086:6:1"},"nativeSrc":"28086:30:1","nodeType":"YulFunctionCall","src":"28086:30:1"},"nativeSrc":"28086:30:1","nodeType":"YulExpressionStatement","src":"28086:30:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"28136:9:1","nodeType":"YulIdentifier","src":"28136:9:1"},{"kind":"number","nativeSrc":"28147:2:1","nodeType":"YulLiteral","src":"28147:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"28132:3:1","nodeType":"YulIdentifier","src":"28132:3:1"},"nativeSrc":"28132:18:1","nodeType":"YulFunctionCall","src":"28132:18:1"},{"hexValue":"494e56414c49445f5a45524f5f414d4f554e54","kind":"string","nativeSrc":"28152:21:1","nodeType":"YulLiteral","src":"28152:21:1","type":"","value":"INVALID_ZERO_AMOUNT"}],"functionName":{"name":"mstore","nativeSrc":"28125:6:1","nodeType":"YulIdentifier","src":"28125:6:1"},"nativeSrc":"28125:49:1","nodeType":"YulFunctionCall","src":"28125:49:1"},"nativeSrc":"28125:49:1","nodeType":"YulExpressionStatement","src":"28125:49:1"},{"nativeSrc":"28183:26:1","nodeType":"YulAssignment","src":"28183:26:1","value":{"arguments":[{"name":"headStart","nativeSrc":"28195:9:1","nodeType":"YulIdentifier","src":"28195:9:1"},{"kind":"number","nativeSrc":"28206:2:1","nodeType":"YulLiteral","src":"28206:2:1","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"28191:3:1","nodeType":"YulIdentifier","src":"28191:3:1"},"nativeSrc":"28191:18:1","nodeType":"YulFunctionCall","src":"28191:18:1"},"variableNames":[{"name":"tail","nativeSrc":"28183:4:1","nodeType":"YulIdentifier","src":"28183:4:1"}]}]},"name":"abi_encode_tuple_t_stringliteral_33d2eb294587ef7b32eb48e48695ebfec45a9c8922ec7d1c444cfad1fb208e8d__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"27872:343:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"28023:9:1","nodeType":"YulTypedName","src":"28023:9:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"28037:4:1","nodeType":"YulTypedName","src":"28037:4:1","type":""}],"src":"27872:343:1"},{"body":{"nativeSrc":"28394:171:1","nodeType":"YulBlock","src":"28394:171:1","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"28411:9:1","nodeType":"YulIdentifier","src":"28411:9:1"},{"kind":"number","nativeSrc":"28422:2:1","nodeType":"YulLiteral","src":"28422:2:1","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"28404:6:1","nodeType":"YulIdentifier","src":"28404:6:1"},"nativeSrc":"28404:21:1","nodeType":"YulFunctionCall","src":"28404:21:1"},"nativeSrc":"28404:21:1","nodeType":"YulExpressionStatement","src":"28404:21:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"28445:9:1","nodeType":"YulIdentifier","src":"28445:9:1"},{"kind":"number","nativeSrc":"28456:2:1","nodeType":"YulLiteral","src":"28456:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"28441:3:1","nodeType":"YulIdentifier","src":"28441:3:1"},"nativeSrc":"28441:18:1","nodeType":"YulFunctionCall","src":"28441:18:1"},{"kind":"number","nativeSrc":"28461:2:1","nodeType":"YulLiteral","src":"28461:2:1","type":"","value":"21"}],"functionName":{"name":"mstore","nativeSrc":"28434:6:1","nodeType":"YulIdentifier","src":"28434:6:1"},"nativeSrc":"28434:30:1","nodeType":"YulFunctionCall","src":"28434:30:1"},"nativeSrc":"28434:30:1","nodeType":"YulExpressionStatement","src":"28434:30:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"28484:9:1","nodeType":"YulIdentifier","src":"28484:9:1"},{"kind":"number","nativeSrc":"28495:2:1","nodeType":"YulLiteral","src":"28495:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"28480:3:1","nodeType":"YulIdentifier","src":"28480:3:1"},"nativeSrc":"28480:18:1","nodeType":"YulFunctionCall","src":"28480:18:1"},{"hexValue":"494e53554646494349454e545f434f4f4c444f574e","kind":"string","nativeSrc":"28500:23:1","nodeType":"YulLiteral","src":"28500:23:1","type":"","value":"INSUFFICIENT_COOLDOWN"}],"functionName":{"name":"mstore","nativeSrc":"28473:6:1","nodeType":"YulIdentifier","src":"28473:6:1"},"nativeSrc":"28473:51:1","nodeType":"YulFunctionCall","src":"28473:51:1"},"nativeSrc":"28473:51:1","nodeType":"YulExpressionStatement","src":"28473:51:1"},{"nativeSrc":"28533:26:1","nodeType":"YulAssignment","src":"28533:26:1","value":{"arguments":[{"name":"headStart","nativeSrc":"28545:9:1","nodeType":"YulIdentifier","src":"28545:9:1"},{"kind":"number","nativeSrc":"28556:2:1","nodeType":"YulLiteral","src":"28556:2:1","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"28541:3:1","nodeType":"YulIdentifier","src":"28541:3:1"},"nativeSrc":"28541:18:1","nodeType":"YulFunctionCall","src":"28541:18:1"},"variableNames":[{"name":"tail","nativeSrc":"28533:4:1","nodeType":"YulIdentifier","src":"28533:4:1"}]}]},"name":"abi_encode_tuple_t_stringliteral_66cceaab4b8a6f427cff5482a526862a61c3ef92948b70aceb4a8f720a8f0ead__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"28220:345:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"28371:9:1","nodeType":"YulTypedName","src":"28371:9:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"28385:4:1","nodeType":"YulTypedName","src":"28385:4:1","type":""}],"src":"28220:345:1"},{"body":{"nativeSrc":"28744:173:1","nodeType":"YulBlock","src":"28744:173:1","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"28761:9:1","nodeType":"YulIdentifier","src":"28761:9:1"},{"kind":"number","nativeSrc":"28772:2:1","nodeType":"YulLiteral","src":"28772:2:1","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"28754:6:1","nodeType":"YulIdentifier","src":"28754:6:1"},"nativeSrc":"28754:21:1","nodeType":"YulFunctionCall","src":"28754:21:1"},"nativeSrc":"28754:21:1","nodeType":"YulExpressionStatement","src":"28754:21:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"28795:9:1","nodeType":"YulIdentifier","src":"28795:9:1"},{"kind":"number","nativeSrc":"28806:2:1","nodeType":"YulLiteral","src":"28806:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"28791:3:1","nodeType":"YulIdentifier","src":"28791:3:1"},"nativeSrc":"28791:18:1","nodeType":"YulFunctionCall","src":"28791:18:1"},{"kind":"number","nativeSrc":"28811:2:1","nodeType":"YulLiteral","src":"28811:2:1","type":"","value":"23"}],"functionName":{"name":"mstore","nativeSrc":"28784:6:1","nodeType":"YulIdentifier","src":"28784:6:1"},"nativeSrc":"28784:30:1","nodeType":"YulFunctionCall","src":"28784:30:1"},"nativeSrc":"28784:30:1","nodeType":"YulExpressionStatement","src":"28784:30:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"28834:9:1","nodeType":"YulIdentifier","src":"28834:9:1"},{"kind":"number","nativeSrc":"28845:2:1","nodeType":"YulLiteral","src":"28845:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"28830:3:1","nodeType":"YulIdentifier","src":"28830:3:1"},"nativeSrc":"28830:18:1","nodeType":"YulFunctionCall","src":"28830:18:1"},{"hexValue":"554e5354414b455f57494e444f575f46494e4953484544","kind":"string","nativeSrc":"28850:25:1","nodeType":"YulLiteral","src":"28850:25:1","type":"","value":"UNSTAKE_WINDOW_FINISHED"}],"functionName":{"name":"mstore","nativeSrc":"28823:6:1","nodeType":"YulIdentifier","src":"28823:6:1"},"nativeSrc":"28823:53:1","nodeType":"YulFunctionCall","src":"28823:53:1"},"nativeSrc":"28823:53:1","nodeType":"YulExpressionStatement","src":"28823:53:1"},{"nativeSrc":"28885:26:1","nodeType":"YulAssignment","src":"28885:26:1","value":{"arguments":[{"name":"headStart","nativeSrc":"28897:9:1","nodeType":"YulIdentifier","src":"28897:9:1"},{"kind":"number","nativeSrc":"28908:2:1","nodeType":"YulLiteral","src":"28908:2:1","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"28893:3:1","nodeType":"YulIdentifier","src":"28893:3:1"},"nativeSrc":"28893:18:1","nodeType":"YulFunctionCall","src":"28893:18:1"},"variableNames":[{"name":"tail","nativeSrc":"28885:4:1","nodeType":"YulIdentifier","src":"28885:4:1"}]}]},"name":"abi_encode_tuple_t_stringliteral_c6959acf2335419e4a75195e2fb1c276a96baa5b7fab6be19b14b9420a4bd962__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"28570:347:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"28721:9:1","nodeType":"YulTypedName","src":"28721:9:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"28735:4:1","nodeType":"YulTypedName","src":"28735:4:1","type":""}],"src":"28570:347:1"},{"body":{"nativeSrc":"29096:177:1","nodeType":"YulBlock","src":"29096:177:1","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"29113:9:1","nodeType":"YulIdentifier","src":"29113:9:1"},{"kind":"number","nativeSrc":"29124:2:1","nodeType":"YulLiteral","src":"29124:2:1","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"29106:6:1","nodeType":"YulIdentifier","src":"29106:6:1"},"nativeSrc":"29106:21:1","nodeType":"YulFunctionCall","src":"29106:21:1"},"nativeSrc":"29106:21:1","nodeType":"YulExpressionStatement","src":"29106:21:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"29147:9:1","nodeType":"YulIdentifier","src":"29147:9:1"},{"kind":"number","nativeSrc":"29158:2:1","nodeType":"YulLiteral","src":"29158:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"29143:3:1","nodeType":"YulIdentifier","src":"29143:3:1"},"nativeSrc":"29143:18:1","nodeType":"YulFunctionCall","src":"29143:18:1"},{"kind":"number","nativeSrc":"29163:2:1","nodeType":"YulLiteral","src":"29163:2:1","type":"","value":"27"}],"functionName":{"name":"mstore","nativeSrc":"29136:6:1","nodeType":"YulIdentifier","src":"29136:6:1"},"nativeSrc":"29136:30:1","nodeType":"YulFunctionCall","src":"29136:30:1"},"nativeSrc":"29136:30:1","nodeType":"YulExpressionStatement","src":"29136:30:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"29186:9:1","nodeType":"YulIdentifier","src":"29186:9:1"},{"kind":"number","nativeSrc":"29197:2:1","nodeType":"YulLiteral","src":"29197:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"29182:3:1","nodeType":"YulIdentifier","src":"29182:3:1"},"nativeSrc":"29182:18:1","nodeType":"YulFunctionCall","src":"29182:18:1"},{"hexValue":"494e56414c49445f5a45524f5f4d41585f52454445454d41424c45","kind":"string","nativeSrc":"29202:29:1","nodeType":"YulLiteral","src":"29202:29:1","type":"","value":"INVALID_ZERO_MAX_REDEEMABLE"}],"functionName":{"name":"mstore","nativeSrc":"29175:6:1","nodeType":"YulIdentifier","src":"29175:6:1"},"nativeSrc":"29175:57:1","nodeType":"YulFunctionCall","src":"29175:57:1"},"nativeSrc":"29175:57:1","nodeType":"YulExpressionStatement","src":"29175:57:1"},{"nativeSrc":"29241:26:1","nodeType":"YulAssignment","src":"29241:26:1","value":{"arguments":[{"name":"headStart","nativeSrc":"29253:9:1","nodeType":"YulIdentifier","src":"29253:9:1"},{"kind":"number","nativeSrc":"29264:2:1","nodeType":"YulLiteral","src":"29264:2:1","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"29249:3:1","nodeType":"YulIdentifier","src":"29249:3:1"},"nativeSrc":"29249:18:1","nodeType":"YulFunctionCall","src":"29249:18:1"},"variableNames":[{"name":"tail","nativeSrc":"29241:4:1","nodeType":"YulIdentifier","src":"29241:4:1"}]}]},"name":"abi_encode_tuple_t_stringliteral_fa2c368672f35856ca139c6dfba7cf36845bc24e7a2795ed29d2eba4e8313209__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"28922:351:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"29073:9:1","nodeType":"YulTypedName","src":"29073:9:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"29087:4:1","nodeType":"YulTypedName","src":"29087:4:1","type":""}],"src":"28922:351:1"},{"body":{"nativeSrc":"29327:149:1","nodeType":"YulBlock","src":"29327:149:1","statements":[{"nativeSrc":"29337:69:1","nodeType":"YulAssignment","src":"29337:69:1","value":{"arguments":[{"arguments":[{"name":"x","nativeSrc":"29353:1:1","nodeType":"YulIdentifier","src":"29353:1:1"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"29364:3:1","nodeType":"YulLiteral","src":"29364:3:1","type":"","value":"216"},{"kind":"number","nativeSrc":"29369:1:1","nodeType":"YulLiteral","src":"29369:1:1","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"29360:3:1","nodeType":"YulIdentifier","src":"29360:3:1"},"nativeSrc":"29360:11:1","nodeType":"YulFunctionCall","src":"29360:11:1"},{"kind":"number","nativeSrc":"29373:1:1","nodeType":"YulLiteral","src":"29373:1:1","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"29356:3:1","nodeType":"YulIdentifier","src":"29356:3:1"},"nativeSrc":"29356:19:1","nodeType":"YulFunctionCall","src":"29356:19:1"}],"functionName":{"name":"and","nativeSrc":"29349:3:1","nodeType":"YulIdentifier","src":"29349:3:1"},"nativeSrc":"29349:27:1","nodeType":"YulFunctionCall","src":"29349:27:1"},{"arguments":[{"name":"y","nativeSrc":"29382:1:1","nodeType":"YulIdentifier","src":"29382:1:1"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"29393:3:1","nodeType":"YulLiteral","src":"29393:3:1","type":"","value":"216"},{"kind":"number","nativeSrc":"29398:1:1","nodeType":"YulLiteral","src":"29398:1:1","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"29389:3:1","nodeType":"YulIdentifier","src":"29389:3:1"},"nativeSrc":"29389:11:1","nodeType":"YulFunctionCall","src":"29389:11:1"},{"kind":"number","nativeSrc":"29402:1:1","nodeType":"YulLiteral","src":"29402:1:1","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"29385:3:1","nodeType":"YulIdentifier","src":"29385:3:1"},"nativeSrc":"29385:19:1","nodeType":"YulFunctionCall","src":"29385:19:1"}],"functionName":{"name":"and","nativeSrc":"29378:3:1","nodeType":"YulIdentifier","src":"29378:3:1"},"nativeSrc":"29378:27:1","nodeType":"YulFunctionCall","src":"29378:27:1"}],"functionName":{"name":"sub","nativeSrc":"29345:3:1","nodeType":"YulIdentifier","src":"29345:3:1"},"nativeSrc":"29345:61:1","nodeType":"YulFunctionCall","src":"29345:61:1"},"variableNames":[{"name":"diff","nativeSrc":"29337:4:1","nodeType":"YulIdentifier","src":"29337:4:1"}]},{"body":{"nativeSrc":"29448:22:1","nodeType":"YulBlock","src":"29448:22:1","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"29450:16:1","nodeType":"YulIdentifier","src":"29450:16:1"},"nativeSrc":"29450:18:1","nodeType":"YulFunctionCall","src":"29450:18:1"},"nativeSrc":"29450:18:1","nodeType":"YulExpressionStatement","src":"29450:18:1"}]},"condition":{"arguments":[{"name":"diff","nativeSrc":"29421:4:1","nodeType":"YulIdentifier","src":"29421:4:1"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"29435:3:1","nodeType":"YulLiteral","src":"29435:3:1","type":"","value":"216"},{"kind":"number","nativeSrc":"29440:1:1","nodeType":"YulLiteral","src":"29440:1:1","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"29431:3:1","nodeType":"YulIdentifier","src":"29431:3:1"},"nativeSrc":"29431:11:1","nodeType":"YulFunctionCall","src":"29431:11:1"},{"kind":"number","nativeSrc":"29444:1:1","nodeType":"YulLiteral","src":"29444:1:1","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"29427:3:1","nodeType":"YulIdentifier","src":"29427:3:1"},"nativeSrc":"29427:19:1","nodeType":"YulFunctionCall","src":"29427:19:1"}],"functionName":{"name":"gt","nativeSrc":"29418:2:1","nodeType":"YulIdentifier","src":"29418:2:1"},"nativeSrc":"29418:29:1","nodeType":"YulFunctionCall","src":"29418:29:1"},"nativeSrc":"29415:55:1","nodeType":"YulIf","src":"29415:55:1"}]},"name":"checked_sub_t_uint216","nativeSrc":"29278:198:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"29309:1:1","nodeType":"YulTypedName","src":"29309:1:1","type":""},{"name":"y","nativeSrc":"29312:1:1","nodeType":"YulTypedName","src":"29312:1:1","type":""}],"returnVariables":[{"name":"diff","nativeSrc":"29318:4:1","nodeType":"YulTypedName","src":"29318:4:1","type":""}],"src":"29278:198:1"},{"body":{"nativeSrc":"29610:119:1","nodeType":"YulBlock","src":"29610:119:1","statements":[{"nativeSrc":"29620:26:1","nodeType":"YulAssignment","src":"29620:26:1","value":{"arguments":[{"name":"headStart","nativeSrc":"29632:9:1","nodeType":"YulIdentifier","src":"29632:9:1"},{"kind":"number","nativeSrc":"29643:2:1","nodeType":"YulLiteral","src":"29643:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"29628:3:1","nodeType":"YulIdentifier","src":"29628:3:1"},"nativeSrc":"29628:18:1","nodeType":"YulFunctionCall","src":"29628:18:1"},"variableNames":[{"name":"tail","nativeSrc":"29620:4:1","nodeType":"YulIdentifier","src":"29620:4:1"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"29662:9:1","nodeType":"YulIdentifier","src":"29662:9:1"},{"name":"value0","nativeSrc":"29673:6:1","nodeType":"YulIdentifier","src":"29673:6:1"}],"functionName":{"name":"mstore","nativeSrc":"29655:6:1","nodeType":"YulIdentifier","src":"29655:6:1"},"nativeSrc":"29655:25:1","nodeType":"YulFunctionCall","src":"29655:25:1"},"nativeSrc":"29655:25:1","nodeType":"YulExpressionStatement","src":"29655:25:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"29700:9:1","nodeType":"YulIdentifier","src":"29700:9:1"},{"kind":"number","nativeSrc":"29711:2:1","nodeType":"YulLiteral","src":"29711:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"29696:3:1","nodeType":"YulIdentifier","src":"29696:3:1"},"nativeSrc":"29696:18:1","nodeType":"YulFunctionCall","src":"29696:18:1"},{"name":"value1","nativeSrc":"29716:6:1","nodeType":"YulIdentifier","src":"29716:6:1"}],"functionName":{"name":"mstore","nativeSrc":"29689:6:1","nodeType":"YulIdentifier","src":"29689:6:1"},"nativeSrc":"29689:34:1","nodeType":"YulFunctionCall","src":"29689:34:1"},"nativeSrc":"29689:34:1","nodeType":"YulExpressionStatement","src":"29689:34:1"}]},"name":"abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed","nativeSrc":"29481:248:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"29571:9:1","nodeType":"YulTypedName","src":"29571:9:1","type":""},{"name":"value1","nativeSrc":"29582:6:1","nodeType":"YulTypedName","src":"29582:6:1","type":""},{"name":"value0","nativeSrc":"29590:6:1","nodeType":"YulTypedName","src":"29590:6:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"29601:4:1","nodeType":"YulTypedName","src":"29601:4:1","type":""}],"src":"29481:248:1"},{"body":{"nativeSrc":"29908:179:1","nodeType":"YulBlock","src":"29908:179:1","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"29925:9:1","nodeType":"YulIdentifier","src":"29925:9:1"},{"kind":"number","nativeSrc":"29936:2:1","nodeType":"YulLiteral","src":"29936:2:1","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"29918:6:1","nodeType":"YulIdentifier","src":"29918:6:1"},"nativeSrc":"29918:21:1","nodeType":"YulFunctionCall","src":"29918:21:1"},"nativeSrc":"29918:21:1","nodeType":"YulExpressionStatement","src":"29918:21:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"29959:9:1","nodeType":"YulIdentifier","src":"29959:9:1"},{"kind":"number","nativeSrc":"29970:2:1","nodeType":"YulLiteral","src":"29970:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"29955:3:1","nodeType":"YulIdentifier","src":"29955:3:1"},"nativeSrc":"29955:18:1","nodeType":"YulFunctionCall","src":"29955:18:1"},{"kind":"number","nativeSrc":"29975:2:1","nodeType":"YulLiteral","src":"29975:2:1","type":"","value":"29"}],"functionName":{"name":"mstore","nativeSrc":"29948:6:1","nodeType":"YulIdentifier","src":"29948:6:1"},"nativeSrc":"29948:30:1","nodeType":"YulFunctionCall","src":"29948:30:1"},"nativeSrc":"29948:30:1","nodeType":"YulExpressionStatement","src":"29948:30:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"29998:9:1","nodeType":"YulIdentifier","src":"29998:9:1"},{"kind":"number","nativeSrc":"30009:2:1","nodeType":"YulLiteral","src":"30009:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"29994:3:1","nodeType":"YulIdentifier","src":"29994:3:1"},"nativeSrc":"29994:18:1","nodeType":"YulFunctionCall","src":"29994:18:1"},{"hexValue":"45524332303a20696e73756666696369656e7420616c6c6f77616e6365","kind":"string","nativeSrc":"30014:31:1","nodeType":"YulLiteral","src":"30014:31:1","type":"","value":"ERC20: insufficient allowance"}],"functionName":{"name":"mstore","nativeSrc":"29987:6:1","nodeType":"YulIdentifier","src":"29987:6:1"},"nativeSrc":"29987:59:1","nodeType":"YulFunctionCall","src":"29987:59:1"},"nativeSrc":"29987:59:1","nodeType":"YulExpressionStatement","src":"29987:59:1"},{"nativeSrc":"30055:26:1","nodeType":"YulAssignment","src":"30055:26:1","value":{"arguments":[{"name":"headStart","nativeSrc":"30067:9:1","nodeType":"YulIdentifier","src":"30067:9:1"},{"kind":"number","nativeSrc":"30078:2:1","nodeType":"YulLiteral","src":"30078:2:1","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"30063:3:1","nodeType":"YulIdentifier","src":"30063:3:1"},"nativeSrc":"30063:18:1","nodeType":"YulFunctionCall","src":"30063:18:1"},"variableNames":[{"name":"tail","nativeSrc":"30055:4:1","nodeType":"YulIdentifier","src":"30055:4:1"}]}]},"name":"abi_encode_tuple_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"29734:353:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"29885:9:1","nodeType":"YulTypedName","src":"29885:9:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"29899:4:1","nodeType":"YulTypedName","src":"29899:4:1","type":""}],"src":"29734:353:1"},{"body":{"nativeSrc":"30266:177:1","nodeType":"YulBlock","src":"30266:177:1","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"30283:9:1","nodeType":"YulIdentifier","src":"30283:9:1"},{"kind":"number","nativeSrc":"30294:2:1","nodeType":"YulLiteral","src":"30294:2:1","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"30276:6:1","nodeType":"YulIdentifier","src":"30276:6:1"},"nativeSrc":"30276:21:1","nodeType":"YulFunctionCall","src":"30276:21:1"},"nativeSrc":"30276:21:1","nodeType":"YulExpressionStatement","src":"30276:21:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"30317:9:1","nodeType":"YulIdentifier","src":"30317:9:1"},{"kind":"number","nativeSrc":"30328:2:1","nodeType":"YulLiteral","src":"30328:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"30313:3:1","nodeType":"YulIdentifier","src":"30313:3:1"},"nativeSrc":"30313:18:1","nodeType":"YulFunctionCall","src":"30313:18:1"},{"kind":"number","nativeSrc":"30333:2:1","nodeType":"YulLiteral","src":"30333:2:1","type":"","value":"27"}],"functionName":{"name":"mstore","nativeSrc":"30306:6:1","nodeType":"YulIdentifier","src":"30306:6:1"},"nativeSrc":"30306:30:1","nodeType":"YulFunctionCall","src":"30306:30:1"},"nativeSrc":"30306:30:1","nodeType":"YulExpressionStatement","src":"30306:30:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"30356:9:1","nodeType":"YulIdentifier","src":"30356:9:1"},{"kind":"number","nativeSrc":"30367:2:1","nodeType":"YulLiteral","src":"30367:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"30352:3:1","nodeType":"YulIdentifier","src":"30352:3:1"},"nativeSrc":"30352:18:1","nodeType":"YulFunctionCall","src":"30352:18:1"},{"hexValue":"494e56414c49445f42414c414e43455f4f4e5f434f4f4c444f574e","kind":"string","nativeSrc":"30372:29:1","nodeType":"YulLiteral","src":"30372:29:1","type":"","value":"INVALID_BALANCE_ON_COOLDOWN"}],"functionName":{"name":"mstore","nativeSrc":"30345:6:1","nodeType":"YulIdentifier","src":"30345:6:1"},"nativeSrc":"30345:57:1","nodeType":"YulFunctionCall","src":"30345:57:1"},"nativeSrc":"30345:57:1","nodeType":"YulExpressionStatement","src":"30345:57:1"},{"nativeSrc":"30411:26:1","nodeType":"YulAssignment","src":"30411:26:1","value":{"arguments":[{"name":"headStart","nativeSrc":"30423:9:1","nodeType":"YulIdentifier","src":"30423:9:1"},{"kind":"number","nativeSrc":"30434:2:1","nodeType":"YulLiteral","src":"30434:2:1","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"30419:3:1","nodeType":"YulIdentifier","src":"30419:3:1"},"nativeSrc":"30419:18:1","nodeType":"YulFunctionCall","src":"30419:18:1"},"variableNames":[{"name":"tail","nativeSrc":"30411:4:1","nodeType":"YulIdentifier","src":"30411:4:1"}]}]},"name":"abi_encode_tuple_t_stringliteral_e5f9ee9777b2bbd505a43328a4cc6b61e9df46610a556d5402b9bc072df973d7__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"30092:351:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"30243:9:1","nodeType":"YulTypedName","src":"30243:9:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"30257:4:1","nodeType":"YulTypedName","src":"30257:4:1","type":""}],"src":"30092:351:1"},{"body":{"nativeSrc":"30605:214:1","nodeType":"YulBlock","src":"30605:214:1","statements":[{"nativeSrc":"30615:26:1","nodeType":"YulAssignment","src":"30615:26:1","value":{"arguments":[{"name":"headStart","nativeSrc":"30627:9:1","nodeType":"YulIdentifier","src":"30627:9:1"},{"kind":"number","nativeSrc":"30638:2:1","nodeType":"YulLiteral","src":"30638:2:1","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"30623:3:1","nodeType":"YulIdentifier","src":"30623:3:1"},"nativeSrc":"30623:18:1","nodeType":"YulFunctionCall","src":"30623:18:1"},"variableNames":[{"name":"tail","nativeSrc":"30615:4:1","nodeType":"YulIdentifier","src":"30615:4:1"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"30657:9:1","nodeType":"YulIdentifier","src":"30657:9:1"},{"arguments":[{"name":"value0","nativeSrc":"30672:6:1","nodeType":"YulIdentifier","src":"30672:6:1"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"30688:3:1","nodeType":"YulLiteral","src":"30688:3:1","type":"","value":"160"},{"kind":"number","nativeSrc":"30693:1:1","nodeType":"YulLiteral","src":"30693:1:1","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"30684:3:1","nodeType":"YulIdentifier","src":"30684:3:1"},"nativeSrc":"30684:11:1","nodeType":"YulFunctionCall","src":"30684:11:1"},{"kind":"number","nativeSrc":"30697:1:1","nodeType":"YulLiteral","src":"30697:1:1","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"30680:3:1","nodeType":"YulIdentifier","src":"30680:3:1"},"nativeSrc":"30680:19:1","nodeType":"YulFunctionCall","src":"30680:19:1"}],"functionName":{"name":"and","nativeSrc":"30668:3:1","nodeType":"YulIdentifier","src":"30668:3:1"},"nativeSrc":"30668:32:1","nodeType":"YulFunctionCall","src":"30668:32:1"}],"functionName":{"name":"mstore","nativeSrc":"30650:6:1","nodeType":"YulIdentifier","src":"30650:6:1"},"nativeSrc":"30650:51:1","nodeType":"YulFunctionCall","src":"30650:51:1"},"nativeSrc":"30650:51:1","nodeType":"YulExpressionStatement","src":"30650:51:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"30721:9:1","nodeType":"YulIdentifier","src":"30721:9:1"},{"kind":"number","nativeSrc":"30732:2:1","nodeType":"YulLiteral","src":"30732:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"30717:3:1","nodeType":"YulIdentifier","src":"30717:3:1"},"nativeSrc":"30717:18:1","nodeType":"YulFunctionCall","src":"30717:18:1"},{"arguments":[{"name":"value1","nativeSrc":"30741:6:1","nodeType":"YulIdentifier","src":"30741:6:1"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"30757:3:1","nodeType":"YulLiteral","src":"30757:3:1","type":"","value":"160"},{"kind":"number","nativeSrc":"30762:1:1","nodeType":"YulLiteral","src":"30762:1:1","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"30753:3:1","nodeType":"YulIdentifier","src":"30753:3:1"},"nativeSrc":"30753:11:1","nodeType":"YulFunctionCall","src":"30753:11:1"},{"kind":"number","nativeSrc":"30766:1:1","nodeType":"YulLiteral","src":"30766:1:1","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"30749:3:1","nodeType":"YulIdentifier","src":"30749:3:1"},"nativeSrc":"30749:19:1","nodeType":"YulFunctionCall","src":"30749:19:1"}],"functionName":{"name":"and","nativeSrc":"30737:3:1","nodeType":"YulIdentifier","src":"30737:3:1"},"nativeSrc":"30737:32:1","nodeType":"YulFunctionCall","src":"30737:32:1"}],"functionName":{"name":"mstore","nativeSrc":"30710:6:1","nodeType":"YulIdentifier","src":"30710:6:1"},"nativeSrc":"30710:60:1","nodeType":"YulFunctionCall","src":"30710:60:1"},"nativeSrc":"30710:60:1","nodeType":"YulExpressionStatement","src":"30710:60:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"30790:9:1","nodeType":"YulIdentifier","src":"30790:9:1"},{"kind":"number","nativeSrc":"30801:2:1","nodeType":"YulLiteral","src":"30801:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"30786:3:1","nodeType":"YulIdentifier","src":"30786:3:1"},"nativeSrc":"30786:18:1","nodeType":"YulFunctionCall","src":"30786:18:1"},{"name":"value2","nativeSrc":"30806:6:1","nodeType":"YulIdentifier","src":"30806:6:1"}],"functionName":{"name":"mstore","nativeSrc":"30779:6:1","nodeType":"YulIdentifier","src":"30779:6:1"},"nativeSrc":"30779:34:1","nodeType":"YulFunctionCall","src":"30779:34:1"},"nativeSrc":"30779:34:1","nodeType":"YulExpressionStatement","src":"30779:34:1"}]},"name":"abi_encode_tuple_t_address_t_address_t_uint256__to_t_address_t_address_t_uint256__fromStack_reversed","nativeSrc":"30448:371:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"30558:9:1","nodeType":"YulTypedName","src":"30558:9:1","type":""},{"name":"value2","nativeSrc":"30569:6:1","nodeType":"YulTypedName","src":"30569:6:1","type":""},{"name":"value1","nativeSrc":"30577:6:1","nodeType":"YulTypedName","src":"30577:6:1","type":""},{"name":"value0","nativeSrc":"30585:6:1","nodeType":"YulTypedName","src":"30585:6:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"30596:4:1","nodeType":"YulTypedName","src":"30596:4:1","type":""}],"src":"30448:371:1"},{"body":{"nativeSrc":"30998:167:1","nodeType":"YulBlock","src":"30998:167:1","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"31015:9:1","nodeType":"YulIdentifier","src":"31015:9:1"},{"kind":"number","nativeSrc":"31026:2:1","nodeType":"YulLiteral","src":"31026:2:1","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"31008:6:1","nodeType":"YulIdentifier","src":"31008:6:1"},"nativeSrc":"31008:21:1","nodeType":"YulFunctionCall","src":"31008:21:1"},"nativeSrc":"31008:21:1","nodeType":"YulExpressionStatement","src":"31008:21:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"31049:9:1","nodeType":"YulIdentifier","src":"31049:9:1"},{"kind":"number","nativeSrc":"31060:2:1","nodeType":"YulLiteral","src":"31060:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"31045:3:1","nodeType":"YulIdentifier","src":"31045:3:1"},"nativeSrc":"31045:18:1","nodeType":"YulFunctionCall","src":"31045:18:1"},{"kind":"number","nativeSrc":"31065:2:1","nodeType":"YulLiteral","src":"31065:2:1","type":"","value":"17"}],"functionName":{"name":"mstore","nativeSrc":"31038:6:1","nodeType":"YulIdentifier","src":"31038:6:1"},"nativeSrc":"31038:30:1","nodeType":"YulFunctionCall","src":"31038:30:1"},"nativeSrc":"31038:30:1","nodeType":"YulExpressionStatement","src":"31038:30:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"31088:9:1","nodeType":"YulIdentifier","src":"31088:9:1"},{"kind":"number","nativeSrc":"31099:2:1","nodeType":"YulLiteral","src":"31099:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"31084:3:1","nodeType":"YulIdentifier","src":"31084:3:1"},"nativeSrc":"31084:18:1","nodeType":"YulFunctionCall","src":"31084:18:1"},{"hexValue":"494e56414c49445f44454c454741544545","kind":"string","nativeSrc":"31104:19:1","nodeType":"YulLiteral","src":"31104:19:1","type":"","value":"INVALID_DELEGATEE"}],"functionName":{"name":"mstore","nativeSrc":"31077:6:1","nodeType":"YulIdentifier","src":"31077:6:1"},"nativeSrc":"31077:47:1","nodeType":"YulFunctionCall","src":"31077:47:1"},"nativeSrc":"31077:47:1","nodeType":"YulExpressionStatement","src":"31077:47:1"},{"nativeSrc":"31133:26:1","nodeType":"YulAssignment","src":"31133:26:1","value":{"arguments":[{"name":"headStart","nativeSrc":"31145:9:1","nodeType":"YulIdentifier","src":"31145:9:1"},{"kind":"number","nativeSrc":"31156:2:1","nodeType":"YulLiteral","src":"31156:2:1","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"31141:3:1","nodeType":"YulIdentifier","src":"31141:3:1"},"nativeSrc":"31141:18:1","nodeType":"YulFunctionCall","src":"31141:18:1"},"variableNames":[{"name":"tail","nativeSrc":"31133:4:1","nodeType":"YulIdentifier","src":"31133:4:1"}]}]},"name":"abi_encode_tuple_t_stringliteral_f448a4555410856eaebeffbdb1aef2dfca19f9de0904eb1029e0bbcd0330450f__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"30824:341:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"30975:9:1","nodeType":"YulTypedName","src":"30975:9:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"30989:4:1","nodeType":"YulTypedName","src":"30989:4:1","type":""}],"src":"30824:341:1"},{"body":{"nativeSrc":"31226:186:1","nodeType":"YulBlock","src":"31226:186:1","statements":[{"body":{"nativeSrc":"31268:111:1","nodeType":"YulBlock","src":"31268:111:1","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"31289:1:1","nodeType":"YulLiteral","src":"31289:1:1","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"31296:3:1","nodeType":"YulLiteral","src":"31296:3:1","type":"","value":"224"},{"kind":"number","nativeSrc":"31301:10:1","nodeType":"YulLiteral","src":"31301:10:1","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"31292:3:1","nodeType":"YulIdentifier","src":"31292:3:1"},"nativeSrc":"31292:20:1","nodeType":"YulFunctionCall","src":"31292:20:1"}],"functionName":{"name":"mstore","nativeSrc":"31282:6:1","nodeType":"YulIdentifier","src":"31282:6:1"},"nativeSrc":"31282:31:1","nodeType":"YulFunctionCall","src":"31282:31:1"},"nativeSrc":"31282:31:1","nodeType":"YulExpressionStatement","src":"31282:31:1"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"31333:1:1","nodeType":"YulLiteral","src":"31333:1:1","type":"","value":"4"},{"kind":"number","nativeSrc":"31336:4:1","nodeType":"YulLiteral","src":"31336:4:1","type":"","value":"0x21"}],"functionName":{"name":"mstore","nativeSrc":"31326:6:1","nodeType":"YulIdentifier","src":"31326:6:1"},"nativeSrc":"31326:15:1","nodeType":"YulFunctionCall","src":"31326:15:1"},"nativeSrc":"31326:15:1","nodeType":"YulExpressionStatement","src":"31326:15:1"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"31361:1:1","nodeType":"YulLiteral","src":"31361:1:1","type":"","value":"0"},{"kind":"number","nativeSrc":"31364:4:1","nodeType":"YulLiteral","src":"31364:4:1","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"31354:6:1","nodeType":"YulIdentifier","src":"31354:6:1"},"nativeSrc":"31354:15:1","nodeType":"YulFunctionCall","src":"31354:15:1"},"nativeSrc":"31354:15:1","nodeType":"YulExpressionStatement","src":"31354:15:1"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"31249:5:1","nodeType":"YulIdentifier","src":"31249:5:1"},{"kind":"number","nativeSrc":"31256:1:1","nodeType":"YulLiteral","src":"31256:1:1","type":"","value":"2"}],"functionName":{"name":"lt","nativeSrc":"31246:2:1","nodeType":"YulIdentifier","src":"31246:2:1"},"nativeSrc":"31246:12:1","nodeType":"YulFunctionCall","src":"31246:12:1"}],"functionName":{"name":"iszero","nativeSrc":"31239:6:1","nodeType":"YulIdentifier","src":"31239:6:1"},"nativeSrc":"31239:20:1","nodeType":"YulFunctionCall","src":"31239:20:1"},"nativeSrc":"31236:143:1","nodeType":"YulIf","src":"31236:143:1"},{"expression":{"arguments":[{"name":"pos","nativeSrc":"31395:3:1","nodeType":"YulIdentifier","src":"31395:3:1"},{"name":"value","nativeSrc":"31400:5:1","nodeType":"YulIdentifier","src":"31400:5:1"}],"functionName":{"name":"mstore","nativeSrc":"31388:6:1","nodeType":"YulIdentifier","src":"31388:6:1"},"nativeSrc":"31388:18:1","nodeType":"YulFunctionCall","src":"31388:18:1"},"nativeSrc":"31388:18:1","nodeType":"YulExpressionStatement","src":"31388:18:1"}]},"name":"abi_encode_enum_DelegationType","nativeSrc":"31170:242:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"31210:5:1","nodeType":"YulTypedName","src":"31210:5:1","type":""},{"name":"pos","nativeSrc":"31217:3:1","nodeType":"YulTypedName","src":"31217:3:1","type":""}],"src":"31170:242:1"},{"body":{"nativeSrc":"31535:100:1","nodeType":"YulBlock","src":"31535:100:1","statements":[{"nativeSrc":"31545:26:1","nodeType":"YulAssignment","src":"31545:26:1","value":{"arguments":[{"name":"headStart","nativeSrc":"31557:9:1","nodeType":"YulIdentifier","src":"31557:9:1"},{"kind":"number","nativeSrc":"31568:2:1","nodeType":"YulLiteral","src":"31568:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"31553:3:1","nodeType":"YulIdentifier","src":"31553:3:1"},"nativeSrc":"31553:18:1","nodeType":"YulFunctionCall","src":"31553:18:1"},"variableNames":[{"name":"tail","nativeSrc":"31545:4:1","nodeType":"YulIdentifier","src":"31545:4:1"}]},{"expression":{"arguments":[{"name":"value0","nativeSrc":"31611:6:1","nodeType":"YulIdentifier","src":"31611:6:1"},{"name":"headStart","nativeSrc":"31619:9:1","nodeType":"YulIdentifier","src":"31619:9:1"}],"functionName":{"name":"abi_encode_enum_DelegationType","nativeSrc":"31580:30:1","nodeType":"YulIdentifier","src":"31580:30:1"},"nativeSrc":"31580:49:1","nodeType":"YulFunctionCall","src":"31580:49:1"},"nativeSrc":"31580:49:1","nodeType":"YulExpressionStatement","src":"31580:49:1"}]},"name":"abi_encode_tuple_t_enum$_DelegationType_$1088__to_t_uint8__fromStack_reversed","nativeSrc":"31417:218:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"31504:9:1","nodeType":"YulTypedName","src":"31504:9:1","type":""},{"name":"value0","nativeSrc":"31515:6:1","nodeType":"YulTypedName","src":"31515:6:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"31526:4:1","nodeType":"YulTypedName","src":"31526:4:1","type":""}],"src":"31417:218:1"},{"body":{"nativeSrc":"31814:166:1","nodeType":"YulBlock","src":"31814:166:1","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"31831:9:1","nodeType":"YulIdentifier","src":"31831:9:1"},{"kind":"number","nativeSrc":"31842:2:1","nodeType":"YulLiteral","src":"31842:2:1","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"31824:6:1","nodeType":"YulIdentifier","src":"31824:6:1"},"nativeSrc":"31824:21:1","nodeType":"YulFunctionCall","src":"31824:21:1"},"nativeSrc":"31824:21:1","nodeType":"YulExpressionStatement","src":"31824:21:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"31865:9:1","nodeType":"YulIdentifier","src":"31865:9:1"},{"kind":"number","nativeSrc":"31876:2:1","nodeType":"YulLiteral","src":"31876:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"31861:3:1","nodeType":"YulIdentifier","src":"31861:3:1"},"nativeSrc":"31861:18:1","nodeType":"YulFunctionCall","src":"31861:18:1"},{"kind":"number","nativeSrc":"31881:2:1","nodeType":"YulLiteral","src":"31881:2:1","type":"","value":"16"}],"functionName":{"name":"mstore","nativeSrc":"31854:6:1","nodeType":"YulIdentifier","src":"31854:6:1"},"nativeSrc":"31854:30:1","nodeType":"YulFunctionCall","src":"31854:30:1"},"nativeSrc":"31854:30:1","nodeType":"YulExpressionStatement","src":"31854:30:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"31904:9:1","nodeType":"YulIdentifier","src":"31904:9:1"},{"kind":"number","nativeSrc":"31915:2:1","nodeType":"YulLiteral","src":"31915:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"31900:3:1","nodeType":"YulIdentifier","src":"31900:3:1"},"nativeSrc":"31900:18:1","nodeType":"YulFunctionCall","src":"31900:18:1"},{"hexValue":"534c415348494e475f4f4e474f494e47","kind":"string","nativeSrc":"31920:18:1","nodeType":"YulLiteral","src":"31920:18:1","type":"","value":"SLASHING_ONGOING"}],"functionName":{"name":"mstore","nativeSrc":"31893:6:1","nodeType":"YulIdentifier","src":"31893:6:1"},"nativeSrc":"31893:46:1","nodeType":"YulFunctionCall","src":"31893:46:1"},"nativeSrc":"31893:46:1","nodeType":"YulExpressionStatement","src":"31893:46:1"},{"nativeSrc":"31948:26:1","nodeType":"YulAssignment","src":"31948:26:1","value":{"arguments":[{"name":"headStart","nativeSrc":"31960:9:1","nodeType":"YulIdentifier","src":"31960:9:1"},{"kind":"number","nativeSrc":"31971:2:1","nodeType":"YulLiteral","src":"31971:2:1","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"31956:3:1","nodeType":"YulIdentifier","src":"31956:3:1"},"nativeSrc":"31956:18:1","nodeType":"YulFunctionCall","src":"31956:18:1"},"variableNames":[{"name":"tail","nativeSrc":"31948:4:1","nodeType":"YulIdentifier","src":"31948:4:1"}]}]},"name":"abi_encode_tuple_t_stringliteral_ca68b1751ae29c5f09bd0021f927ba7e466485e5196910ff5ec2e20b861ddf43__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"31640:340:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"31791:9:1","nodeType":"YulTypedName","src":"31791:9:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"31805:4:1","nodeType":"YulTypedName","src":"31805:4:1","type":""}],"src":"31640:340:1"},{"body":{"nativeSrc":"32159:177:1","nodeType":"YulBlock","src":"32159:177:1","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"32176:9:1","nodeType":"YulIdentifier","src":"32176:9:1"},{"kind":"number","nativeSrc":"32187:2:1","nodeType":"YulLiteral","src":"32187:2:1","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"32169:6:1","nodeType":"YulIdentifier","src":"32169:6:1"},"nativeSrc":"32169:21:1","nodeType":"YulFunctionCall","src":"32169:21:1"},"nativeSrc":"32169:21:1","nodeType":"YulExpressionStatement","src":"32169:21:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"32210:9:1","nodeType":"YulIdentifier","src":"32210:9:1"},{"kind":"number","nativeSrc":"32221:2:1","nodeType":"YulLiteral","src":"32221:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"32206:3:1","nodeType":"YulIdentifier","src":"32206:3:1"},"nativeSrc":"32206:18:1","nodeType":"YulFunctionCall","src":"32206:18:1"},{"kind":"number","nativeSrc":"32226:2:1","nodeType":"YulLiteral","src":"32226:2:1","type":"","value":"27"}],"functionName":{"name":"mstore","nativeSrc":"32199:6:1","nodeType":"YulIdentifier","src":"32199:6:1"},"nativeSrc":"32199:30:1","nodeType":"YulFunctionCall","src":"32199:30:1"},"nativeSrc":"32199:30:1","nodeType":"YulExpressionStatement","src":"32199:30:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"32249:9:1","nodeType":"YulIdentifier","src":"32249:9:1"},{"kind":"number","nativeSrc":"32260:2:1","nodeType":"YulLiteral","src":"32260:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"32245:3:1","nodeType":"YulIdentifier","src":"32245:3:1"},"nativeSrc":"32245:18:1","nodeType":"YulFunctionCall","src":"32245:18:1"},{"hexValue":"494e56414c49445f534c415348494e475f50455243454e54414745","kind":"string","nativeSrc":"32265:29:1","nodeType":"YulLiteral","src":"32265:29:1","type":"","value":"INVALID_SLASHING_PERCENTAGE"}],"functionName":{"name":"mstore","nativeSrc":"32238:6:1","nodeType":"YulIdentifier","src":"32238:6:1"},"nativeSrc":"32238:57:1","nodeType":"YulFunctionCall","src":"32238:57:1"},"nativeSrc":"32238:57:1","nodeType":"YulExpressionStatement","src":"32238:57:1"},{"nativeSrc":"32304:26:1","nodeType":"YulAssignment","src":"32304:26:1","value":{"arguments":[{"name":"headStart","nativeSrc":"32316:9:1","nodeType":"YulIdentifier","src":"32316:9:1"},{"kind":"number","nativeSrc":"32327:2:1","nodeType":"YulLiteral","src":"32327:2:1","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"32312:3:1","nodeType":"YulIdentifier","src":"32312:3:1"},"nativeSrc":"32312:18:1","nodeType":"YulFunctionCall","src":"32312:18:1"},"variableNames":[{"name":"tail","nativeSrc":"32304:4:1","nodeType":"YulIdentifier","src":"32304:4:1"}]}]},"name":"abi_encode_tuple_t_stringliteral_ce93b50079b62f2df0cdb8205f7bed11a1c18f1ff774f2e6b4f84f4f62875ed5__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"31985:351:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"32136:9:1","nodeType":"YulTypedName","src":"32136:9:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"32150:4:1","nodeType":"YulTypedName","src":"32150:4:1","type":""}],"src":"31985:351:1"},{"body":{"nativeSrc":"32515:182:1","nodeType":"YulBlock","src":"32515:182:1","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"32532:9:1","nodeType":"YulIdentifier","src":"32532:9:1"},{"kind":"number","nativeSrc":"32543:2:1","nodeType":"YulLiteral","src":"32543:2:1","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"32525:6:1","nodeType":"YulIdentifier","src":"32525:6:1"},"nativeSrc":"32525:21:1","nodeType":"YulFunctionCall","src":"32525:21:1"},"nativeSrc":"32525:21:1","nodeType":"YulExpressionStatement","src":"32525:21:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"32566:9:1","nodeType":"YulIdentifier","src":"32566:9:1"},{"kind":"number","nativeSrc":"32577:2:1","nodeType":"YulLiteral","src":"32577:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"32562:3:1","nodeType":"YulIdentifier","src":"32562:3:1"},"nativeSrc":"32562:18:1","nodeType":"YulFunctionCall","src":"32562:18:1"},{"kind":"number","nativeSrc":"32582:2:1","nodeType":"YulLiteral","src":"32582:2:1","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"32555:6:1","nodeType":"YulIdentifier","src":"32555:6:1"},"nativeSrc":"32555:30:1","nodeType":"YulFunctionCall","src":"32555:30:1"},"nativeSrc":"32555:30:1","nodeType":"YulExpressionStatement","src":"32555:30:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"32605:9:1","nodeType":"YulIdentifier","src":"32605:9:1"},{"kind":"number","nativeSrc":"32616:2:1","nodeType":"YulLiteral","src":"32616:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"32601:3:1","nodeType":"YulIdentifier","src":"32601:3:1"},"nativeSrc":"32601:18:1","nodeType":"YulFunctionCall","src":"32601:18:1"},{"hexValue":"5245574152445f544f4b454e5f49535f4e4f545f5354414b45445f544f4b454e","kind":"string","nativeSrc":"32621:34:1","nodeType":"YulLiteral","src":"32621:34:1","type":"","value":"REWARD_TOKEN_IS_NOT_STAKED_TOKEN"}],"functionName":{"name":"mstore","nativeSrc":"32594:6:1","nodeType":"YulIdentifier","src":"32594:6:1"},"nativeSrc":"32594:62:1","nodeType":"YulFunctionCall","src":"32594:62:1"},"nativeSrc":"32594:62:1","nodeType":"YulExpressionStatement","src":"32594:62:1"},{"nativeSrc":"32665:26:1","nodeType":"YulAssignment","src":"32665:26:1","value":{"arguments":[{"name":"headStart","nativeSrc":"32677:9:1","nodeType":"YulIdentifier","src":"32677:9:1"},{"kind":"number","nativeSrc":"32688:2:1","nodeType":"YulLiteral","src":"32688:2:1","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"32673:3:1","nodeType":"YulIdentifier","src":"32673:3:1"},"nativeSrc":"32673:18:1","nodeType":"YulFunctionCall","src":"32673:18:1"},"variableNames":[{"name":"tail","nativeSrc":"32665:4:1","nodeType":"YulIdentifier","src":"32665:4:1"}]}]},"name":"abi_encode_tuple_t_stringliteral_f4a42223776f3ea267c2495ef3dc746d28101276fa8315b76ae8b45133d59a50__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"32341:356:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"32492:9:1","nodeType":"YulTypedName","src":"32492:9:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"32506:4:1","nodeType":"YulTypedName","src":"32506:4:1","type":""}],"src":"32341:356:1"},{"body":{"nativeSrc":"32803:117:1","nodeType":"YulBlock","src":"32803:117:1","statements":[{"nativeSrc":"32813:26:1","nodeType":"YulAssignment","src":"32813:26:1","value":{"arguments":[{"name":"headStart","nativeSrc":"32825:9:1","nodeType":"YulIdentifier","src":"32825:9:1"},{"kind":"number","nativeSrc":"32836:2:1","nodeType":"YulLiteral","src":"32836:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"32821:3:1","nodeType":"YulIdentifier","src":"32821:3:1"},"nativeSrc":"32821:18:1","nodeType":"YulFunctionCall","src":"32821:18:1"},"variableNames":[{"name":"tail","nativeSrc":"32813:4:1","nodeType":"YulIdentifier","src":"32813:4:1"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"32855:9:1","nodeType":"YulIdentifier","src":"32855:9:1"},{"arguments":[{"name":"value0","nativeSrc":"32870:6:1","nodeType":"YulIdentifier","src":"32870:6:1"},{"kind":"number","nativeSrc":"32878:34:1","nodeType":"YulLiteral","src":"32878:34:1","type":"","value":"0xffffffffffffffffffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"32866:3:1","nodeType":"YulIdentifier","src":"32866:3:1"},"nativeSrc":"32866:47:1","nodeType":"YulFunctionCall","src":"32866:47:1"}],"functionName":{"name":"mstore","nativeSrc":"32848:6:1","nodeType":"YulIdentifier","src":"32848:6:1"},"nativeSrc":"32848:66:1","nodeType":"YulFunctionCall","src":"32848:66:1"},"nativeSrc":"32848:66:1","nodeType":"YulExpressionStatement","src":"32848:66:1"}]},"name":"abi_encode_tuple_t_uint128__to_t_uint256__fromStack_reversed","nativeSrc":"32702:218:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"32772:9:1","nodeType":"YulTypedName","src":"32772:9:1","type":""},{"name":"value0","nativeSrc":"32783:6:1","nodeType":"YulTypedName","src":"32783:6:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"32794:4:1","nodeType":"YulTypedName","src":"32794:4:1","type":""}],"src":"32702:218:1"},{"body":{"nativeSrc":"33099:229:1","nodeType":"YulBlock","src":"33099:229:1","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"33116:9:1","nodeType":"YulIdentifier","src":"33116:9:1"},{"kind":"number","nativeSrc":"33127:2:1","nodeType":"YulLiteral","src":"33127:2:1","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"33109:6:1","nodeType":"YulIdentifier","src":"33109:6:1"},"nativeSrc":"33109:21:1","nodeType":"YulFunctionCall","src":"33109:21:1"},"nativeSrc":"33109:21:1","nodeType":"YulExpressionStatement","src":"33109:21:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"33150:9:1","nodeType":"YulIdentifier","src":"33150:9:1"},{"kind":"number","nativeSrc":"33161:2:1","nodeType":"YulLiteral","src":"33161:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"33146:3:1","nodeType":"YulIdentifier","src":"33146:3:1"},"nativeSrc":"33146:18:1","nodeType":"YulFunctionCall","src":"33146:18:1"},{"kind":"number","nativeSrc":"33166:2:1","nodeType":"YulLiteral","src":"33166:2:1","type":"","value":"39"}],"functionName":{"name":"mstore","nativeSrc":"33139:6:1","nodeType":"YulIdentifier","src":"33139:6:1"},"nativeSrc":"33139:30:1","nodeType":"YulFunctionCall","src":"33139:30:1"},"nativeSrc":"33139:30:1","nodeType":"YulExpressionStatement","src":"33139:30:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"33189:9:1","nodeType":"YulIdentifier","src":"33189:9:1"},{"kind":"number","nativeSrc":"33200:2:1","nodeType":"YulLiteral","src":"33200:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"33185:3:1","nodeType":"YulIdentifier","src":"33185:3:1"},"nativeSrc":"33185:18:1","nodeType":"YulFunctionCall","src":"33185:18:1"},{"hexValue":"53616665436173743a2076616c756520646f65736e27742066697420696e2032","kind":"string","nativeSrc":"33205:34:1","nodeType":"YulLiteral","src":"33205:34:1","type":"","value":"SafeCast: value doesn't fit in 2"}],"functionName":{"name":"mstore","nativeSrc":"33178:6:1","nodeType":"YulIdentifier","src":"33178:6:1"},"nativeSrc":"33178:62:1","nodeType":"YulFunctionCall","src":"33178:62:1"},"nativeSrc":"33178:62:1","nodeType":"YulExpressionStatement","src":"33178:62:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"33260:9:1","nodeType":"YulIdentifier","src":"33260:9:1"},{"kind":"number","nativeSrc":"33271:2:1","nodeType":"YulLiteral","src":"33271:2:1","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"33256:3:1","nodeType":"YulIdentifier","src":"33256:3:1"},"nativeSrc":"33256:18:1","nodeType":"YulFunctionCall","src":"33256:18:1"},{"hexValue":"31362062697473","kind":"string","nativeSrc":"33276:9:1","nodeType":"YulLiteral","src":"33276:9:1","type":"","value":"16 bits"}],"functionName":{"name":"mstore","nativeSrc":"33249:6:1","nodeType":"YulIdentifier","src":"33249:6:1"},"nativeSrc":"33249:37:1","nodeType":"YulFunctionCall","src":"33249:37:1"},"nativeSrc":"33249:37:1","nodeType":"YulExpressionStatement","src":"33249:37:1"},{"nativeSrc":"33295:27:1","nodeType":"YulAssignment","src":"33295:27:1","value":{"arguments":[{"name":"headStart","nativeSrc":"33307:9:1","nodeType":"YulIdentifier","src":"33307:9:1"},{"kind":"number","nativeSrc":"33318:3:1","nodeType":"YulLiteral","src":"33318:3:1","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"33303:3:1","nodeType":"YulIdentifier","src":"33303:3:1"},"nativeSrc":"33303:19:1","nodeType":"YulFunctionCall","src":"33303:19:1"},"variableNames":[{"name":"tail","nativeSrc":"33295:4:1","nodeType":"YulIdentifier","src":"33295:4:1"}]}]},"name":"abi_encode_tuple_t_stringliteral_8966adc0aad8dc91b207c69c3eb4937e498af8cc706cfe7edd55f3a6ea53488d__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"32925:403:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"33076:9:1","nodeType":"YulTypedName","src":"33076:9:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"33090:4:1","nodeType":"YulTypedName","src":"33090:4:1","type":""}],"src":"32925:403:1"},{"body":{"nativeSrc":"33507:228:1","nodeType":"YulBlock","src":"33507:228:1","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"33524:9:1","nodeType":"YulIdentifier","src":"33524:9:1"},{"kind":"number","nativeSrc":"33535:2:1","nodeType":"YulLiteral","src":"33535:2:1","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"33517:6:1","nodeType":"YulIdentifier","src":"33517:6:1"},"nativeSrc":"33517:21:1","nodeType":"YulFunctionCall","src":"33517:21:1"},"nativeSrc":"33517:21:1","nodeType":"YulExpressionStatement","src":"33517:21:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"33558:9:1","nodeType":"YulIdentifier","src":"33558:9:1"},{"kind":"number","nativeSrc":"33569:2:1","nodeType":"YulLiteral","src":"33569:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"33554:3:1","nodeType":"YulIdentifier","src":"33554:3:1"},"nativeSrc":"33554:18:1","nodeType":"YulFunctionCall","src":"33554:18:1"},{"kind":"number","nativeSrc":"33574:2:1","nodeType":"YulLiteral","src":"33574:2:1","type":"","value":"38"}],"functionName":{"name":"mstore","nativeSrc":"33547:6:1","nodeType":"YulIdentifier","src":"33547:6:1"},"nativeSrc":"33547:30:1","nodeType":"YulFunctionCall","src":"33547:30:1"},"nativeSrc":"33547:30:1","nodeType":"YulExpressionStatement","src":"33547:30:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"33597:9:1","nodeType":"YulIdentifier","src":"33597:9:1"},{"kind":"number","nativeSrc":"33608:2:1","nodeType":"YulLiteral","src":"33608:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"33593:3:1","nodeType":"YulIdentifier","src":"33593:3:1"},"nativeSrc":"33593:18:1","nodeType":"YulFunctionCall","src":"33593:18:1"},{"hexValue":"53616665436173743a2076616c756520646f65736e27742066697420696e2034","kind":"string","nativeSrc":"33613:34:1","nodeType":"YulLiteral","src":"33613:34:1","type":"","value":"SafeCast: value doesn't fit in 4"}],"functionName":{"name":"mstore","nativeSrc":"33586:6:1","nodeType":"YulIdentifier","src":"33586:6:1"},"nativeSrc":"33586:62:1","nodeType":"YulFunctionCall","src":"33586:62:1"},"nativeSrc":"33586:62:1","nodeType":"YulExpressionStatement","src":"33586:62:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"33668:9:1","nodeType":"YulIdentifier","src":"33668:9:1"},{"kind":"number","nativeSrc":"33679:2:1","nodeType":"YulLiteral","src":"33679:2:1","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"33664:3:1","nodeType":"YulIdentifier","src":"33664:3:1"},"nativeSrc":"33664:18:1","nodeType":"YulFunctionCall","src":"33664:18:1"},{"hexValue":"302062697473","kind":"string","nativeSrc":"33684:8:1","nodeType":"YulLiteral","src":"33684:8:1","type":"","value":"0 bits"}],"functionName":{"name":"mstore","nativeSrc":"33657:6:1","nodeType":"YulIdentifier","src":"33657:6:1"},"nativeSrc":"33657:36:1","nodeType":"YulFunctionCall","src":"33657:36:1"},"nativeSrc":"33657:36:1","nodeType":"YulExpressionStatement","src":"33657:36:1"},{"nativeSrc":"33702:27:1","nodeType":"YulAssignment","src":"33702:27:1","value":{"arguments":[{"name":"headStart","nativeSrc":"33714:9:1","nodeType":"YulIdentifier","src":"33714:9:1"},{"kind":"number","nativeSrc":"33725:3:1","nodeType":"YulLiteral","src":"33725:3:1","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"33710:3:1","nodeType":"YulIdentifier","src":"33710:3:1"},"nativeSrc":"33710:19:1","nodeType":"YulFunctionCall","src":"33710:19:1"},"variableNames":[{"name":"tail","nativeSrc":"33702:4:1","nodeType":"YulIdentifier","src":"33702:4:1"}]}]},"name":"abi_encode_tuple_t_stringliteral_b23559c58b98a5d3ed7016699c7171ac8defa5a1d180f9a9ffa60468a5701d37__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"33333:402:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"33484:9:1","nodeType":"YulTypedName","src":"33484:9:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"33498:4:1","nodeType":"YulTypedName","src":"33498:4:1","type":""}],"src":"33333:402:1"},{"body":{"nativeSrc":"33914:168:1","nodeType":"YulBlock","src":"33914:168:1","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"33931:9:1","nodeType":"YulIdentifier","src":"33931:9:1"},{"kind":"number","nativeSrc":"33942:2:1","nodeType":"YulLiteral","src":"33942:2:1","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"33924:6:1","nodeType":"YulIdentifier","src":"33924:6:1"},"nativeSrc":"33924:21:1","nodeType":"YulFunctionCall","src":"33924:21:1"},"nativeSrc":"33924:21:1","nodeType":"YulExpressionStatement","src":"33924:21:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"33965:9:1","nodeType":"YulIdentifier","src":"33965:9:1"},{"kind":"number","nativeSrc":"33976:2:1","nodeType":"YulLiteral","src":"33976:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"33961:3:1","nodeType":"YulIdentifier","src":"33961:3:1"},"nativeSrc":"33961:18:1","nodeType":"YulFunctionCall","src":"33961:18:1"},{"kind":"number","nativeSrc":"33981:2:1","nodeType":"YulLiteral","src":"33981:2:1","type":"","value":"18"}],"functionName":{"name":"mstore","nativeSrc":"33954:6:1","nodeType":"YulIdentifier","src":"33954:6:1"},"nativeSrc":"33954:30:1","nodeType":"YulFunctionCall","src":"33954:30:1"},"nativeSrc":"33954:30:1","nodeType":"YulExpressionStatement","src":"33954:30:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"34004:9:1","nodeType":"YulIdentifier","src":"34004:9:1"},{"kind":"number","nativeSrc":"34015:2:1","nodeType":"YulLiteral","src":"34015:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"34000:3:1","nodeType":"YulIdentifier","src":"34000:3:1"},"nativeSrc":"34000:18:1","nodeType":"YulFunctionCall","src":"34000:18:1"},{"hexValue":"5a45524f5f45584348414e47455f52415445","kind":"string","nativeSrc":"34020:20:1","nodeType":"YulLiteral","src":"34020:20:1","type":"","value":"ZERO_EXCHANGE_RATE"}],"functionName":{"name":"mstore","nativeSrc":"33993:6:1","nodeType":"YulIdentifier","src":"33993:6:1"},"nativeSrc":"33993:48:1","nodeType":"YulFunctionCall","src":"33993:48:1"},"nativeSrc":"33993:48:1","nodeType":"YulExpressionStatement","src":"33993:48:1"},{"nativeSrc":"34050:26:1","nodeType":"YulAssignment","src":"34050:26:1","value":{"arguments":[{"name":"headStart","nativeSrc":"34062:9:1","nodeType":"YulIdentifier","src":"34062:9:1"},{"kind":"number","nativeSrc":"34073:2:1","nodeType":"YulLiteral","src":"34073:2:1","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"34058:3:1","nodeType":"YulIdentifier","src":"34058:3:1"},"nativeSrc":"34058:18:1","nodeType":"YulFunctionCall","src":"34058:18:1"},"variableNames":[{"name":"tail","nativeSrc":"34050:4:1","nodeType":"YulIdentifier","src":"34050:4:1"}]}]},"name":"abi_encode_tuple_t_stringliteral_2f1333997521c1f7b64fb9baad89e36b71dfc7265a9804df600ce8ae5c1f6f36__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"33740:342:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"33891:9:1","nodeType":"YulTypedName","src":"33891:9:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"33905:4:1","nodeType":"YulTypedName","src":"33905:4:1","type":""}],"src":"33740:342:1"},{"body":{"nativeSrc":"34261:232:1","nodeType":"YulBlock","src":"34261:232:1","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"34278:9:1","nodeType":"YulIdentifier","src":"34278:9:1"},{"kind":"number","nativeSrc":"34289:2:1","nodeType":"YulLiteral","src":"34289:2:1","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"34271:6:1","nodeType":"YulIdentifier","src":"34271:6:1"},"nativeSrc":"34271:21:1","nodeType":"YulFunctionCall","src":"34271:21:1"},"nativeSrc":"34271:21:1","nodeType":"YulExpressionStatement","src":"34271:21:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"34312:9:1","nodeType":"YulIdentifier","src":"34312:9:1"},{"kind":"number","nativeSrc":"34323:2:1","nodeType":"YulLiteral","src":"34323:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"34308:3:1","nodeType":"YulIdentifier","src":"34308:3:1"},"nativeSrc":"34308:18:1","nodeType":"YulFunctionCall","src":"34308:18:1"},{"kind":"number","nativeSrc":"34328:2:1","nodeType":"YulLiteral","src":"34328:2:1","type":"","value":"42"}],"functionName":{"name":"mstore","nativeSrc":"34301:6:1","nodeType":"YulIdentifier","src":"34301:6:1"},"nativeSrc":"34301:30:1","nodeType":"YulFunctionCall","src":"34301:30:1"},"nativeSrc":"34301:30:1","nodeType":"YulExpressionStatement","src":"34301:30:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"34351:9:1","nodeType":"YulIdentifier","src":"34351:9:1"},{"kind":"number","nativeSrc":"34362:2:1","nodeType":"YulLiteral","src":"34362:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"34347:3:1","nodeType":"YulIdentifier","src":"34347:3:1"},"nativeSrc":"34347:18:1","nodeType":"YulFunctionCall","src":"34347:18:1"},{"hexValue":"5361666545524332303a204552433230206f7065726174696f6e20646964206e","kind":"string","nativeSrc":"34367:34:1","nodeType":"YulLiteral","src":"34367:34:1","type":"","value":"SafeERC20: ERC20 operation did n"}],"functionName":{"name":"mstore","nativeSrc":"34340:6:1","nodeType":"YulIdentifier","src":"34340:6:1"},"nativeSrc":"34340:62:1","nodeType":"YulFunctionCall","src":"34340:62:1"},"nativeSrc":"34340:62:1","nodeType":"YulExpressionStatement","src":"34340:62:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"34422:9:1","nodeType":"YulIdentifier","src":"34422:9:1"},{"kind":"number","nativeSrc":"34433:2:1","nodeType":"YulLiteral","src":"34433:2:1","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"34418:3:1","nodeType":"YulIdentifier","src":"34418:3:1"},"nativeSrc":"34418:18:1","nodeType":"YulFunctionCall","src":"34418:18:1"},{"hexValue":"6f742073756363656564","kind":"string","nativeSrc":"34438:12:1","nodeType":"YulLiteral","src":"34438:12:1","type":"","value":"ot succeed"}],"functionName":{"name":"mstore","nativeSrc":"34411:6:1","nodeType":"YulIdentifier","src":"34411:6:1"},"nativeSrc":"34411:40:1","nodeType":"YulFunctionCall","src":"34411:40:1"},"nativeSrc":"34411:40:1","nodeType":"YulExpressionStatement","src":"34411:40:1"},{"nativeSrc":"34460:27:1","nodeType":"YulAssignment","src":"34460:27:1","value":{"arguments":[{"name":"headStart","nativeSrc":"34472:9:1","nodeType":"YulIdentifier","src":"34472:9:1"},{"kind":"number","nativeSrc":"34483:3:1","nodeType":"YulLiteral","src":"34483:3:1","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"34468:3:1","nodeType":"YulIdentifier","src":"34468:3:1"},"nativeSrc":"34468:19:1","nodeType":"YulFunctionCall","src":"34468:19:1"},"variableNames":[{"name":"tail","nativeSrc":"34460:4:1","nodeType":"YulIdentifier","src":"34460:4:1"}]}]},"name":"abi_encode_tuple_t_stringliteral_e11ad79d1e4a7f2e5f376964cb99e8e8f7904e3fc16a109f7a7ecb9aa7956dcd__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"34087:406:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"34238:9:1","nodeType":"YulTypedName","src":"34238:9:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"34252:4:1","nodeType":"YulTypedName","src":"34252:4:1","type":""}],"src":"34087:406:1"},{"body":{"nativeSrc":"34672:223:1","nodeType":"YulBlock","src":"34672:223:1","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"34689:9:1","nodeType":"YulIdentifier","src":"34689:9:1"},{"kind":"number","nativeSrc":"34700:2:1","nodeType":"YulLiteral","src":"34700:2:1","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"34682:6:1","nodeType":"YulIdentifier","src":"34682:6:1"},"nativeSrc":"34682:21:1","nodeType":"YulFunctionCall","src":"34682:21:1"},"nativeSrc":"34682:21:1","nodeType":"YulExpressionStatement","src":"34682:21:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"34723:9:1","nodeType":"YulIdentifier","src":"34723:9:1"},{"kind":"number","nativeSrc":"34734:2:1","nodeType":"YulLiteral","src":"34734:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"34719:3:1","nodeType":"YulIdentifier","src":"34719:3:1"},"nativeSrc":"34719:18:1","nodeType":"YulFunctionCall","src":"34719:18:1"},{"kind":"number","nativeSrc":"34739:2:1","nodeType":"YulLiteral","src":"34739:2:1","type":"","value":"33"}],"functionName":{"name":"mstore","nativeSrc":"34712:6:1","nodeType":"YulIdentifier","src":"34712:6:1"},"nativeSrc":"34712:30:1","nodeType":"YulFunctionCall","src":"34712:30:1"},"nativeSrc":"34712:30:1","nodeType":"YulExpressionStatement","src":"34712:30:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"34762:9:1","nodeType":"YulIdentifier","src":"34762:9:1"},{"kind":"number","nativeSrc":"34773:2:1","nodeType":"YulLiteral","src":"34773:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"34758:3:1","nodeType":"YulIdentifier","src":"34758:3:1"},"nativeSrc":"34758:18:1","nodeType":"YulFunctionCall","src":"34758:18:1"},{"hexValue":"45524332303a206275726e2066726f6d20746865207a65726f20616464726573","kind":"string","nativeSrc":"34778:34:1","nodeType":"YulLiteral","src":"34778:34:1","type":"","value":"ERC20: burn from the zero addres"}],"functionName":{"name":"mstore","nativeSrc":"34751:6:1","nodeType":"YulIdentifier","src":"34751:6:1"},"nativeSrc":"34751:62:1","nodeType":"YulFunctionCall","src":"34751:62:1"},"nativeSrc":"34751:62:1","nodeType":"YulExpressionStatement","src":"34751:62:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"34833:9:1","nodeType":"YulIdentifier","src":"34833:9:1"},{"kind":"number","nativeSrc":"34844:2:1","nodeType":"YulLiteral","src":"34844:2:1","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"34829:3:1","nodeType":"YulIdentifier","src":"34829:3:1"},"nativeSrc":"34829:18:1","nodeType":"YulFunctionCall","src":"34829:18:1"},{"hexValue":"73","kind":"string","nativeSrc":"34849:3:1","nodeType":"YulLiteral","src":"34849:3:1","type":"","value":"s"}],"functionName":{"name":"mstore","nativeSrc":"34822:6:1","nodeType":"YulIdentifier","src":"34822:6:1"},"nativeSrc":"34822:31:1","nodeType":"YulFunctionCall","src":"34822:31:1"},"nativeSrc":"34822:31:1","nodeType":"YulExpressionStatement","src":"34822:31:1"},{"nativeSrc":"34862:27:1","nodeType":"YulAssignment","src":"34862:27:1","value":{"arguments":[{"name":"headStart","nativeSrc":"34874:9:1","nodeType":"YulIdentifier","src":"34874:9:1"},{"kind":"number","nativeSrc":"34885:3:1","nodeType":"YulLiteral","src":"34885:3:1","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"34870:3:1","nodeType":"YulIdentifier","src":"34870:3:1"},"nativeSrc":"34870:19:1","nodeType":"YulFunctionCall","src":"34870:19:1"},"variableNames":[{"name":"tail","nativeSrc":"34862:4:1","nodeType":"YulIdentifier","src":"34862:4:1"}]}]},"name":"abi_encode_tuple_t_stringliteral_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"34498:397:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"34649:9:1","nodeType":"YulTypedName","src":"34649:9:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"34663:4:1","nodeType":"YulTypedName","src":"34663:4:1","type":""}],"src":"34498:397:1"},{"body":{"nativeSrc":"35074:224:1","nodeType":"YulBlock","src":"35074:224:1","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"35091:9:1","nodeType":"YulIdentifier","src":"35091:9:1"},{"kind":"number","nativeSrc":"35102:2:1","nodeType":"YulLiteral","src":"35102:2:1","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"35084:6:1","nodeType":"YulIdentifier","src":"35084:6:1"},"nativeSrc":"35084:21:1","nodeType":"YulFunctionCall","src":"35084:21:1"},"nativeSrc":"35084:21:1","nodeType":"YulExpressionStatement","src":"35084:21:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"35125:9:1","nodeType":"YulIdentifier","src":"35125:9:1"},{"kind":"number","nativeSrc":"35136:2:1","nodeType":"YulLiteral","src":"35136:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"35121:3:1","nodeType":"YulIdentifier","src":"35121:3:1"},"nativeSrc":"35121:18:1","nodeType":"YulFunctionCall","src":"35121:18:1"},{"kind":"number","nativeSrc":"35141:2:1","nodeType":"YulLiteral","src":"35141:2:1","type":"","value":"34"}],"functionName":{"name":"mstore","nativeSrc":"35114:6:1","nodeType":"YulIdentifier","src":"35114:6:1"},"nativeSrc":"35114:30:1","nodeType":"YulFunctionCall","src":"35114:30:1"},"nativeSrc":"35114:30:1","nodeType":"YulExpressionStatement","src":"35114:30:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"35164:9:1","nodeType":"YulIdentifier","src":"35164:9:1"},{"kind":"number","nativeSrc":"35175:2:1","nodeType":"YulLiteral","src":"35175:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"35160:3:1","nodeType":"YulIdentifier","src":"35160:3:1"},"nativeSrc":"35160:18:1","nodeType":"YulFunctionCall","src":"35160:18:1"},{"hexValue":"45524332303a206275726e20616d6f756e7420657863656564732062616c616e","kind":"string","nativeSrc":"35180:34:1","nodeType":"YulLiteral","src":"35180:34:1","type":"","value":"ERC20: burn amount exceeds balan"}],"functionName":{"name":"mstore","nativeSrc":"35153:6:1","nodeType":"YulIdentifier","src":"35153:6:1"},"nativeSrc":"35153:62:1","nodeType":"YulFunctionCall","src":"35153:62:1"},"nativeSrc":"35153:62:1","nodeType":"YulExpressionStatement","src":"35153:62:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"35235:9:1","nodeType":"YulIdentifier","src":"35235:9:1"},{"kind":"number","nativeSrc":"35246:2:1","nodeType":"YulLiteral","src":"35246:2:1","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"35231:3:1","nodeType":"YulIdentifier","src":"35231:3:1"},"nativeSrc":"35231:18:1","nodeType":"YulFunctionCall","src":"35231:18:1"},{"hexValue":"6365","kind":"string","nativeSrc":"35251:4:1","nodeType":"YulLiteral","src":"35251:4:1","type":"","value":"ce"}],"functionName":{"name":"mstore","nativeSrc":"35224:6:1","nodeType":"YulIdentifier","src":"35224:6:1"},"nativeSrc":"35224:32:1","nodeType":"YulFunctionCall","src":"35224:32:1"},"nativeSrc":"35224:32:1","nodeType":"YulExpressionStatement","src":"35224:32:1"},{"nativeSrc":"35265:27:1","nodeType":"YulAssignment","src":"35265:27:1","value":{"arguments":[{"name":"headStart","nativeSrc":"35277:9:1","nodeType":"YulIdentifier","src":"35277:9:1"},{"kind":"number","nativeSrc":"35288:3:1","nodeType":"YulLiteral","src":"35288:3:1","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"35273:3:1","nodeType":"YulIdentifier","src":"35273:3:1"},"nativeSrc":"35273:19:1","nodeType":"YulFunctionCall","src":"35273:19:1"},"variableNames":[{"name":"tail","nativeSrc":"35265:4:1","nodeType":"YulIdentifier","src":"35265:4:1"}]}]},"name":"abi_encode_tuple_t_stringliteral_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"34900:398:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"35051:9:1","nodeType":"YulTypedName","src":"35051:9:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"35065:4:1","nodeType":"YulTypedName","src":"35065:4:1","type":""}],"src":"34900:398:1"},{"body":{"nativeSrc":"35477:229:1","nodeType":"YulBlock","src":"35477:229:1","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"35494:9:1","nodeType":"YulIdentifier","src":"35494:9:1"},{"kind":"number","nativeSrc":"35505:2:1","nodeType":"YulLiteral","src":"35505:2:1","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"35487:6:1","nodeType":"YulIdentifier","src":"35487:6:1"},"nativeSrc":"35487:21:1","nodeType":"YulFunctionCall","src":"35487:21:1"},"nativeSrc":"35487:21:1","nodeType":"YulExpressionStatement","src":"35487:21:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"35528:9:1","nodeType":"YulIdentifier","src":"35528:9:1"},{"kind":"number","nativeSrc":"35539:2:1","nodeType":"YulLiteral","src":"35539:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"35524:3:1","nodeType":"YulIdentifier","src":"35524:3:1"},"nativeSrc":"35524:18:1","nodeType":"YulFunctionCall","src":"35524:18:1"},{"kind":"number","nativeSrc":"35544:2:1","nodeType":"YulLiteral","src":"35544:2:1","type":"","value":"39"}],"functionName":{"name":"mstore","nativeSrc":"35517:6:1","nodeType":"YulIdentifier","src":"35517:6:1"},"nativeSrc":"35517:30:1","nodeType":"YulFunctionCall","src":"35517:30:1"},"nativeSrc":"35517:30:1","nodeType":"YulExpressionStatement","src":"35517:30:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"35567:9:1","nodeType":"YulIdentifier","src":"35567:9:1"},{"kind":"number","nativeSrc":"35578:2:1","nodeType":"YulLiteral","src":"35578:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"35563:3:1","nodeType":"YulIdentifier","src":"35563:3:1"},"nativeSrc":"35563:18:1","nodeType":"YulFunctionCall","src":"35563:18:1"},{"hexValue":"53616665436173743a2076616c756520646f65736e27742066697420696e2031","kind":"string","nativeSrc":"35583:34:1","nodeType":"YulLiteral","src":"35583:34:1","type":"","value":"SafeCast: value doesn't fit in 1"}],"functionName":{"name":"mstore","nativeSrc":"35556:6:1","nodeType":"YulIdentifier","src":"35556:6:1"},"nativeSrc":"35556:62:1","nodeType":"YulFunctionCall","src":"35556:62:1"},"nativeSrc":"35556:62:1","nodeType":"YulExpressionStatement","src":"35556:62:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"35638:9:1","nodeType":"YulIdentifier","src":"35638:9:1"},{"kind":"number","nativeSrc":"35649:2:1","nodeType":"YulLiteral","src":"35649:2:1","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"35634:3:1","nodeType":"YulIdentifier","src":"35634:3:1"},"nativeSrc":"35634:18:1","nodeType":"YulFunctionCall","src":"35634:18:1"},{"hexValue":"38342062697473","kind":"string","nativeSrc":"35654:9:1","nodeType":"YulLiteral","src":"35654:9:1","type":"","value":"84 bits"}],"functionName":{"name":"mstore","nativeSrc":"35627:6:1","nodeType":"YulIdentifier","src":"35627:6:1"},"nativeSrc":"35627:37:1","nodeType":"YulFunctionCall","src":"35627:37:1"},"nativeSrc":"35627:37:1","nodeType":"YulExpressionStatement","src":"35627:37:1"},{"nativeSrc":"35673:27:1","nodeType":"YulAssignment","src":"35673:27:1","value":{"arguments":[{"name":"headStart","nativeSrc":"35685:9:1","nodeType":"YulIdentifier","src":"35685:9:1"},{"kind":"number","nativeSrc":"35696:3:1","nodeType":"YulLiteral","src":"35696:3:1","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"35681:3:1","nodeType":"YulIdentifier","src":"35681:3:1"},"nativeSrc":"35681:19:1","nodeType":"YulFunctionCall","src":"35681:19:1"},"variableNames":[{"name":"tail","nativeSrc":"35673:4:1","nodeType":"YulIdentifier","src":"35673:4:1"}]}]},"name":"abi_encode_tuple_t_stringliteral_86c53d89b1944d561ecfa42e859033241d1df6ea8d42a57ae02f79d45de4aa75__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"35303:403:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"35454:9:1","nodeType":"YulTypedName","src":"35454:9:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"35468:4:1","nodeType":"YulTypedName","src":"35468:4:1","type":""}],"src":"35303:403:1"},{"body":{"nativeSrc":"35885:227:1","nodeType":"YulBlock","src":"35885:227:1","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"35902:9:1","nodeType":"YulIdentifier","src":"35902:9:1"},{"kind":"number","nativeSrc":"35913:2:1","nodeType":"YulLiteral","src":"35913:2:1","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"35895:6:1","nodeType":"YulIdentifier","src":"35895:6:1"},"nativeSrc":"35895:21:1","nodeType":"YulFunctionCall","src":"35895:21:1"},"nativeSrc":"35895:21:1","nodeType":"YulExpressionStatement","src":"35895:21:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"35936:9:1","nodeType":"YulIdentifier","src":"35936:9:1"},{"kind":"number","nativeSrc":"35947:2:1","nodeType":"YulLiteral","src":"35947:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"35932:3:1","nodeType":"YulIdentifier","src":"35932:3:1"},"nativeSrc":"35932:18:1","nodeType":"YulFunctionCall","src":"35932:18:1"},{"kind":"number","nativeSrc":"35952:2:1","nodeType":"YulLiteral","src":"35952:2:1","type":"","value":"37"}],"functionName":{"name":"mstore","nativeSrc":"35925:6:1","nodeType":"YulIdentifier","src":"35925:6:1"},"nativeSrc":"35925:30:1","nodeType":"YulFunctionCall","src":"35925:30:1"},"nativeSrc":"35925:30:1","nodeType":"YulExpressionStatement","src":"35925:30:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"35975:9:1","nodeType":"YulIdentifier","src":"35975:9:1"},{"kind":"number","nativeSrc":"35986:2:1","nodeType":"YulLiteral","src":"35986:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"35971:3:1","nodeType":"YulIdentifier","src":"35971:3:1"},"nativeSrc":"35971:18:1","nodeType":"YulFunctionCall","src":"35971:18:1"},{"hexValue":"45524332303a207472616e736665722066726f6d20746865207a65726f206164","kind":"string","nativeSrc":"35991:34:1","nodeType":"YulLiteral","src":"35991:34:1","type":"","value":"ERC20: transfer from the zero ad"}],"functionName":{"name":"mstore","nativeSrc":"35964:6:1","nodeType":"YulIdentifier","src":"35964:6:1"},"nativeSrc":"35964:62:1","nodeType":"YulFunctionCall","src":"35964:62:1"},"nativeSrc":"35964:62:1","nodeType":"YulExpressionStatement","src":"35964:62:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"36046:9:1","nodeType":"YulIdentifier","src":"36046:9:1"},{"kind":"number","nativeSrc":"36057:2:1","nodeType":"YulLiteral","src":"36057:2:1","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"36042:3:1","nodeType":"YulIdentifier","src":"36042:3:1"},"nativeSrc":"36042:18:1","nodeType":"YulFunctionCall","src":"36042:18:1"},{"hexValue":"6472657373","kind":"string","nativeSrc":"36062:7:1","nodeType":"YulLiteral","src":"36062:7:1","type":"","value":"dress"}],"functionName":{"name":"mstore","nativeSrc":"36035:6:1","nodeType":"YulIdentifier","src":"36035:6:1"},"nativeSrc":"36035:35:1","nodeType":"YulFunctionCall","src":"36035:35:1"},"nativeSrc":"36035:35:1","nodeType":"YulExpressionStatement","src":"36035:35:1"},{"nativeSrc":"36079:27:1","nodeType":"YulAssignment","src":"36079:27:1","value":{"arguments":[{"name":"headStart","nativeSrc":"36091:9:1","nodeType":"YulIdentifier","src":"36091:9:1"},{"kind":"number","nativeSrc":"36102:3:1","nodeType":"YulLiteral","src":"36102:3:1","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"36087:3:1","nodeType":"YulIdentifier","src":"36087:3:1"},"nativeSrc":"36087:19:1","nodeType":"YulFunctionCall","src":"36087:19:1"},"variableNames":[{"name":"tail","nativeSrc":"36079:4:1","nodeType":"YulIdentifier","src":"36079:4:1"}]}]},"name":"abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"35711:401:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"35862:9:1","nodeType":"YulTypedName","src":"35862:9:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"35876:4:1","nodeType":"YulTypedName","src":"35876:4:1","type":""}],"src":"35711:401:1"},{"body":{"nativeSrc":"36291:225:1","nodeType":"YulBlock","src":"36291:225:1","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"36308:9:1","nodeType":"YulIdentifier","src":"36308:9:1"},{"kind":"number","nativeSrc":"36319:2:1","nodeType":"YulLiteral","src":"36319:2:1","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"36301:6:1","nodeType":"YulIdentifier","src":"36301:6:1"},"nativeSrc":"36301:21:1","nodeType":"YulFunctionCall","src":"36301:21:1"},"nativeSrc":"36301:21:1","nodeType":"YulExpressionStatement","src":"36301:21:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"36342:9:1","nodeType":"YulIdentifier","src":"36342:9:1"},{"kind":"number","nativeSrc":"36353:2:1","nodeType":"YulLiteral","src":"36353:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"36338:3:1","nodeType":"YulIdentifier","src":"36338:3:1"},"nativeSrc":"36338:18:1","nodeType":"YulFunctionCall","src":"36338:18:1"},{"kind":"number","nativeSrc":"36358:2:1","nodeType":"YulLiteral","src":"36358:2:1","type":"","value":"35"}],"functionName":{"name":"mstore","nativeSrc":"36331:6:1","nodeType":"YulIdentifier","src":"36331:6:1"},"nativeSrc":"36331:30:1","nodeType":"YulFunctionCall","src":"36331:30:1"},"nativeSrc":"36331:30:1","nodeType":"YulExpressionStatement","src":"36331:30:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"36381:9:1","nodeType":"YulIdentifier","src":"36381:9:1"},{"kind":"number","nativeSrc":"36392:2:1","nodeType":"YulLiteral","src":"36392:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"36377:3:1","nodeType":"YulIdentifier","src":"36377:3:1"},"nativeSrc":"36377:18:1","nodeType":"YulFunctionCall","src":"36377:18:1"},{"hexValue":"45524332303a207472616e7366657220746f20746865207a65726f2061646472","kind":"string","nativeSrc":"36397:34:1","nodeType":"YulLiteral","src":"36397:34:1","type":"","value":"ERC20: transfer to the zero addr"}],"functionName":{"name":"mstore","nativeSrc":"36370:6:1","nodeType":"YulIdentifier","src":"36370:6:1"},"nativeSrc":"36370:62:1","nodeType":"YulFunctionCall","src":"36370:62:1"},"nativeSrc":"36370:62:1","nodeType":"YulExpressionStatement","src":"36370:62:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"36452:9:1","nodeType":"YulIdentifier","src":"36452:9:1"},{"kind":"number","nativeSrc":"36463:2:1","nodeType":"YulLiteral","src":"36463:2:1","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"36448:3:1","nodeType":"YulIdentifier","src":"36448:3:1"},"nativeSrc":"36448:18:1","nodeType":"YulFunctionCall","src":"36448:18:1"},{"hexValue":"657373","kind":"string","nativeSrc":"36468:5:1","nodeType":"YulLiteral","src":"36468:5:1","type":"","value":"ess"}],"functionName":{"name":"mstore","nativeSrc":"36441:6:1","nodeType":"YulIdentifier","src":"36441:6:1"},"nativeSrc":"36441:33:1","nodeType":"YulFunctionCall","src":"36441:33:1"},"nativeSrc":"36441:33:1","nodeType":"YulExpressionStatement","src":"36441:33:1"},{"nativeSrc":"36483:27:1","nodeType":"YulAssignment","src":"36483:27:1","value":{"arguments":[{"name":"headStart","nativeSrc":"36495:9:1","nodeType":"YulIdentifier","src":"36495:9:1"},{"kind":"number","nativeSrc":"36506:3:1","nodeType":"YulLiteral","src":"36506:3:1","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"36491:3:1","nodeType":"YulIdentifier","src":"36491:3:1"},"nativeSrc":"36491:19:1","nodeType":"YulFunctionCall","src":"36491:19:1"},"variableNames":[{"name":"tail","nativeSrc":"36483:4:1","nodeType":"YulIdentifier","src":"36483:4:1"}]}]},"name":"abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"36117:399:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"36268:9:1","nodeType":"YulTypedName","src":"36268:9:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"36282:4:1","nodeType":"YulTypedName","src":"36282:4:1","type":""}],"src":"36117:399:1"},{"body":{"nativeSrc":"36695:228:1","nodeType":"YulBlock","src":"36695:228:1","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"36712:9:1","nodeType":"YulIdentifier","src":"36712:9:1"},{"kind":"number","nativeSrc":"36723:2:1","nodeType":"YulLiteral","src":"36723:2:1","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"36705:6:1","nodeType":"YulIdentifier","src":"36705:6:1"},"nativeSrc":"36705:21:1","nodeType":"YulFunctionCall","src":"36705:21:1"},"nativeSrc":"36705:21:1","nodeType":"YulExpressionStatement","src":"36705:21:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"36746:9:1","nodeType":"YulIdentifier","src":"36746:9:1"},{"kind":"number","nativeSrc":"36757:2:1","nodeType":"YulLiteral","src":"36757:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"36742:3:1","nodeType":"YulIdentifier","src":"36742:3:1"},"nativeSrc":"36742:18:1","nodeType":"YulFunctionCall","src":"36742:18:1"},{"kind":"number","nativeSrc":"36762:2:1","nodeType":"YulLiteral","src":"36762:2:1","type":"","value":"38"}],"functionName":{"name":"mstore","nativeSrc":"36735:6:1","nodeType":"YulIdentifier","src":"36735:6:1"},"nativeSrc":"36735:30:1","nodeType":"YulFunctionCall","src":"36735:30:1"},"nativeSrc":"36735:30:1","nodeType":"YulExpressionStatement","src":"36735:30:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"36785:9:1","nodeType":"YulIdentifier","src":"36785:9:1"},{"kind":"number","nativeSrc":"36796:2:1","nodeType":"YulLiteral","src":"36796:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"36781:3:1","nodeType":"YulIdentifier","src":"36781:3:1"},"nativeSrc":"36781:18:1","nodeType":"YulFunctionCall","src":"36781:18:1"},{"hexValue":"45524332303a207472616e7366657220616d6f756e7420657863656564732062","kind":"string","nativeSrc":"36801:34:1","nodeType":"YulLiteral","src":"36801:34:1","type":"","value":"ERC20: transfer amount exceeds b"}],"functionName":{"name":"mstore","nativeSrc":"36774:6:1","nodeType":"YulIdentifier","src":"36774:6:1"},"nativeSrc":"36774:62:1","nodeType":"YulFunctionCall","src":"36774:62:1"},"nativeSrc":"36774:62:1","nodeType":"YulExpressionStatement","src":"36774:62:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"36856:9:1","nodeType":"YulIdentifier","src":"36856:9:1"},{"kind":"number","nativeSrc":"36867:2:1","nodeType":"YulLiteral","src":"36867:2:1","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"36852:3:1","nodeType":"YulIdentifier","src":"36852:3:1"},"nativeSrc":"36852:18:1","nodeType":"YulFunctionCall","src":"36852:18:1"},{"hexValue":"616c616e6365","kind":"string","nativeSrc":"36872:8:1","nodeType":"YulLiteral","src":"36872:8:1","type":"","value":"alance"}],"functionName":{"name":"mstore","nativeSrc":"36845:6:1","nodeType":"YulIdentifier","src":"36845:6:1"},"nativeSrc":"36845:36:1","nodeType":"YulFunctionCall","src":"36845:36:1"},"nativeSrc":"36845:36:1","nodeType":"YulExpressionStatement","src":"36845:36:1"},{"nativeSrc":"36890:27:1","nodeType":"YulAssignment","src":"36890:27:1","value":{"arguments":[{"name":"headStart","nativeSrc":"36902:9:1","nodeType":"YulIdentifier","src":"36902:9:1"},{"kind":"number","nativeSrc":"36913:3:1","nodeType":"YulLiteral","src":"36913:3:1","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"36898:3:1","nodeType":"YulIdentifier","src":"36898:3:1"},"nativeSrc":"36898:19:1","nodeType":"YulFunctionCall","src":"36898:19:1"},"variableNames":[{"name":"tail","nativeSrc":"36890:4:1","nodeType":"YulIdentifier","src":"36890:4:1"}]}]},"name":"abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"36521:402:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"36672:9:1","nodeType":"YulTypedName","src":"36672:9:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"36686:4:1","nodeType":"YulTypedName","src":"36686:4:1","type":""}],"src":"36521:402:1"},{"body":{"nativeSrc":"37074:143:1","nodeType":"YulBlock","src":"37074:143:1","statements":[{"nativeSrc":"37084:26:1","nodeType":"YulAssignment","src":"37084:26:1","value":{"arguments":[{"name":"headStart","nativeSrc":"37096:9:1","nodeType":"YulIdentifier","src":"37096:9:1"},{"kind":"number","nativeSrc":"37107:2:1","nodeType":"YulLiteral","src":"37107:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"37092:3:1","nodeType":"YulIdentifier","src":"37092:3:1"},"nativeSrc":"37092:18:1","nodeType":"YulFunctionCall","src":"37092:18:1"},"variableNames":[{"name":"tail","nativeSrc":"37084:4:1","nodeType":"YulIdentifier","src":"37084:4:1"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"37126:9:1","nodeType":"YulIdentifier","src":"37126:9:1"},{"name":"value0","nativeSrc":"37137:6:1","nodeType":"YulIdentifier","src":"37137:6:1"}],"functionName":{"name":"mstore","nativeSrc":"37119:6:1","nodeType":"YulIdentifier","src":"37119:6:1"},"nativeSrc":"37119:25:1","nodeType":"YulFunctionCall","src":"37119:25:1"},"nativeSrc":"37119:25:1","nodeType":"YulExpressionStatement","src":"37119:25:1"},{"expression":{"arguments":[{"name":"value1","nativeSrc":"37184:6:1","nodeType":"YulIdentifier","src":"37184:6:1"},{"arguments":[{"name":"headStart","nativeSrc":"37196:9:1","nodeType":"YulIdentifier","src":"37196:9:1"},{"kind":"number","nativeSrc":"37207:2:1","nodeType":"YulLiteral","src":"37207:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"37192:3:1","nodeType":"YulIdentifier","src":"37192:3:1"},"nativeSrc":"37192:18:1","nodeType":"YulFunctionCall","src":"37192:18:1"}],"functionName":{"name":"abi_encode_enum_DelegationType","nativeSrc":"37153:30:1","nodeType":"YulIdentifier","src":"37153:30:1"},"nativeSrc":"37153:58:1","nodeType":"YulFunctionCall","src":"37153:58:1"},"nativeSrc":"37153:58:1","nodeType":"YulExpressionStatement","src":"37153:58:1"}]},"name":"abi_encode_tuple_t_uint256_t_enum$_DelegationType_$1088__to_t_uint256_t_uint8__fromStack_reversed","nativeSrc":"36928:289:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"37035:9:1","nodeType":"YulTypedName","src":"37035:9:1","type":""},{"name":"value1","nativeSrc":"37046:6:1","nodeType":"YulTypedName","src":"37046:6:1","type":""},{"name":"value0","nativeSrc":"37054:6:1","nodeType":"YulTypedName","src":"37054:6:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"37065:4:1","nodeType":"YulTypedName","src":"37065:4:1","type":""}],"src":"36928:289:1"},{"body":{"nativeSrc":"37396:181:1","nodeType":"YulBlock","src":"37396:181:1","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"37413:9:1","nodeType":"YulIdentifier","src":"37413:9:1"},{"kind":"number","nativeSrc":"37424:2:1","nodeType":"YulLiteral","src":"37424:2:1","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"37406:6:1","nodeType":"YulIdentifier","src":"37406:6:1"},"nativeSrc":"37406:21:1","nodeType":"YulFunctionCall","src":"37406:21:1"},"nativeSrc":"37406:21:1","nodeType":"YulExpressionStatement","src":"37406:21:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"37447:9:1","nodeType":"YulIdentifier","src":"37447:9:1"},{"kind":"number","nativeSrc":"37458:2:1","nodeType":"YulLiteral","src":"37458:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"37443:3:1","nodeType":"YulIdentifier","src":"37443:3:1"},"nativeSrc":"37443:18:1","nodeType":"YulFunctionCall","src":"37443:18:1"},{"kind":"number","nativeSrc":"37463:2:1","nodeType":"YulLiteral","src":"37463:2:1","type":"","value":"31"}],"functionName":{"name":"mstore","nativeSrc":"37436:6:1","nodeType":"YulIdentifier","src":"37436:6:1"},"nativeSrc":"37436:30:1","nodeType":"YulFunctionCall","src":"37436:30:1"},"nativeSrc":"37436:30:1","nodeType":"YulExpressionStatement","src":"37436:30:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"37486:9:1","nodeType":"YulIdentifier","src":"37486:9:1"},{"kind":"number","nativeSrc":"37497:2:1","nodeType":"YulLiteral","src":"37497:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"37482:3:1","nodeType":"YulIdentifier","src":"37482:3:1"},"nativeSrc":"37482:18:1","nodeType":"YulFunctionCall","src":"37482:18:1"},{"hexValue":"45524332303a206d696e7420746f20746865207a65726f2061646472657373","kind":"string","nativeSrc":"37502:33:1","nodeType":"YulLiteral","src":"37502:33:1","type":"","value":"ERC20: mint to the zero address"}],"functionName":{"name":"mstore","nativeSrc":"37475:6:1","nodeType":"YulIdentifier","src":"37475:6:1"},"nativeSrc":"37475:61:1","nodeType":"YulFunctionCall","src":"37475:61:1"},"nativeSrc":"37475:61:1","nodeType":"YulExpressionStatement","src":"37475:61:1"},{"nativeSrc":"37545:26:1","nodeType":"YulAssignment","src":"37545:26:1","value":{"arguments":[{"name":"headStart","nativeSrc":"37557:9:1","nodeType":"YulIdentifier","src":"37557:9:1"},{"kind":"number","nativeSrc":"37568:2:1","nodeType":"YulLiteral","src":"37568:2:1","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"37553:3:1","nodeType":"YulIdentifier","src":"37553:3:1"},"nativeSrc":"37553:18:1","nodeType":"YulFunctionCall","src":"37553:18:1"},"variableNames":[{"name":"tail","nativeSrc":"37545:4:1","nodeType":"YulIdentifier","src":"37545:4:1"}]}]},"name":"abi_encode_tuple_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"37222:355:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"37373:9:1","nodeType":"YulTypedName","src":"37373:9:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"37387:4:1","nodeType":"YulTypedName","src":"37387:4:1","type":""}],"src":"37222:355:1"},{"body":{"nativeSrc":"37651:306:1","nodeType":"YulBlock","src":"37651:306:1","statements":[{"nativeSrc":"37661:10:1","nodeType":"YulAssignment","src":"37661:10:1","value":{"kind":"number","nativeSrc":"37670:1:1","nodeType":"YulLiteral","src":"37670:1:1","type":"","value":"1"},"variableNames":[{"name":"power","nativeSrc":"37661:5:1","nodeType":"YulIdentifier","src":"37661:5:1"}]},{"nativeSrc":"37680:13:1","nodeType":"YulAssignment","src":"37680:13:1","value":{"name":"_base","nativeSrc":"37688:5:1","nodeType":"YulIdentifier","src":"37688:5:1"},"variableNames":[{"name":"base","nativeSrc":"37680:4:1","nodeType":"YulIdentifier","src":"37680:4:1"}]},{"body":{"nativeSrc":"37738:213:1","nodeType":"YulBlock","src":"37738:213:1","statements":[{"body":{"nativeSrc":"37780:22:1","nodeType":"YulBlock","src":"37780:22:1","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"37782:16:1","nodeType":"YulIdentifier","src":"37782:16:1"},"nativeSrc":"37782:18:1","nodeType":"YulFunctionCall","src":"37782:18:1"},"nativeSrc":"37782:18:1","nodeType":"YulExpressionStatement","src":"37782:18:1"}]},"condition":{"arguments":[{"name":"base","nativeSrc":"37758:4:1","nodeType":"YulIdentifier","src":"37758:4:1"},{"arguments":[{"name":"max","nativeSrc":"37768:3:1","nodeType":"YulIdentifier","src":"37768:3:1"},{"name":"base","nativeSrc":"37773:4:1","nodeType":"YulIdentifier","src":"37773:4:1"}],"functionName":{"name":"div","nativeSrc":"37764:3:1","nodeType":"YulIdentifier","src":"37764:3:1"},"nativeSrc":"37764:14:1","nodeType":"YulFunctionCall","src":"37764:14:1"}],"functionName":{"name":"gt","nativeSrc":"37755:2:1","nodeType":"YulIdentifier","src":"37755:2:1"},"nativeSrc":"37755:24:1","nodeType":"YulFunctionCall","src":"37755:24:1"},"nativeSrc":"37752:50:1","nodeType":"YulIf","src":"37752:50:1"},{"body":{"nativeSrc":"37835:29:1","nodeType":"YulBlock","src":"37835:29:1","statements":[{"nativeSrc":"37837:25:1","nodeType":"YulAssignment","src":"37837:25:1","value":{"arguments":[{"name":"power","nativeSrc":"37850:5:1","nodeType":"YulIdentifier","src":"37850:5:1"},{"name":"base","nativeSrc":"37857:4:1","nodeType":"YulIdentifier","src":"37857:4:1"}],"functionName":{"name":"mul","nativeSrc":"37846:3:1","nodeType":"YulIdentifier","src":"37846:3:1"},"nativeSrc":"37846:16:1","nodeType":"YulFunctionCall","src":"37846:16:1"},"variableNames":[{"name":"power","nativeSrc":"37837:5:1","nodeType":"YulIdentifier","src":"37837:5:1"}]}]},"condition":{"arguments":[{"name":"exponent","nativeSrc":"37822:8:1","nodeType":"YulIdentifier","src":"37822:8:1"},{"kind":"number","nativeSrc":"37832:1:1","nodeType":"YulLiteral","src":"37832:1:1","type":"","value":"1"}],"functionName":{"name":"and","nativeSrc":"37818:3:1","nodeType":"YulIdentifier","src":"37818:3:1"},"nativeSrc":"37818:16:1","nodeType":"YulFunctionCall","src":"37818:16:1"},"nativeSrc":"37815:49:1","nodeType":"YulIf","src":"37815:49:1"},{"nativeSrc":"37877:23:1","nodeType":"YulAssignment","src":"37877:23:1","value":{"arguments":[{"name":"base","nativeSrc":"37889:4:1","nodeType":"YulIdentifier","src":"37889:4:1"},{"name":"base","nativeSrc":"37895:4:1","nodeType":"YulIdentifier","src":"37895:4:1"}],"functionName":{"name":"mul","nativeSrc":"37885:3:1","nodeType":"YulIdentifier","src":"37885:3:1"},"nativeSrc":"37885:15:1","nodeType":"YulFunctionCall","src":"37885:15:1"},"variableNames":[{"name":"base","nativeSrc":"37877:4:1","nodeType":"YulIdentifier","src":"37877:4:1"}]},{"nativeSrc":"37913:28:1","nodeType":"YulAssignment","src":"37913:28:1","value":{"arguments":[{"kind":"number","nativeSrc":"37929:1:1","nodeType":"YulLiteral","src":"37929:1:1","type":"","value":"1"},{"name":"exponent","nativeSrc":"37932:8:1","nodeType":"YulIdentifier","src":"37932:8:1"}],"functionName":{"name":"shr","nativeSrc":"37925:3:1","nodeType":"YulIdentifier","src":"37925:3:1"},"nativeSrc":"37925:16:1","nodeType":"YulFunctionCall","src":"37925:16:1"},"variableNames":[{"name":"exponent","nativeSrc":"37913:8:1","nodeType":"YulIdentifier","src":"37913:8:1"}]}]},"condition":{"arguments":[{"name":"exponent","nativeSrc":"37713:8:1","nodeType":"YulIdentifier","src":"37713:8:1"},{"kind":"number","nativeSrc":"37723:1:1","nodeType":"YulLiteral","src":"37723:1:1","type":"","value":"1"}],"functionName":{"name":"gt","nativeSrc":"37710:2:1","nodeType":"YulIdentifier","src":"37710:2:1"},"nativeSrc":"37710:15:1","nodeType":"YulFunctionCall","src":"37710:15:1"},"nativeSrc":"37702:249:1","nodeType":"YulForLoop","post":{"nativeSrc":"37726:3:1","nodeType":"YulBlock","src":"37726:3:1","statements":[]},"pre":{"nativeSrc":"37706:3:1","nodeType":"YulBlock","src":"37706:3:1","statements":[]},"src":"37702:249:1"}]},"name":"checked_exp_helper","nativeSrc":"37582:375:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"_base","nativeSrc":"37610:5:1","nodeType":"YulTypedName","src":"37610:5:1","type":""},{"name":"exponent","nativeSrc":"37617:8:1","nodeType":"YulTypedName","src":"37617:8:1","type":""},{"name":"max","nativeSrc":"37627:3:1","nodeType":"YulTypedName","src":"37627:3:1","type":""}],"returnVariables":[{"name":"power","nativeSrc":"37635:5:1","nodeType":"YulTypedName","src":"37635:5:1","type":""},{"name":"base","nativeSrc":"37642:4:1","nodeType":"YulTypedName","src":"37642:4:1","type":""}],"src":"37582:375:1"},{"body":{"nativeSrc":"38021:843:1","nodeType":"YulBlock","src":"38021:843:1","statements":[{"body":{"nativeSrc":"38059:52:1","nodeType":"YulBlock","src":"38059:52:1","statements":[{"nativeSrc":"38073:10:1","nodeType":"YulAssignment","src":"38073:10:1","value":{"kind":"number","nativeSrc":"38082:1:1","nodeType":"YulLiteral","src":"38082:1:1","type":"","value":"1"},"variableNames":[{"name":"power","nativeSrc":"38073:5:1","nodeType":"YulIdentifier","src":"38073:5:1"}]},{"nativeSrc":"38096:5:1","nodeType":"YulLeave","src":"38096:5:1"}]},"condition":{"arguments":[{"name":"exponent","nativeSrc":"38041:8:1","nodeType":"YulIdentifier","src":"38041:8:1"}],"functionName":{"name":"iszero","nativeSrc":"38034:6:1","nodeType":"YulIdentifier","src":"38034:6:1"},"nativeSrc":"38034:16:1","nodeType":"YulFunctionCall","src":"38034:16:1"},"nativeSrc":"38031:80:1","nodeType":"YulIf","src":"38031:80:1"},{"body":{"nativeSrc":"38144:52:1","nodeType":"YulBlock","src":"38144:52:1","statements":[{"nativeSrc":"38158:10:1","nodeType":"YulAssignment","src":"38158:10:1","value":{"kind":"number","nativeSrc":"38167:1:1","nodeType":"YulLiteral","src":"38167:1:1","type":"","value":"0"},"variableNames":[{"name":"power","nativeSrc":"38158:5:1","nodeType":"YulIdentifier","src":"38158:5:1"}]},{"nativeSrc":"38181:5:1","nodeType":"YulLeave","src":"38181:5:1"}]},"condition":{"arguments":[{"name":"base","nativeSrc":"38130:4:1","nodeType":"YulIdentifier","src":"38130:4:1"}],"functionName":{"name":"iszero","nativeSrc":"38123:6:1","nodeType":"YulIdentifier","src":"38123:6:1"},"nativeSrc":"38123:12:1","nodeType":"YulFunctionCall","src":"38123:12:1"},"nativeSrc":"38120:76:1","nodeType":"YulIf","src":"38120:76:1"},{"cases":[{"body":{"nativeSrc":"38232:52:1","nodeType":"YulBlock","src":"38232:52:1","statements":[{"nativeSrc":"38246:10:1","nodeType":"YulAssignment","src":"38246:10:1","value":{"kind":"number","nativeSrc":"38255:1:1","nodeType":"YulLiteral","src":"38255:1:1","type":"","value":"1"},"variableNames":[{"name":"power","nativeSrc":"38246:5:1","nodeType":"YulIdentifier","src":"38246:5:1"}]},{"nativeSrc":"38269:5:1","nodeType":"YulLeave","src":"38269:5:1"}]},"nativeSrc":"38225:59:1","nodeType":"YulCase","src":"38225:59:1","value":{"kind":"number","nativeSrc":"38230:1:1","nodeType":"YulLiteral","src":"38230:1:1","type":"","value":"1"}},{"body":{"nativeSrc":"38300:167:1","nodeType":"YulBlock","src":"38300:167:1","statements":[{"body":{"nativeSrc":"38335:22:1","nodeType":"YulBlock","src":"38335:22:1","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"38337:16:1","nodeType":"YulIdentifier","src":"38337:16:1"},"nativeSrc":"38337:18:1","nodeType":"YulFunctionCall","src":"38337:18:1"},"nativeSrc":"38337:18:1","nodeType":"YulExpressionStatement","src":"38337:18:1"}]},"condition":{"arguments":[{"name":"exponent","nativeSrc":"38320:8:1","nodeType":"YulIdentifier","src":"38320:8:1"},{"kind":"number","nativeSrc":"38330:3:1","nodeType":"YulLiteral","src":"38330:3:1","type":"","value":"255"}],"functionName":{"name":"gt","nativeSrc":"38317:2:1","nodeType":"YulIdentifier","src":"38317:2:1"},"nativeSrc":"38317:17:1","nodeType":"YulFunctionCall","src":"38317:17:1"},"nativeSrc":"38314:43:1","nodeType":"YulIf","src":"38314:43:1"},{"nativeSrc":"38370:25:1","nodeType":"YulAssignment","src":"38370:25:1","value":{"arguments":[{"name":"exponent","nativeSrc":"38383:8:1","nodeType":"YulIdentifier","src":"38383:8:1"},{"kind":"number","nativeSrc":"38393:1:1","nodeType":"YulLiteral","src":"38393:1:1","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"38379:3:1","nodeType":"YulIdentifier","src":"38379:3:1"},"nativeSrc":"38379:16:1","nodeType":"YulFunctionCall","src":"38379:16:1"},"variableNames":[{"name":"power","nativeSrc":"38370:5:1","nodeType":"YulIdentifier","src":"38370:5:1"}]},{"nativeSrc":"38408:11:1","nodeType":"YulVariableDeclaration","src":"38408:11:1","value":{"kind":"number","nativeSrc":"38418:1:1","nodeType":"YulLiteral","src":"38418:1:1","type":"","value":"0"},"variables":[{"name":"_1","nativeSrc":"38412:2:1","nodeType":"YulTypedName","src":"38412:2:1","type":""}]},{"nativeSrc":"38432:7:1","nodeType":"YulAssignment","src":"38432:7:1","value":{"kind":"number","nativeSrc":"38438:1:1","nodeType":"YulLiteral","src":"38438:1:1","type":"","value":"0"},"variableNames":[{"name":"_1","nativeSrc":"38432:2:1","nodeType":"YulIdentifier","src":"38432:2:1"}]},{"nativeSrc":"38452:5:1","nodeType":"YulLeave","src":"38452:5:1"}]},"nativeSrc":"38293:174:1","nodeType":"YulCase","src":"38293:174:1","value":{"kind":"number","nativeSrc":"38298:1:1","nodeType":"YulLiteral","src":"38298:1:1","type":"","value":"2"}}],"expression":{"name":"base","nativeSrc":"38212:4:1","nodeType":"YulIdentifier","src":"38212:4:1"},"nativeSrc":"38205:262:1","nodeType":"YulSwitch","src":"38205:262:1"},{"body":{"nativeSrc":"38565:114:1","nodeType":"YulBlock","src":"38565:114:1","statements":[{"nativeSrc":"38579:28:1","nodeType":"YulAssignment","src":"38579:28:1","value":{"arguments":[{"name":"base","nativeSrc":"38592:4:1","nodeType":"YulIdentifier","src":"38592:4:1"},{"name":"exponent","nativeSrc":"38598:8:1","nodeType":"YulIdentifier","src":"38598:8:1"}],"functionName":{"name":"exp","nativeSrc":"38588:3:1","nodeType":"YulIdentifier","src":"38588:3:1"},"nativeSrc":"38588:19:1","nodeType":"YulFunctionCall","src":"38588:19:1"},"variableNames":[{"name":"power","nativeSrc":"38579:5:1","nodeType":"YulIdentifier","src":"38579:5:1"}]},{"nativeSrc":"38620:11:1","nodeType":"YulVariableDeclaration","src":"38620:11:1","value":{"kind":"number","nativeSrc":"38630:1:1","nodeType":"YulLiteral","src":"38630:1:1","type":"","value":"0"},"variables":[{"name":"_2","nativeSrc":"38624:2:1","nodeType":"YulTypedName","src":"38624:2:1","type":""}]},{"nativeSrc":"38644:7:1","nodeType":"YulAssignment","src":"38644:7:1","value":{"kind":"number","nativeSrc":"38650:1:1","nodeType":"YulLiteral","src":"38650:1:1","type":"","value":"0"},"variableNames":[{"name":"_2","nativeSrc":"38644:2:1","nodeType":"YulIdentifier","src":"38644:2:1"}]},{"nativeSrc":"38664:5:1","nodeType":"YulLeave","src":"38664:5:1"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"base","nativeSrc":"38489:4:1","nodeType":"YulIdentifier","src":"38489:4:1"},{"kind":"number","nativeSrc":"38495:2:1","nodeType":"YulLiteral","src":"38495:2:1","type":"","value":"11"}],"functionName":{"name":"lt","nativeSrc":"38486:2:1","nodeType":"YulIdentifier","src":"38486:2:1"},"nativeSrc":"38486:12:1","nodeType":"YulFunctionCall","src":"38486:12:1"},{"arguments":[{"name":"exponent","nativeSrc":"38503:8:1","nodeType":"YulIdentifier","src":"38503:8:1"},{"kind":"number","nativeSrc":"38513:2:1","nodeType":"YulLiteral","src":"38513:2:1","type":"","value":"78"}],"functionName":{"name":"lt","nativeSrc":"38500:2:1","nodeType":"YulIdentifier","src":"38500:2:1"},"nativeSrc":"38500:16:1","nodeType":"YulFunctionCall","src":"38500:16:1"}],"functionName":{"name":"and","nativeSrc":"38482:3:1","nodeType":"YulIdentifier","src":"38482:3:1"},"nativeSrc":"38482:35:1","nodeType":"YulFunctionCall","src":"38482:35:1"},{"arguments":[{"arguments":[{"name":"base","nativeSrc":"38526:4:1","nodeType":"YulIdentifier","src":"38526:4:1"},{"kind":"number","nativeSrc":"38532:3:1","nodeType":"YulLiteral","src":"38532:3:1","type":"","value":"307"}],"functionName":{"name":"lt","nativeSrc":"38523:2:1","nodeType":"YulIdentifier","src":"38523:2:1"},"nativeSrc":"38523:13:1","nodeType":"YulFunctionCall","src":"38523:13:1"},{"arguments":[{"name":"exponent","nativeSrc":"38541:8:1","nodeType":"YulIdentifier","src":"38541:8:1"},{"kind":"number","nativeSrc":"38551:2:1","nodeType":"YulLiteral","src":"38551:2:1","type":"","value":"32"}],"functionName":{"name":"lt","nativeSrc":"38538:2:1","nodeType":"YulIdentifier","src":"38538:2:1"},"nativeSrc":"38538:16:1","nodeType":"YulFunctionCall","src":"38538:16:1"}],"functionName":{"name":"and","nativeSrc":"38519:3:1","nodeType":"YulIdentifier","src":"38519:3:1"},"nativeSrc":"38519:36:1","nodeType":"YulFunctionCall","src":"38519:36:1"}],"functionName":{"name":"or","nativeSrc":"38479:2:1","nodeType":"YulIdentifier","src":"38479:2:1"},"nativeSrc":"38479:77:1","nodeType":"YulFunctionCall","src":"38479:77:1"},"nativeSrc":"38476:203:1","nodeType":"YulIf","src":"38476:203:1"},{"nativeSrc":"38688:65:1","nodeType":"YulVariableDeclaration","src":"38688:65:1","value":{"arguments":[{"name":"base","nativeSrc":"38730:4:1","nodeType":"YulIdentifier","src":"38730:4:1"},{"name":"exponent","nativeSrc":"38736:8:1","nodeType":"YulIdentifier","src":"38736:8:1"},{"arguments":[{"kind":"number","nativeSrc":"38750:1:1","nodeType":"YulLiteral","src":"38750:1:1","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"38746:3:1","nodeType":"YulIdentifier","src":"38746:3:1"},"nativeSrc":"38746:6:1","nodeType":"YulFunctionCall","src":"38746:6:1"}],"functionName":{"name":"checked_exp_helper","nativeSrc":"38711:18:1","nodeType":"YulIdentifier","src":"38711:18:1"},"nativeSrc":"38711:42:1","nodeType":"YulFunctionCall","src":"38711:42:1"},"variables":[{"name":"power_1","nativeSrc":"38692:7:1","nodeType":"YulTypedName","src":"38692:7:1","type":""},{"name":"base_1","nativeSrc":"38701:6:1","nodeType":"YulTypedName","src":"38701:6:1","type":""}]},{"body":{"nativeSrc":"38798:22:1","nodeType":"YulBlock","src":"38798:22:1","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"38800:16:1","nodeType":"YulIdentifier","src":"38800:16:1"},"nativeSrc":"38800:18:1","nodeType":"YulFunctionCall","src":"38800:18:1"},"nativeSrc":"38800:18:1","nodeType":"YulExpressionStatement","src":"38800:18:1"}]},"condition":{"arguments":[{"name":"power_1","nativeSrc":"38768:7:1","nodeType":"YulIdentifier","src":"38768:7:1"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"38785:1:1","nodeType":"YulLiteral","src":"38785:1:1","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"38781:3:1","nodeType":"YulIdentifier","src":"38781:3:1"},"nativeSrc":"38781:6:1","nodeType":"YulFunctionCall","src":"38781:6:1"},{"name":"base_1","nativeSrc":"38789:6:1","nodeType":"YulIdentifier","src":"38789:6:1"}],"functionName":{"name":"div","nativeSrc":"38777:3:1","nodeType":"YulIdentifier","src":"38777:3:1"},"nativeSrc":"38777:19:1","nodeType":"YulFunctionCall","src":"38777:19:1"}],"functionName":{"name":"gt","nativeSrc":"38765:2:1","nodeType":"YulIdentifier","src":"38765:2:1"},"nativeSrc":"38765:32:1","nodeType":"YulFunctionCall","src":"38765:32:1"},"nativeSrc":"38762:58:1","nodeType":"YulIf","src":"38762:58:1"},{"nativeSrc":"38829:29:1","nodeType":"YulAssignment","src":"38829:29:1","value":{"arguments":[{"name":"power_1","nativeSrc":"38842:7:1","nodeType":"YulIdentifier","src":"38842:7:1"},{"name":"base_1","nativeSrc":"38851:6:1","nodeType":"YulIdentifier","src":"38851:6:1"}],"functionName":{"name":"mul","nativeSrc":"38838:3:1","nodeType":"YulIdentifier","src":"38838:3:1"},"nativeSrc":"38838:20:1","nodeType":"YulFunctionCall","src":"38838:20:1"},"variableNames":[{"name":"power","nativeSrc":"38829:5:1","nodeType":"YulIdentifier","src":"38829:5:1"}]}]},"name":"checked_exp_unsigned","nativeSrc":"37962:902:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"base","nativeSrc":"37992:4:1","nodeType":"YulTypedName","src":"37992:4:1","type":""},{"name":"exponent","nativeSrc":"37998:8:1","nodeType":"YulTypedName","src":"37998:8:1","type":""}],"returnVariables":[{"name":"power","nativeSrc":"38011:5:1","nodeType":"YulTypedName","src":"38011:5:1","type":""}],"src":"37962:902:1"},{"body":{"nativeSrc":"38939:61:1","nodeType":"YulBlock","src":"38939:61:1","statements":[{"nativeSrc":"38949:45:1","nodeType":"YulAssignment","src":"38949:45:1","value":{"arguments":[{"name":"base","nativeSrc":"38979:4:1","nodeType":"YulIdentifier","src":"38979:4:1"},{"name":"exponent","nativeSrc":"38985:8:1","nodeType":"YulIdentifier","src":"38985:8:1"}],"functionName":{"name":"checked_exp_unsigned","nativeSrc":"38958:20:1","nodeType":"YulIdentifier","src":"38958:20:1"},"nativeSrc":"38958:36:1","nodeType":"YulFunctionCall","src":"38958:36:1"},"variableNames":[{"name":"power","nativeSrc":"38949:5:1","nodeType":"YulIdentifier","src":"38949:5:1"}]}]},"name":"checked_exp_t_uint256_t_uint256","nativeSrc":"38869:131:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"base","nativeSrc":"38910:4:1","nodeType":"YulTypedName","src":"38910:4:1","type":""},{"name":"exponent","nativeSrc":"38916:8:1","nodeType":"YulTypedName","src":"38916:8:1","type":""}],"returnVariables":[{"name":"power","nativeSrc":"38929:5:1","nodeType":"YulTypedName","src":"38929:5:1","type":""}],"src":"38869:131:1"},{"body":{"nativeSrc":"39179:177:1","nodeType":"YulBlock","src":"39179:177:1","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"39196:9:1","nodeType":"YulIdentifier","src":"39196:9:1"},{"kind":"number","nativeSrc":"39207:2:1","nodeType":"YulLiteral","src":"39207:2:1","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"39189:6:1","nodeType":"YulIdentifier","src":"39189:6:1"},"nativeSrc":"39189:21:1","nodeType":"YulFunctionCall","src":"39189:21:1"},"nativeSrc":"39189:21:1","nodeType":"YulExpressionStatement","src":"39189:21:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"39230:9:1","nodeType":"YulIdentifier","src":"39230:9:1"},{"kind":"number","nativeSrc":"39241:2:1","nodeType":"YulLiteral","src":"39241:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"39226:3:1","nodeType":"YulIdentifier","src":"39226:3:1"},"nativeSrc":"39226:18:1","nodeType":"YulFunctionCall","src":"39226:18:1"},{"kind":"number","nativeSrc":"39246:2:1","nodeType":"YulLiteral","src":"39246:2:1","type":"","value":"27"}],"functionName":{"name":"mstore","nativeSrc":"39219:6:1","nodeType":"YulIdentifier","src":"39219:6:1"},"nativeSrc":"39219:30:1","nodeType":"YulFunctionCall","src":"39219:30:1"},"nativeSrc":"39219:30:1","nodeType":"YulExpressionStatement","src":"39219:30:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"39269:9:1","nodeType":"YulIdentifier","src":"39269:9:1"},{"kind":"number","nativeSrc":"39280:2:1","nodeType":"YulLiteral","src":"39280:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"39265:3:1","nodeType":"YulIdentifier","src":"39265:3:1"},"nativeSrc":"39265:18:1","nodeType":"YulFunctionCall","src":"39265:18:1"},{"hexValue":"41444d494e5f43414e4e4f545f42455f494e495449414c495a4544","kind":"string","nativeSrc":"39285:29:1","nodeType":"YulLiteral","src":"39285:29:1","type":"","value":"ADMIN_CANNOT_BE_INITIALIZED"}],"functionName":{"name":"mstore","nativeSrc":"39258:6:1","nodeType":"YulIdentifier","src":"39258:6:1"},"nativeSrc":"39258:57:1","nodeType":"YulFunctionCall","src":"39258:57:1"},"nativeSrc":"39258:57:1","nodeType":"YulExpressionStatement","src":"39258:57:1"},{"nativeSrc":"39324:26:1","nodeType":"YulAssignment","src":"39324:26:1","value":{"arguments":[{"name":"headStart","nativeSrc":"39336:9:1","nodeType":"YulIdentifier","src":"39336:9:1"},{"kind":"number","nativeSrc":"39347:2:1","nodeType":"YulLiteral","src":"39347:2:1","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"39332:3:1","nodeType":"YulIdentifier","src":"39332:3:1"},"nativeSrc":"39332:18:1","nodeType":"YulFunctionCall","src":"39332:18:1"},"variableNames":[{"name":"tail","nativeSrc":"39324:4:1","nodeType":"YulIdentifier","src":"39324:4:1"}]}]},"name":"abi_encode_tuple_t_stringliteral_b2af192d647f8b8a9f94a546a11b40d3536722e4b74d77e3330eb171e0c93079__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"39005:351:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"39156:9:1","nodeType":"YulTypedName","src":"39156:9:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"39170:4:1","nodeType":"YulTypedName","src":"39170:4:1","type":""}],"src":"39005:351:1"},{"body":{"nativeSrc":"39535:170:1","nodeType":"YulBlock","src":"39535:170:1","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"39552:9:1","nodeType":"YulIdentifier","src":"39552:9:1"},{"kind":"number","nativeSrc":"39563:2:1","nodeType":"YulLiteral","src":"39563:2:1","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"39545:6:1","nodeType":"YulIdentifier","src":"39545:6:1"},"nativeSrc":"39545:21:1","nodeType":"YulFunctionCall","src":"39545:21:1"},"nativeSrc":"39545:21:1","nodeType":"YulExpressionStatement","src":"39545:21:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"39586:9:1","nodeType":"YulIdentifier","src":"39586:9:1"},{"kind":"number","nativeSrc":"39597:2:1","nodeType":"YulLiteral","src":"39597:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"39582:3:1","nodeType":"YulIdentifier","src":"39582:3:1"},"nativeSrc":"39582:18:1","nodeType":"YulFunctionCall","src":"39582:18:1"},{"kind":"number","nativeSrc":"39602:2:1","nodeType":"YulLiteral","src":"39602:2:1","type":"","value":"20"}],"functionName":{"name":"mstore","nativeSrc":"39575:6:1","nodeType":"YulIdentifier","src":"39575:6:1"},"nativeSrc":"39575:30:1","nodeType":"YulFunctionCall","src":"39575:30:1"},"nativeSrc":"39575:30:1","nodeType":"YulExpressionStatement","src":"39575:30:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"39625:9:1","nodeType":"YulIdentifier","src":"39625:9:1"},{"kind":"number","nativeSrc":"39636:2:1","nodeType":"YulLiteral","src":"39636:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"39621:3:1","nodeType":"YulIdentifier","src":"39621:3:1"},"nativeSrc":"39621:18:1","nodeType":"YulFunctionCall","src":"39621:18:1"},{"hexValue":"494e56414c49445f424c4f434b5f4e554d424552","kind":"string","nativeSrc":"39641:22:1","nodeType":"YulLiteral","src":"39641:22:1","type":"","value":"INVALID_BLOCK_NUMBER"}],"functionName":{"name":"mstore","nativeSrc":"39614:6:1","nodeType":"YulIdentifier","src":"39614:6:1"},"nativeSrc":"39614:50:1","nodeType":"YulFunctionCall","src":"39614:50:1"},"nativeSrc":"39614:50:1","nodeType":"YulExpressionStatement","src":"39614:50:1"},{"nativeSrc":"39673:26:1","nodeType":"YulAssignment","src":"39673:26:1","value":{"arguments":[{"name":"headStart","nativeSrc":"39685:9:1","nodeType":"YulIdentifier","src":"39685:9:1"},{"kind":"number","nativeSrc":"39696:2:1","nodeType":"YulLiteral","src":"39696:2:1","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"39681:3:1","nodeType":"YulIdentifier","src":"39681:3:1"},"nativeSrc":"39681:18:1","nodeType":"YulFunctionCall","src":"39681:18:1"},"variableNames":[{"name":"tail","nativeSrc":"39673:4:1","nodeType":"YulIdentifier","src":"39673:4:1"}]}]},"name":"abi_encode_tuple_t_stringliteral_dd61c748dcfe71393203093270c457f6ceb8834cce0160376620e7b2f811559c__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"39361:344:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"39512:9:1","nodeType":"YulTypedName","src":"39512:9:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"39526:4:1","nodeType":"YulTypedName","src":"39526:4:1","type":""}],"src":"39361:344:1"},{"body":{"nativeSrc":"39923:302:1","nodeType":"YulBlock","src":"39923:302:1","statements":[{"nativeSrc":"39933:27:1","nodeType":"YulAssignment","src":"39933:27:1","value":{"arguments":[{"name":"headStart","nativeSrc":"39945:9:1","nodeType":"YulIdentifier","src":"39945:9:1"},{"kind":"number","nativeSrc":"39956:3:1","nodeType":"YulLiteral","src":"39956:3:1","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"39941:3:1","nodeType":"YulIdentifier","src":"39941:3:1"},"nativeSrc":"39941:19:1","nodeType":"YulFunctionCall","src":"39941:19:1"},"variableNames":[{"name":"tail","nativeSrc":"39933:4:1","nodeType":"YulIdentifier","src":"39933:4:1"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"39976:9:1","nodeType":"YulIdentifier","src":"39976:9:1"},{"arguments":[{"name":"value0","nativeSrc":"39991:6:1","nodeType":"YulIdentifier","src":"39991:6:1"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"40007:3:1","nodeType":"YulLiteral","src":"40007:3:1","type":"","value":"160"},{"kind":"number","nativeSrc":"40012:1:1","nodeType":"YulLiteral","src":"40012:1:1","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"40003:3:1","nodeType":"YulIdentifier","src":"40003:3:1"},"nativeSrc":"40003:11:1","nodeType":"YulFunctionCall","src":"40003:11:1"},{"kind":"number","nativeSrc":"40016:1:1","nodeType":"YulLiteral","src":"40016:1:1","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"39999:3:1","nodeType":"YulIdentifier","src":"39999:3:1"},"nativeSrc":"39999:19:1","nodeType":"YulFunctionCall","src":"39999:19:1"}],"functionName":{"name":"and","nativeSrc":"39987:3:1","nodeType":"YulIdentifier","src":"39987:3:1"},"nativeSrc":"39987:32:1","nodeType":"YulFunctionCall","src":"39987:32:1"}],"functionName":{"name":"mstore","nativeSrc":"39969:6:1","nodeType":"YulIdentifier","src":"39969:6:1"},"nativeSrc":"39969:51:1","nodeType":"YulFunctionCall","src":"39969:51:1"},"nativeSrc":"39969:51:1","nodeType":"YulExpressionStatement","src":"39969:51:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"40040:9:1","nodeType":"YulIdentifier","src":"40040:9:1"},{"kind":"number","nativeSrc":"40051:2:1","nodeType":"YulLiteral","src":"40051:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"40036:3:1","nodeType":"YulIdentifier","src":"40036:3:1"},"nativeSrc":"40036:18:1","nodeType":"YulFunctionCall","src":"40036:18:1"},{"arguments":[{"name":"value1","nativeSrc":"40060:6:1","nodeType":"YulIdentifier","src":"40060:6:1"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"40076:3:1","nodeType":"YulLiteral","src":"40076:3:1","type":"","value":"160"},{"kind":"number","nativeSrc":"40081:1:1","nodeType":"YulLiteral","src":"40081:1:1","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"40072:3:1","nodeType":"YulIdentifier","src":"40072:3:1"},"nativeSrc":"40072:11:1","nodeType":"YulFunctionCall","src":"40072:11:1"},{"kind":"number","nativeSrc":"40085:1:1","nodeType":"YulLiteral","src":"40085:1:1","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"40068:3:1","nodeType":"YulIdentifier","src":"40068:3:1"},"nativeSrc":"40068:19:1","nodeType":"YulFunctionCall","src":"40068:19:1"}],"functionName":{"name":"and","nativeSrc":"40056:3:1","nodeType":"YulIdentifier","src":"40056:3:1"},"nativeSrc":"40056:32:1","nodeType":"YulFunctionCall","src":"40056:32:1"}],"functionName":{"name":"mstore","nativeSrc":"40029:6:1","nodeType":"YulIdentifier","src":"40029:6:1"},"nativeSrc":"40029:60:1","nodeType":"YulFunctionCall","src":"40029:60:1"},"nativeSrc":"40029:60:1","nodeType":"YulExpressionStatement","src":"40029:60:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"40109:9:1","nodeType":"YulIdentifier","src":"40109:9:1"},{"kind":"number","nativeSrc":"40120:2:1","nodeType":"YulLiteral","src":"40120:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"40105:3:1","nodeType":"YulIdentifier","src":"40105:3:1"},"nativeSrc":"40105:18:1","nodeType":"YulFunctionCall","src":"40105:18:1"},{"name":"value2","nativeSrc":"40125:6:1","nodeType":"YulIdentifier","src":"40125:6:1"}],"functionName":{"name":"mstore","nativeSrc":"40098:6:1","nodeType":"YulIdentifier","src":"40098:6:1"},"nativeSrc":"40098:34:1","nodeType":"YulFunctionCall","src":"40098:34:1"},"nativeSrc":"40098:34:1","nodeType":"YulExpressionStatement","src":"40098:34:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"40152:9:1","nodeType":"YulIdentifier","src":"40152:9:1"},{"kind":"number","nativeSrc":"40163:2:1","nodeType":"YulLiteral","src":"40163:2:1","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"40148:3:1","nodeType":"YulIdentifier","src":"40148:3:1"},"nativeSrc":"40148:18:1","nodeType":"YulFunctionCall","src":"40148:18:1"},{"name":"value3","nativeSrc":"40168:6:1","nodeType":"YulIdentifier","src":"40168:6:1"}],"functionName":{"name":"mstore","nativeSrc":"40141:6:1","nodeType":"YulIdentifier","src":"40141:6:1"},"nativeSrc":"40141:34:1","nodeType":"YulFunctionCall","src":"40141:34:1"},"nativeSrc":"40141:34:1","nodeType":"YulExpressionStatement","src":"40141:34:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"40195:9:1","nodeType":"YulIdentifier","src":"40195:9:1"},{"kind":"number","nativeSrc":"40206:3:1","nodeType":"YulLiteral","src":"40206:3:1","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"40191:3:1","nodeType":"YulIdentifier","src":"40191:3:1"},"nativeSrc":"40191:19:1","nodeType":"YulFunctionCall","src":"40191:19:1"},{"name":"value4","nativeSrc":"40212:6:1","nodeType":"YulIdentifier","src":"40212:6:1"}],"functionName":{"name":"mstore","nativeSrc":"40184:6:1","nodeType":"YulIdentifier","src":"40184:6:1"},"nativeSrc":"40184:35:1","nodeType":"YulFunctionCall","src":"40184:35:1"},"nativeSrc":"40184:35:1","nodeType":"YulExpressionStatement","src":"40184:35:1"}]},"name":"abi_encode_tuple_t_address_t_address_t_uint256_t_uint256_t_uint256__to_t_address_t_address_t_uint256_t_uint256_t_uint256__fromStack_reversed","nativeSrc":"39710:515:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"39860:9:1","nodeType":"YulTypedName","src":"39860:9:1","type":""},{"name":"value4","nativeSrc":"39871:6:1","nodeType":"YulTypedName","src":"39871:6:1","type":""},{"name":"value3","nativeSrc":"39879:6:1","nodeType":"YulTypedName","src":"39879:6:1","type":""},{"name":"value2","nativeSrc":"39887:6:1","nodeType":"YulTypedName","src":"39887:6:1","type":""},{"name":"value1","nativeSrc":"39895:6:1","nodeType":"YulTypedName","src":"39895:6:1","type":""},{"name":"value0","nativeSrc":"39903:6:1","nodeType":"YulTypedName","src":"39903:6:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"39914:4:1","nodeType":"YulTypedName","src":"39914:4:1","type":""}],"src":"39710:515:1"},{"body":{"nativeSrc":"40404:228:1","nodeType":"YulBlock","src":"40404:228:1","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"40421:9:1","nodeType":"YulIdentifier","src":"40421:9:1"},{"kind":"number","nativeSrc":"40432:2:1","nodeType":"YulLiteral","src":"40432:2:1","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"40414:6:1","nodeType":"YulIdentifier","src":"40414:6:1"},"nativeSrc":"40414:21:1","nodeType":"YulFunctionCall","src":"40414:21:1"},"nativeSrc":"40414:21:1","nodeType":"YulExpressionStatement","src":"40414:21:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"40455:9:1","nodeType":"YulIdentifier","src":"40455:9:1"},{"kind":"number","nativeSrc":"40466:2:1","nodeType":"YulLiteral","src":"40466:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"40451:3:1","nodeType":"YulIdentifier","src":"40451:3:1"},"nativeSrc":"40451:18:1","nodeType":"YulFunctionCall","src":"40451:18:1"},{"kind":"number","nativeSrc":"40471:2:1","nodeType":"YulLiteral","src":"40471:2:1","type":"","value":"38"}],"functionName":{"name":"mstore","nativeSrc":"40444:6:1","nodeType":"YulIdentifier","src":"40444:6:1"},"nativeSrc":"40444:30:1","nodeType":"YulFunctionCall","src":"40444:30:1"},"nativeSrc":"40444:30:1","nodeType":"YulExpressionStatement","src":"40444:30:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"40494:9:1","nodeType":"YulIdentifier","src":"40494:9:1"},{"kind":"number","nativeSrc":"40505:2:1","nodeType":"YulLiteral","src":"40505:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"40490:3:1","nodeType":"YulIdentifier","src":"40490:3:1"},"nativeSrc":"40490:18:1","nodeType":"YulFunctionCall","src":"40490:18:1"},{"hexValue":"416464726573733a20696e73756666696369656e742062616c616e636520666f","kind":"string","nativeSrc":"40510:34:1","nodeType":"YulLiteral","src":"40510:34:1","type":"","value":"Address: insufficient balance fo"}],"functionName":{"name":"mstore","nativeSrc":"40483:6:1","nodeType":"YulIdentifier","src":"40483:6:1"},"nativeSrc":"40483:62:1","nodeType":"YulFunctionCall","src":"40483:62:1"},"nativeSrc":"40483:62:1","nodeType":"YulExpressionStatement","src":"40483:62:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"40565:9:1","nodeType":"YulIdentifier","src":"40565:9:1"},{"kind":"number","nativeSrc":"40576:2:1","nodeType":"YulLiteral","src":"40576:2:1","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"40561:3:1","nodeType":"YulIdentifier","src":"40561:3:1"},"nativeSrc":"40561:18:1","nodeType":"YulFunctionCall","src":"40561:18:1"},{"hexValue":"722063616c6c","kind":"string","nativeSrc":"40581:8:1","nodeType":"YulLiteral","src":"40581:8:1","type":"","value":"r call"}],"functionName":{"name":"mstore","nativeSrc":"40554:6:1","nodeType":"YulIdentifier","src":"40554:6:1"},"nativeSrc":"40554:36:1","nodeType":"YulFunctionCall","src":"40554:36:1"},"nativeSrc":"40554:36:1","nodeType":"YulExpressionStatement","src":"40554:36:1"},{"nativeSrc":"40599:27:1","nodeType":"YulAssignment","src":"40599:27:1","value":{"arguments":[{"name":"headStart","nativeSrc":"40611:9:1","nodeType":"YulIdentifier","src":"40611:9:1"},{"kind":"number","nativeSrc":"40622:3:1","nodeType":"YulLiteral","src":"40622:3:1","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"40607:3:1","nodeType":"YulIdentifier","src":"40607:3:1"},"nativeSrc":"40607:19:1","nodeType":"YulFunctionCall","src":"40607:19:1"},"variableNames":[{"name":"tail","nativeSrc":"40599:4:1","nodeType":"YulIdentifier","src":"40599:4:1"}]}]},"name":"abi_encode_tuple_t_stringliteral_565f1a77334fc4792800921178c71e4521acffab18ff9e7885b49377ee80ab4c__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"40230:402:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"40381:9:1","nodeType":"YulTypedName","src":"40381:9:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"40395:4:1","nodeType":"YulTypedName","src":"40395:4:1","type":""}],"src":"40230:402:1"},{"body":{"nativeSrc":"40774:150:1","nodeType":"YulBlock","src":"40774:150:1","statements":[{"nativeSrc":"40784:27:1","nodeType":"YulVariableDeclaration","src":"40784:27:1","value":{"arguments":[{"name":"value0","nativeSrc":"40804:6:1","nodeType":"YulIdentifier","src":"40804:6:1"}],"functionName":{"name":"mload","nativeSrc":"40798:5:1","nodeType":"YulIdentifier","src":"40798:5:1"},"nativeSrc":"40798:13:1","nodeType":"YulFunctionCall","src":"40798:13:1"},"variables":[{"name":"length","nativeSrc":"40788:6:1","nodeType":"YulTypedName","src":"40788:6:1","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"40859:6:1","nodeType":"YulIdentifier","src":"40859:6:1"},{"kind":"number","nativeSrc":"40867:4:1","nodeType":"YulLiteral","src":"40867:4:1","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"40855:3:1","nodeType":"YulIdentifier","src":"40855:3:1"},"nativeSrc":"40855:17:1","nodeType":"YulFunctionCall","src":"40855:17:1"},{"name":"pos","nativeSrc":"40874:3:1","nodeType":"YulIdentifier","src":"40874:3:1"},{"name":"length","nativeSrc":"40879:6:1","nodeType":"YulIdentifier","src":"40879:6:1"}],"functionName":{"name":"copy_memory_to_memory_with_cleanup","nativeSrc":"40820:34:1","nodeType":"YulIdentifier","src":"40820:34:1"},"nativeSrc":"40820:66:1","nodeType":"YulFunctionCall","src":"40820:66:1"},"nativeSrc":"40820:66:1","nodeType":"YulExpressionStatement","src":"40820:66:1"},{"nativeSrc":"40895:23:1","nodeType":"YulAssignment","src":"40895:23:1","value":{"arguments":[{"name":"pos","nativeSrc":"40906:3:1","nodeType":"YulIdentifier","src":"40906:3:1"},{"name":"length","nativeSrc":"40911:6:1","nodeType":"YulIdentifier","src":"40911:6:1"}],"functionName":{"name":"add","nativeSrc":"40902:3:1","nodeType":"YulIdentifier","src":"40902:3:1"},"nativeSrc":"40902:16:1","nodeType":"YulFunctionCall","src":"40902:16:1"},"variableNames":[{"name":"end","nativeSrc":"40895:3:1","nodeType":"YulIdentifier","src":"40895:3:1"}]}]},"name":"abi_encode_tuple_packed_t_bytes_memory_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed","nativeSrc":"40637:287:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nativeSrc":"40750:3:1","nodeType":"YulTypedName","src":"40750:3:1","type":""},{"name":"value0","nativeSrc":"40755:6:1","nodeType":"YulTypedName","src":"40755:6:1","type":""}],"returnVariables":[{"name":"end","nativeSrc":"40766:3:1","nodeType":"YulTypedName","src":"40766:3:1","type":""}],"src":"40637:287:1"},{"body":{"nativeSrc":"41103:179:1","nodeType":"YulBlock","src":"41103:179:1","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"41120:9:1","nodeType":"YulIdentifier","src":"41120:9:1"},{"kind":"number","nativeSrc":"41131:2:1","nodeType":"YulLiteral","src":"41131:2:1","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"41113:6:1","nodeType":"YulIdentifier","src":"41113:6:1"},"nativeSrc":"41113:21:1","nodeType":"YulFunctionCall","src":"41113:21:1"},"nativeSrc":"41113:21:1","nodeType":"YulExpressionStatement","src":"41113:21:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"41154:9:1","nodeType":"YulIdentifier","src":"41154:9:1"},{"kind":"number","nativeSrc":"41165:2:1","nodeType":"YulLiteral","src":"41165:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"41150:3:1","nodeType":"YulIdentifier","src":"41150:3:1"},"nativeSrc":"41150:18:1","nodeType":"YulFunctionCall","src":"41150:18:1"},{"kind":"number","nativeSrc":"41170:2:1","nodeType":"YulLiteral","src":"41170:2:1","type":"","value":"29"}],"functionName":{"name":"mstore","nativeSrc":"41143:6:1","nodeType":"YulIdentifier","src":"41143:6:1"},"nativeSrc":"41143:30:1","nodeType":"YulFunctionCall","src":"41143:30:1"},"nativeSrc":"41143:30:1","nodeType":"YulExpressionStatement","src":"41143:30:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"41193:9:1","nodeType":"YulIdentifier","src":"41193:9:1"},{"kind":"number","nativeSrc":"41204:2:1","nodeType":"YulLiteral","src":"41204:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"41189:3:1","nodeType":"YulIdentifier","src":"41189:3:1"},"nativeSrc":"41189:18:1","nodeType":"YulFunctionCall","src":"41189:18:1"},{"hexValue":"416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374","kind":"string","nativeSrc":"41209:31:1","nodeType":"YulLiteral","src":"41209:31:1","type":"","value":"Address: call to non-contract"}],"functionName":{"name":"mstore","nativeSrc":"41182:6:1","nodeType":"YulIdentifier","src":"41182:6:1"},"nativeSrc":"41182:59:1","nodeType":"YulFunctionCall","src":"41182:59:1"},"nativeSrc":"41182:59:1","nodeType":"YulExpressionStatement","src":"41182:59:1"},{"nativeSrc":"41250:26:1","nodeType":"YulAssignment","src":"41250:26:1","value":{"arguments":[{"name":"headStart","nativeSrc":"41262:9:1","nodeType":"YulIdentifier","src":"41262:9:1"},{"kind":"number","nativeSrc":"41273:2:1","nodeType":"YulLiteral","src":"41273:2:1","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"41258:3:1","nodeType":"YulIdentifier","src":"41258:3:1"},"nativeSrc":"41258:18:1","nodeType":"YulFunctionCall","src":"41258:18:1"},"variableNames":[{"name":"tail","nativeSrc":"41250:4:1","nodeType":"YulIdentifier","src":"41250:4:1"}]}]},"name":"abi_encode_tuple_t_stringliteral_cc2e4e38850b7c0a3e942cfed89b71c77302df25bcb2ec297a0c4ff9ff6b90ad__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"40929:353:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"41080:9:1","nodeType":"YulTypedName","src":"41080:9:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"41094:4:1","nodeType":"YulTypedName","src":"41094:4:1","type":""}],"src":"40929:353:1"}]},"contents":"{\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    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        let value_1 := 0\n        value_1 := calldataload(add(headStart, 32))\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 copy_memory_to_memory_with_cleanup(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        mstore(add(dst, length), 0)\n    }\n    function abi_encode_string(value, pos) -> end\n    {\n        let length := mload(value)\n        mstore(pos, length)\n        copy_memory_to_memory_with_cleanup(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__to_t_string_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        mstore(headStart, 32)\n        tail := abi_encode_string(value0, add(headStart, 32))\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_encode_tuple_t_uint40_t_uint216__to_t_uint40_t_uint216__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(value0, 0xffffffffff))\n        mstore(add(headStart, 32), and(value1, sub(shl(216, 1), 1)))\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_decode_tuple_t_uint256(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := 0\n        value := calldataload(headStart)\n        value0 := value\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, sub(shl(160, 1), 1)))\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        let value_2 := 0\n        value_2 := calldataload(add(headStart, 64))\n        value2 := value_2\n    }\n    function abi_encode_tuple_t_contract$_IGhoVariableDebtTokenTransferHook_$162__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_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_contract$_IERC20_$77__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_uint8__to_t_uint8__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xff))\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        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$_IGhoVariableDebtTokenTransferHook_$162(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_encode_tuple_t_uint216__to_t_uint216__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, sub(shl(216, 1), 1)))\n    }\n    function abi_encode_tuple_t_uint128_t_uint128__to_t_uint128_t_uint128__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffff))\n        mstore(add(headStart, 32), and(value1, 0xffffffffffffffffffffffffffffffff))\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_decode_enum_DelegationType(offset) -> value\n    {\n        value := calldataload(offset)\n        if iszero(lt(value, 2)) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_addresst_enum$_DelegationType_$1088(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_enum_DelegationType(add(headStart, 32))\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_addresst_uint256t_uint256t_uint8t_bytes32t_bytes32(headStart, dataEnd) -> value0, value1, value2, value3, value4, value5\n    {\n        if slt(sub(dataEnd, headStart), 192) { revert(0, 0) }\n        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        let value_1 := 0\n        value_1 := calldataload(add(headStart, 32))\n        value1 := value_1\n        let value_2 := 0\n        value_2 := calldataload(add(headStart, 64))\n        value2 := value_2\n        value3 := abi_decode_uint8(add(headStart, 96))\n        let value_3 := 0\n        value_3 := calldataload(add(headStart, 128))\n        value4 := value_3\n        let value_4 := 0\n        value_4 := calldataload(add(headStart, 160))\n        value5 := value_4\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_string(value0, add(headStart, 32))\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_struct$_ExchangeRateSnapshot_$425_memory_ptr__to_t_struct$_ExchangeRateSnapshot_$425_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(mload(value0), 0xffffffffff))\n        mstore(add(headStart, 0x20), and(mload(add(value0, 0x20)), sub(shl(216, 1), 1)))\n    }\n    function abi_decode_tuple_t_addresst_addresst_uint256t_uint256(headStart, dataEnd) -> value0, value1, value2, value3\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        let value_2 := 0\n        value_2 := calldataload(add(headStart, 64))\n        value2 := value_2\n        let value_3 := 0\n        value_3 := calldataload(add(headStart, 96))\n        value3 := value_3\n    }\n    function abi_decode_tuple_t_addresst_addresst_addresst_uint256t_uint256(headStart, dataEnd) -> value0, value1, value2, value3, value4\n    {\n        if slt(sub(dataEnd, headStart), 160) { 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 value_2 := calldataload(add(headStart, 64))\n        validator_revert_address(value_2)\n        value2 := value_2\n        let value_3 := 0\n        value_3 := calldataload(add(headStart, 96))\n        value3 := value_3\n        let value_4 := 0\n        value_4 := calldataload(add(headStart, 128))\n        value4 := value_4\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        let value := 0\n        value := calldataload(headStart)\n        value0 := value\n        let value_1 := calldataload(add(headStart, 32))\n        validator_revert_address(value_1)\n        value1 := value_1\n    }\n    function panic_error_0x41()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x41)\n        revert(0, 0x24)\n    }\n    function allocate_memory_4847() -> memPtr\n    {\n        memPtr := mload(64)\n        let newFreePtr := add(memPtr, 0x60)\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), not(31)))\n        if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n        mstore(64, newFreePtr)\n    }\n    function abi_decode_tuple_t_array$_t_struct$_AssetConfigInput_$129_memory_ptr_$dyn_memory_ptr(headStart, dataEnd) -> value0\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 _1 := add(headStart, offset)\n        if iszero(slt(add(_1, 0x1f), dataEnd)) { revert(0, 0) }\n        let length := calldataload(_1)\n        if gt(length, 0xffffffffffffffff) { panic_error_0x41() }\n        let dst := allocate_memory(add(shl(5, length), 32))\n        let array := dst\n        mstore(dst, length)\n        dst := add(dst, 32)\n        let srcEnd := add(add(_1, mul(length, 0x60)), 32)\n        if gt(srcEnd, dataEnd) { revert(0, 0) }\n        let src := add(_1, 32)\n        for { } lt(src, srcEnd) { src := add(src, 0x60) }\n        {\n            if slt(sub(dataEnd, src), 0x60) { revert(0, 0) }\n            let value := allocate_memory_4847()\n            let value_1 := calldataload(src)\n            if iszero(eq(value_1, and(value_1, 0xffffffffffffffffffffffffffffffff))) { revert(0, 0) }\n            mstore(value, value_1)\n            let value_2 := 0\n            value_2 := calldataload(add(src, 32))\n            mstore(add(value, 32), value_2)\n            let value_3 := calldataload(add(src, 64))\n            validator_revert_address(value_3)\n            mstore(add(value, 64), value_3)\n            mstore(dst, value)\n            dst := add(dst, 32)\n        }\n        value0 := array\n    }\n    function abi_decode_tuple_t_addresst_uint256t_enum$_DelegationType_$1088(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 := 0\n        value_1 := calldataload(add(headStart, 32))\n        value1 := value_1\n        value2 := abi_decode_enum_DelegationType(add(headStart, 64))\n    }\n    function abi_encode_tuple_t_contract$_ITransferHook_$1885__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_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        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 value_2 := 0\n        value_2 := calldataload(add(headStart, 64))\n        value2 := value_2\n        let value_3 := 0\n        value_3 := calldataload(add(headStart, 96))\n        value3 := value_3\n        value4 := abi_decode_uint8(add(headStart, 128))\n        let value_4 := 0\n        value_4 := calldataload(add(headStart, 160))\n        value5 := value_4\n        let value_5 := 0\n        value_5 := calldataload(add(headStart, 192))\n        value6 := value_5\n    }\n    function abi_decode_tuple_t_addresst_uint256t_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 := 0\n        value_1 := calldataload(add(headStart, 32))\n        value1 := value_1\n        let value_2 := 0\n        value_2 := calldataload(add(headStart, 64))\n        value2 := value_2\n    }\n    function abi_encode_tuple_t_uint128_t_uint128_t_uint256__to_t_uint128_t_uint128_t_uint256__fromStack_reversed(headStart, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 96)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffff))\n        mstore(add(headStart, 32), and(value1, 0xffffffffffffffffffffffffffffffff))\n        mstore(add(headStart, 64), value2)\n    }\n    function abi_decode_tuple_t_addresst_enum$_DelegationType_$1088t_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        let value := calldataload(headStart)\n        validator_revert_address(value)\n        value0 := value\n        value1 := abi_decode_enum_DelegationType(add(headStart, 32))\n        let value_1 := 0\n        value_1 := calldataload(add(headStart, 64))\n        value2 := value_1\n        let value_2 := 0\n        value_2 := calldataload(add(headStart, 96))\n        value3 := value_2\n        value4 := abi_decode_uint8(add(headStart, 128))\n        let value_3 := 0\n        value_3 := calldataload(add(headStart, 160))\n        value5 := value_3\n        let value_4 := 0\n        value_4 := calldataload(add(headStart, 192))\n        value6 := value_4\n    }\n    function abi_encode_tuple_t_stringliteral_6fb33ededa50927431023a1ca5722fb9abe7b87aeeb47e46d1f13b646b0719ba__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), \"CALLER_NOT_SLASHING_ADMIN\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_f77daace20469de8df4d27824d8f88ae642c918133f638a98e78576c5af835a5__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), \"PREVIOUS_SLASHING_NOT_SETTLED\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_ad8e292265788ac5c19f708ed96612bf3229f5fbdf9e1b9b3466c3f5a1b60243__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 11)\n        mstore(add(headStart, 64), \"ZERO_AMOUNT\")\n        tail := add(headStart, 96)\n    }\n    function panic_error_0x11()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x11)\n        revert(0, 0x24)\n    }\n    function checked_sub_t_uint256(x, y) -> diff\n    {\n        diff := sub(x, y)\n        if gt(diff, x) { panic_error_0x11() }\n    }\n    function abi_encode_tuple_t_stringliteral_e42e312e91b2c7decf2c17d44adbe92f5dbd21dd2fe6c255c257f03ae436b4f4__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), \"REMAINING_LT_MINIMUM\")\n        tail := add(headStart, 96)\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 abi_encode_tuple_t_stringliteral_2783cc94d2815145fca23f61c101ffc8ff8c6a01d5b51321a6791062a0684adf__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), \"CALLER_NOT_CLAIM_HELPER\")\n        tail := add(headStart, 96)\n    }\n    function checked_add_t_uint256(x, y) -> sum\n    {\n        sum := add(x, y)\n        if gt(x, sum) { panic_error_0x11() }\n    }\n    function abi_encode_tuple_t_stringliteral_621f50d6436d0a4dd01bdd0a290cbd90a33871f85d2f75ec24041520fb128387__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 17)\n        mstore(add(headStart, 64), \"AMOUNT_LT_MINIMUM\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_5407ed0094c102003a23cbee6bcb44020e6bb1be4fa76486e3d76e28e8ab8c65__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 17)\n        mstore(add(headStart, 64), \"SHARES_LT_MINIMUM\")\n        tail := add(headStart, 96)\n    }\n    function checked_mul_t_uint256(x, y) -> product\n    {\n        product := mul(x, y)\n        if iszero(or(iszero(x), eq(y, div(product, x)))) { panic_error_0x11() }\n    }\n    function panic_error_0x12()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x12)\n        revert(0, 0x24)\n    }\n    function checked_div_t_uint256(x, y) -> r\n    {\n        if iszero(y)\n        {\n            mstore(0, shl(224, 0x4e487b71))\n            mstore(4, 0x12)\n            revert(0, 0x24)\n        }\n        r := div(x, y)\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        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 32), and(value1, sub(shl(160, 1), 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_stringliteral_d49ebb848086492947fc93c9ef60d839aa895187a88d01c0575e0469055263d2__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), \"CALLER_NOT_COOLDOWN_ADMIN\")\n        tail := add(headStart, 96)\n    }\n    function panic_error_0x32()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x32)\n        revert(0, 0x24)\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_9fbba6c4dcac9134893b633b9564f36435b3f927c1d5fa152c5c14b20cecb1a4__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), \"Contract instance has already be\")\n        mstore(add(headStart, 96), \"en initialized\")\n        tail := add(headStart, 128)\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, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 32), value1)\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_encode_tuple_t_stringliteral_5e135040f8dc35152fcfe1ddf129384a9ce13d1776c5e6dc86a62f244bfcfc0b__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), \"CALLER_NOT_ROLE_ADMIN\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_a28d34ff463a8cc689c6ec4b8c995983f85d0a40987242bc4cc3cec37303c18e__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), \"ONLY_EMISSION_MANAGER\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_bytes32_t_address_t_uint256_t_uint256__to_t_bytes32_t_address_t_uint256_t_uint256__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, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 64), value2)\n        mstore(add(headStart, 96), value3)\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, shl(240, 6401))\n        mstore(add(pos, 2), value0)\n        mstore(add(pos, 34), value1)\n        end := add(pos, 66)\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_stringliteral_5e2e9eaa2d734966dea0900deacd15b20129fbce05255d633a3ce5ebca181b88__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 17)\n        mstore(add(headStart, 64), \"INVALID_SIGNATURE\")\n        tail := add(headStart, 96)\n    }\n    function increment_t_uint256(value) -> ret\n    {\n        if eq(value, not(0)) { panic_error_0x11() }\n        ret := add(value, 1)\n    }\n    function abi_encode_tuple_t_stringliteral_a19e25beaf00f467d35fbe7e167b5794fca796dbfd417dd2accc8f5303300b99__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 13)\n        mstore(add(headStart, 64), \"INVALID_NONCE\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_9fe3e5cf49f72bf8a6a8455c3e990f8479f5dfa09ac808886f330a39b0029c2d__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), \"INVALID_EXPIRATION\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_a30e2b4f22d955e30086ae3aef0adfd87eec9d0d3f055d6aa9af61f522dda886__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 13)\n        mstore(add(headStart, 64), \"INVALID_OWNER\")\n        tail := add(headStart, 96)\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        mstore(add(headStart, 32), and(value1, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 64), and(value2, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 96), value3)\n        mstore(add(headStart, 128), value4)\n        mstore(add(headStart, 160), value5)\n    }\n    function panic_error_0x21()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x21)\n        revert(0, 0x24)\n    }\n    function abi_encode_tuple_t_bytes32_t_address_t_uint256_t_uint256_t_uint256__to_t_bytes32_t_address_t_uint256_t_uint256_t_uint256__fromStack_reversed(headStart, value4, value3, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 160)\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), and(value1, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 64), value2)\n        mstore(add(headStart, 96), value3)\n        mstore(add(headStart, 128), value4)\n    }\n    function abi_encode_tuple_t_stringliteral_e80295a9867834b2dfe1d7606b122307d35ebaa940c20b448f18824a9256df9d__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), \"CALLER_NOT_PENDING_ROLE_ADMIN\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_6b96bc99e56604df6600e4ce66f7e91bdc3417f453200fce123d801c60b50ff8__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), \"MATH_MULTIPLICATION_OVERFLOW\")\n        tail := add(headStart, 96)\n    }\n    function increment_t_uint32(value) -> ret\n    {\n        let value_1 := and(value, 0xffffffff)\n        if eq(value_1, 0xffffffff) { panic_error_0x11() }\n        ret := add(value_1, 1)\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_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_33d2eb294587ef7b32eb48e48695ebfec45a9c8922ec7d1c444cfad1fb208e8d__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 19)\n        mstore(add(headStart, 64), \"INVALID_ZERO_AMOUNT\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_66cceaab4b8a6f427cff5482a526862a61c3ef92948b70aceb4a8f720a8f0ead__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), \"INSUFFICIENT_COOLDOWN\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_c6959acf2335419e4a75195e2fb1c276a96baa5b7fab6be19b14b9420a4bd962__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), \"UNSTAKE_WINDOW_FINISHED\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_fa2c368672f35856ca139c6dfba7cf36845bc24e7a2795ed29d2eba4e8313209__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), \"INVALID_ZERO_MAX_REDEEMABLE\")\n        tail := add(headStart, 96)\n    }\n    function checked_sub_t_uint216(x, y) -> diff\n    {\n        diff := sub(and(x, sub(shl(216, 1), 1)), and(y, sub(shl(216, 1), 1)))\n        if gt(diff, sub(shl(216, 1), 1)) { panic_error_0x11() }\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 abi_encode_tuple_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe__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), \"ERC20: insufficient allowance\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_e5f9ee9777b2bbd505a43328a4cc6b61e9df46610a556d5402b9bc072df973d7__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), \"INVALID_BALANCE_ON_COOLDOWN\")\n        tail := add(headStart, 96)\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        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 32), and(value1, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 64), value2)\n    }\n    function abi_encode_tuple_t_stringliteral_f448a4555410856eaebeffbdb1aef2dfca19f9de0904eb1029e0bbcd0330450f__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 17)\n        mstore(add(headStart, 64), \"INVALID_DELEGATEE\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_enum_DelegationType(value, pos)\n    {\n        if iszero(lt(value, 2))\n        {\n            mstore(0, shl(224, 0x4e487b71))\n            mstore(4, 0x21)\n            revert(0, 0x24)\n        }\n        mstore(pos, value)\n    }\n    function abi_encode_tuple_t_enum$_DelegationType_$1088__to_t_uint8__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        abi_encode_enum_DelegationType(value0, headStart)\n    }\n    function abi_encode_tuple_t_stringliteral_ca68b1751ae29c5f09bd0021f927ba7e466485e5196910ff5ec2e20b861ddf43__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), \"SLASHING_ONGOING\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_ce93b50079b62f2df0cdb8205f7bed11a1c18f1ff774f2e6b4f84f4f62875ed5__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), \"INVALID_SLASHING_PERCENTAGE\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_f4a42223776f3ea267c2495ef3dc746d28101276fa8315b76ae8b45133d59a50__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), \"REWARD_TOKEN_IS_NOT_STAKED_TOKEN\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_uint128__to_t_uint256__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_t_stringliteral_8966adc0aad8dc91b207c69c3eb4937e498af8cc706cfe7edd55f3a6ea53488d__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), \"16 bits\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_b23559c58b98a5d3ed7016699c7171ac8defa5a1d180f9a9ffa60468a5701d37__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), \"SafeCast: value doesn't fit in 4\")\n        mstore(add(headStart, 96), \"0 bits\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_2f1333997521c1f7b64fb9baad89e36b71dfc7265a9804df600ce8ae5c1f6f36__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), \"ZERO_EXCHANGE_RATE\")\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 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_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_86c53d89b1944d561ecfa42e859033241d1df6ea8d42a57ae02f79d45de4aa75__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), \"84 bits\")\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_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_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_uint256_t_enum$_DelegationType_$1088__to_t_uint256_t_uint8__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, value0)\n        abi_encode_enum_DelegationType(value1, add(headStart, 32))\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 checked_exp_helper(_base, exponent, max) -> power, base\n    {\n        power := 1\n        base := _base\n        for { } gt(exponent, 1) { }\n        {\n            if gt(base, div(max, base)) { panic_error_0x11() }\n            if and(exponent, 1) { power := mul(power, base) }\n            base := mul(base, base)\n            exponent := shr(1, exponent)\n        }\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            let _1 := 0\n            _1 := 0\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            let _2 := 0\n            _2 := 0\n            leave\n        }\n        let power_1, base_1 := checked_exp_helper(base, exponent, not(0))\n        if gt(power_1, div(not(0), base_1)) { panic_error_0x11() }\n        power := mul(power_1, base_1)\n    }\n    function checked_exp_t_uint256_t_uint256(base, exponent) -> power\n    {\n        power := checked_exp_unsigned(base, exponent)\n    }\n    function abi_encode_tuple_t_stringliteral_b2af192d647f8b8a9f94a546a11b40d3536722e4b74d77e3330eb171e0c93079__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), \"ADMIN_CANNOT_BE_INITIALIZED\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_dd61c748dcfe71393203093270c457f6ceb8834cce0160376620e7b2f811559c__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), \"INVALID_BLOCK_NUMBER\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_address_t_address_t_uint256_t_uint256_t_uint256__to_t_address_t_address_t_uint256_t_uint256_t_uint256__fromStack_reversed(headStart, value4, value3, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 160)\n        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 32), and(value1, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 64), value2)\n        mstore(add(headStart, 96), value3)\n        mstore(add(headStart, 128), value4)\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_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_with_cleanup(add(value0, 0x20), pos, length)\n        end := add(pos, length)\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}","id":1,"language":"Yul","name":"#utility.yul"}],"immutableReferences":{"2471":[{"length":32,"start":2545},{"length":32,"start":15956},{"length":32,"start":16016},{"length":32,"start":16061}],"2473":[{"length":32,"start":3050},{"length":32,"start":6545}],"4659":[{"length":32,"start":1578},{"length":32,"start":3811},{"length":32,"start":4698},{"length":32,"start":5137},{"length":32,"start":6074},{"length":32,"start":10046},{"length":32,"start":11861},{"length":32,"start":12446}],"4662":[{"length":32,"start":2669},{"length":32,"start":10335},{"length":32,"start":12488}],"4665":[{"length":32,"start":1700},{"length":32,"start":9500}],"4668":[{"length":32,"start":2584},{"length":32,"start":10369}],"5457":[{"length":32,"start":2102},{"length":32,"start":3642},{"length":32,"start":4439},{"length":32,"start":4552}]},"linkReferences":{},"object":"608060405234801561001057600080fd5b50600436106104965760003560e01c80638c9a281d11610262578063aff05aa911610151578063dbc0ed8a116100ce578063eab5231811610092578063eab5231814610c65578063f036bc6814610c78578063f11b818814610c8c578063f34d96da14610cee578063f713d8a814610cf6578063fde9eb6914610d0957600080fd5b8063dbc0ed8a14610c1f578063dc937e1c14610c27578063dd62ed3e14610c3a578063dde43cba14610c4d578063e6aa216c14610c5457600080fd5b8063c2ffbb9111610115578063c2ffbb9114610bac578063c3863ada14610bbf578063c3cda52014610bd2578063cbcbb50714610be5578063d505accf14610c0c57600080fd5b8063aff05aa914610b4b578063b2a5dbfa14610b53578063b2f4201d14610b66578063b9844d8d14610b79578063c18f539a14610b9957600080fd5b80639a99b4f0116101df578063a9059cbb116101a3578063a9059cbb14610ae3578063aa9fbe0214610af6578063aaf5eb6814610b1d578063ab406fe614610b25578063adc9772e14610b3857600080fd5b80639a99b4f014610a8f5780639c9b515414610aa25780639e3ffce014610ab5578063a457c2d714610abd578063a6b63eb814610ad057600080fd5b8063946776cd11610226578063946776cd14610a13578063955e18af14610a3a57806395d89b4114610a4d578063981b24d014610a5557806399248ea714610a6857600080fd5b80638c9a281d146109325780638dbefee21461093a5780638e9b2ca41461094d5780638ef98e0e1461095c578063919cd40f146109ec57600080fd5b806345755dd6116103895780636f50458d1161030657806374011f56116102ca57806374011f56146108a457806378160376146108b7578063787a08a6146108d75780637b5b1157146108df5780637bb73c97146108f25780637e90d7ef1461091257600080fd5b80636f50458d1461085857806370a082311461086b578063727a5d571461087e57806372b49d631461082957806373d6a8891461089157600080fd5b80635b3cc0cf1161034d5780635b3cc0cf146107925780635c19a95c146107f157806360ba192b14610804578063616e0bf9146108295780636198e1351461083157600080fd5b806345755dd6146107095780634575e69b1461071c5780634998fffd146107455780634cdad5061461075857806358146d171461076b57600080fd5b806323b872dd116104175780633373ee4c116103db5780633373ee4c14610661578063359c4a961461069f5780633644e515146106c657806339509351146106cf57806341cbf54a146106e257600080fd5b806323b872dd146105d8578063250201db146105eb57806330adf81f146105fe578063312f6b8314610625578063313ce5671461064c57600080fd5b8063112d037c1161045e578063112d037c14610582578063174ed5421461059757806318160ddd146105aa5780631e9a6950146105b257806320fb80b5146105c557600080fd5b806302fb4d851461049b57806306fdde03146104c1578063091030c3146104d6578063095ea7b314610534578063111fd88b14610557575b600080fd5b6104ae6104a9366004614902565b610d1c565b6040519081526020015b60405180910390f35b6104c9610f5a565b6040516104b8919061497e565b61050f6104e4366004614991565b603e6020526000908152604090205464ffffffffff811690600160281b90046001600160d81b031682565b6040805164ffffffffff90931683526001600160d81b039091166020830152016104b8565b610547610542366004614902565b610fec565b60405190151581526020016104b8565b61056a6105653660046149ae565b611004565b6040516001600160a01b0390911681526020016104b8565b6105956105903660046149c7565b61101f565b005b60535461056a906001600160a01b031681565b6002546104ae565b6105956105c0366004614902565b611069565b6104ae6105d33660046149c7565b611078565b6105476105e63660046149c7565b6110c9565b6105956105f9366004614991565b6110ed565b6104ae7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c981565b61056a7f000000000000000000000000000000000000000000000000000000000000000081565b60125b60405160ff90911681526020016104b8565b6104ae61066f366004614a08565b6001600160a01b038082166000908152603c60209081526040808320938616835260029093019052205492915050565b6104ae7f000000000000000000000000000000000000000000000000000000000000000081565b6104ae60435481565b6105476106dd366004614902565b611133565b6104ae7f9a9a49b990ba9bb39f8048c490a40ab25c18f55d208d5fbcf958261a9b48716d81565b6105956107173660046149ae565b611155565b61056a61072a3660046149ae565b6000908152604660205260409020546001600160a01b031690565b610595610753366004614991565b6112ba565b6104ae6107663660046149ae565b611324565b61077a670de0b6b3a764000081565b6040516001600160d81b0390911681526020016104b8565b6107d16107a0366004614902565b60066020908152600092835260408084209091529082529020546001600160801b0380821691600160801b90041682565b604080516001600160801b039384168152929091166020830152016104b8565b6105956107ff366004614991565b61134f565b605154600160e01b900463ffffffff1660405163ffffffff90911681526020016104b8565b604f546104ae565b6104ae7f000000000000000000000000000000000000000000000000000000000000000081565b61056a610866366004614a55565b611367565b6104ae610879366004614991565b611389565b6104ae61088c3660046149ae565b6113a4565b61059561089f366004614a9b565b6113c7565b6105956108b23660046149ae565b611480565b6104c9604051806040016040528060018152602001603160f81b81525081565b6105956114c3565b6105956108ed3660046149ae565b6114ce565b6104ae610900366004614991565b60076020526000908152604090205481565b6104ae610920366004614991565b603d6020526000908152604090205481565b6104ae600081565b6104ae610948366004614991565b611541565b6104ae670de0b6b3a764000081565b6109c161096a366004614af5565b60408051808201909152600080825260208201525063ffffffff1660009081526052602090815260409182902082518084019093525464ffffffffff81168352600160281b90046001600160d81b03169082015290565b60408051825164ffffffffff1681526020928301516001600160d81b031692810192909252016104b8565b6104ae7f000000000000000000000000000000000000000000000000000000000000000081565b61056a7f000000000000000000000000000000000000000000000000000000000000000081565b6104ae610a48366004614902565b61161c565b6104c9611629565b6104ae610a633660046149ae565b611638565b61056a7f000000000000000000000000000000000000000000000000000000000000000081565b610595610a9d366004614902565b611643565b610595610ab0366004614b1b565b61164e565b6104ae600181565b610547610acb366004614902565b6116a5565b610595610ade366004614b61565b611720565b610547610af1366004614902565b611838565b6104ae7f10d8d059343739efce7dad10d09f0806da52b252b3e6a7951920d2d6ec4102e581565b61064f601281565b610595610b33366004614bbc565b611846565b610595610b46366004614902565b611909565b610595611914565b610595610b61366004614c51565b611986565b6104ae610b74366004614a55565b611a37565b6104ae610b87366004614991565b60446020526000908152604090205481565b6104ae610ba73660046149c7565b611a5f565b6104ae610bba366004614d47565b611aa6565b60085461056a906001600160a01b031681565b610595610be0366004614a9b565b611acf565b61056a7f000000000000000000000000000000000000000000000000000000000000000081565b610595610c1a366004614d85565b611c94565b6104ae600281565b610595610c35366004614a55565b611e5c565b6104ae610c48366004614a08565b611e67565b60016104ae565b6051546001600160d81b031661077a565b610595610c73366004614df4565b611e92565b60515461054790600160d81b900460ff1681565b610cc8610c9a366004614991565b603c60205260009081526040902080546001909101546001600160801b0380831692600160801b9004169083565b604080516001600160801b039485168152939092166020840152908201526060016104b8565b6050546104ae565b610595610d04366004614e29565b611ea9565b610595610d173660046149ae565b61207d565b6000610d286000611004565b6001600160a01b0316336001600160a01b031614610d615760405162461bcd60e51b8152600401610d5890614e5d565b60405180910390fd5b605154600160d81b900460ff1615610dbb5760405162461bcd60e51b815260206004820152601d60248201527f50524556494f55535f534c415348494e475f4e4f545f534554544c45440000006044820152606401610d58565b60008211610df95760405162461bcd60e51b815260206004820152600b60248201526a16915493d7d05353d5539560aa1b6044820152606401610d58565b6000610e0460025490565b90506000610e1182611324565b90506000610e2a6050548361214e90919063ffffffff16565b905080851115610e38578094505b7f0000000000000000000000000000000000000000000000000000000000000000610e638684614eaa565b1015610ea85760405162461bcd60e51b815260206004820152601460248201527352454d41494e494e475f4c545f4d494e494d554d60601b6044820152606401610d58565b6051805460ff60d81b1916600160d81b179055610ed6610ed1610ecb8785614eaa565b856121da565b612218565b610f0a6001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001687876122bd565b856001600160a01b03167f4ed05e9673c26d2ed44f7ef6a7f2942df0ee3b5e1e17db4b99f9dcd261a339cd86604051610f4591815260200190565b60405180910390a28493505050505b92915050565b606060038054610f6990614ebd565b80601f0160208091040260200160405190810160405280929190818152602001828054610f9590614ebd565b8015610fe25780601f10610fb757610100808354040283529160200191610fe2565b820191906000526020600020905b815481529060010190602001808311610fc557829003601f168201915b5050505050905090565b600033610ffa818585612320565b5060019392505050565b6000908152604560205260409020546001600160a01b031690565b6110296002611004565b6001600160a01b0316336001600160a01b0316146110595760405162461bcd60e51b8152600401610d5890614ef7565b611064838383612444565b505050565b611074338383612444565b5050565b60006110846002611004565b6001600160a01b0316336001600160a01b0316146110b45760405162461bcd60e51b8152600401610d5890614ef7565b6110bf8484846127c5565b90505b9392505050565b6000336110d78582856128fd565b6110e2858585612971565b506001949350505050565b6110f76002611004565b6001600160a01b0316336001600160a01b0316146111275760405162461bcd60e51b8152600401610d5890614ef7565b61113081612aa2565b50565b600033610ffa8185856111468383611e67565b6111509190614f2e565b612320565b7f00000000000000000000000000000000000000000000000000000000000000008110156111b95760405162461bcd60e51b8152602060048201526011602482015270414d4f554e545f4c545f4d494e494d554d60781b6044820152606401610d58565b60006111c460025490565b90507f000000000000000000000000000000000000000000000000000000000000000081101561122a5760405162461bcd60e51b81526020600482015260116024820152705348415245535f4c545f4d494e494d554d60781b6044820152606401610d58565b600061123582611324565b905061124d610ed16112478584614f2e565b846121da565b6112826001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016333086612b85565b6040518381527f278e51d3323fbf18b9fb8df3f8b97e31b145bc1146c52e764cf4aa1bfc4ba17d9060200160405180910390a1505050565b73ee56e2b3d491590b5b31738cc34d5232f378a8d533146112da57600080fd5b605380546001600160a01b0319166001600160a01b0383169081179091556040517f62bbced765bccc9ed93d0bae1b2a8c86e13b4663f8bf27d5936d9d619194c8a990600090a250565b6051546000906001600160d81b031661134583670de0b6b3a7640000614f41565b610f549190614f58565b61135b33826000612bbd565b61113033826001612bbd565b60008061137383612cbe565b925050506113818482612cfd565b949350505050565b6001600160a01b031660009081526020819052604090205490565b605154600090670de0b6b3a764000090611345906001600160d81b031684614f41565b60405163d505accf60e01b81526001600160a01b038781166004830152306024830152604482018790526064820186905260ff8516608483015260a4820184905260c482018390527f0000000000000000000000000000000000000000000000000000000000000000169063d505accf9060e401600060405180830381600087803b15801561145557600080fd5b505af1158015611469573d6000803e3d6000fd5b50505050611478868787612d28565b505050505050565b61148a6000611004565b6001600160a01b0316336001600160a01b0316146114ba5760405162461bcd60e51b8152600401610d5890614e5d565b61113081612ed5565b6114cc33612aa2565b565b6114d86001611004565b6001600160a01b0316336001600160a01b0316146115385760405162461bcd60e51b815260206004820152601960248201527f43414c4c45525f4e4f545f434f4f4c444f574e5f41444d494e000000000000006044820152606401610d58565b61113081612f62565b604080516001808252818301909252600091829190816020015b611588604051806060016040528060006001600160a01b0316815260200160008152602001600081525090565b81526020019060019003908161155b5790505090506040518060600160405280306001600160a01b031681526020016115c085611389565b81526020016115ce60025490565b815250816000815181106115e4576115e4614f7a565b60200260200101819052506115f98382612f97565b6001600160a01b0384166000908152603d60205260409020546110c29190614f2e565b60006110c233848461309a565b606060048054610f6990614ebd565b6000610f5460025490565b6110643383836127c5565b6116586002611004565b6001600160a01b0316336001600160a01b0316146116885760405162461bcd60e51b8152600401610d5890614ef7565b6116938484846127c5565b5061169f848483612444565b50505050565b600033816116b38286611e67565b9050838110156117135760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610d58565b6110e28286868403612320565b600954600190811161178b5760405162461bcd60e51b815260206004820152602e60248201527f436f6e747261637420696e7374616e63652068617320616c726561647920626560448201526d195b881a5b9a5d1a585b1a5e995960921b6064820152608401610d58565b600981905561179d8686868686613185565b60405163095ea7b360e01b815230600482015260001960248201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063095ea7b3906044016020604051808303816000875af115801561180b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061182f9190614f90565b50505050505050565b600033610ffa818585612971565b60008281526045602052604090205482906001600160a01b031633146118a65760405162461bcd60e51b815260206004820152601560248201527421a0a62622a92fa727aa2fa927a622afa0a226a4a760591b6044820152606401610d58565b60008381526046602090815260409182902080546001600160a01b0319166001600160a01b03861690811790915591518581527fc3d1bf52795a20771ee6de3e59948fd83e10db956122d4709a3b86c512963855910160405180910390a2505050565b611074338383612d28565b61191e6000611004565b6001600160a01b0316336001600160a01b03161461194e5760405162461bcd60e51b8152600401610d5890614e5d565b6051805460ff60d81b191690556040517fcdee157e87ba915be681d4fa3f3d511afe7348eca06448a3accd6ac227fa40af90600090a1565b336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146119f65760405162461bcd60e51b815260206004820152601560248201527427a7262cafa2a6a4a9a9a4a7a72fa6a0a720a3a2a960591b6044820152606401610d58565b60005b8151811015611a2d57600254828281518110611a1757611a17614f7a565b60209081029190910181015101526001016119f9565b50611130816132a9565b6000806000611a4584612cbe565b5091509150611a568282874361340d565b95945050505050565b6000611a6b6002611004565b6001600160a01b0316336001600160a01b031614611a9b5760405162461bcd60e51b8152600401610d5890614ef7565b6110bf84848461309a565b6000806000611ab484612cbe565b5091509150611ac58282888861340d565b9695505050505050565b604080517f9a9a49b990ba9bb39f8048c490a40ab25c18f55d208d5fbcf958261a9b48716d60208201526001600160a01b03881691810191909152606081018690526080810185905260009060a001604051602081830303815290604052805190602001209050600060435482604051602001611b4d929190614fb2565b60408051601f198184030181528282528051602091820120600080855291840180845281905260ff89169284019290925260608301879052608083018690529092509060019060a0016020604051602081039080840390855afa158015611bb8573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116611beb5760405162461bcd60e51b8152600401610d5890614fcd565b6001600160a01b0381166000908152604460205260408120805491611c0f83614ff8565b919050558814611c515760405162461bcd60e51b815260206004820152600d60248201526c494e56414c49445f4e4f4e434560981b6044820152606401610d58565b86421115611c715760405162461bcd60e51b8152600401610d5890615011565b611c7d818a6000612bbd565b611c89818a6001612bbd565b505050505050505050565b6001600160a01b038716611cda5760405162461bcd60e51b815260206004820152600d60248201526c24a72b20a624a22fa7aba722a960991b6044820152606401610d58565b83421115611cfa5760405162461bcd60e51b8152600401610d5890615011565b6001600160a01b0387811660008181526044602090815260408083205460435482517f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98186015280840196909652958c166060860152608085018b905260a0850181905260c08086018b90528251808703909101815260e086019092528151919092012090939192611d9192919061010001614fb2565b60408051601f1981840301815282825280516020918201206000845290830180835281905260ff8816918301919091526060820186905260808201859052915060019060a0016020604051602081039080840390855afa158015611df9573d6000803e3d6000fd5b505050602060405103516001600160a01b0316896001600160a01b031614611e335760405162461bcd60e51b8152600401610d5890614fcd565b6001600160a01b0389166000908152604460205260409020600183019055611c89898989612320565b611074338383612bbd565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b611e9d3384846127c5565b50611064338483612444565b60007f10d8d059343739efce7dad10d09f0806da52b252b3e6a7951920d2d6ec4102e588886001811115611edf57611edf61503d565b6040805160208101949094526001600160a01b039092169183019190915260608201526080810187905260a0810186905260c001604051602081830303815290604052805190602001209050600060435482604051602001611f42929190614fb2565b60408051601f198184030181528282528051602091820120600080855291840180845281905260ff89169284019290925260608301879052608083018690529092509060019060a0016020604051602081039080840390855afa158015611fad573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116611fe05760405162461bcd60e51b8152600401610d5890614fcd565b6001600160a01b038116600090815260446020526040812080549161200483614ff8565b9190505588146120465760405162461bcd60e51b815260206004820152600d60248201526c494e56414c49445f4e4f4e434560981b6044820152606401610d58565b864211156120665760405162461bcd60e51b8152600401610d5890615011565b612071818b8b612bbd565b50505050505050505050565b60008181526046602052604090205481906001600160a01b031633146120e55760405162461bcd60e51b815260206004820152601d60248201527f43414c4c45525f4e4f545f50454e44494e475f524f4c455f41444d494e0000006044820152606401610d58565b60008281526045602090815260408083208054336001600160a01b0319918216811790925560468452938290208054909416909355518481527f83a9ddad961dcb7c6894c9585a16ff7792c2ec8281256a3cc7303ae830152dcf91015b60405180910390a25050565b600082158061215b575081155b1561216857506000610f54565b61217482600019614f58565b8311156121c35760405162461bcd60e51b815260206004820152601c60248201527f4d4154485f4d554c5449504c49434154494f4e5f4f564552464c4f57000000006044820152606401610d58565b6127106121d08385614f41565b6110c29190614f58565b60006110c2836001816121f5670de0b6b3a764000087614f41565b6121ff9190614f2e565b6122099190614eaa565b6122139190614f58565b613456565b604051806040016040528061222c436134c3565b64ffffffffff90811682526001600160d81b038085166020938401526051805463ffffffff600160e01b9182900481166000908152605287526040902087519790960151909316600160281b0295909316949094179092558254601c926122969290910416615053565b91906101000a81548163ffffffff021916908363ffffffff16021790555061113081613529565b6040516001600160a01b03831660248201526044810182905261106490849063a9059cbb60e01b906064015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b0319909316929092179091526135c5565b6001600160a01b0383166123825760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610d58565b6001600160a01b0382166123e35760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610d58565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b806000036124645760405162461bcd60e51b8152600401610d5890615078565b6001600160a01b0383166000908152603e602090815260409182902082518084019093525464ffffffffff81168352600160281b90046001600160d81b031690820152605154600160d81b900460ff166125a457604f5481516124ce919064ffffffffff16614f2e565b4210156125155760405162461bcd60e51b815260206004820152601560248201527424a729aaa32324a1a4a2a72a2fa1a7a7a62227aba760591b6044820152606401610d58565b604f5481517f00000000000000000000000000000000000000000000000000000000000000009161254c9164ffffffffff16614f2e565b6125569042614eaa565b11156125a45760405162461bcd60e51b815260206004820152601760248201527f554e5354414b455f57494e444f575f46494e49534845440000000000000000006044820152606401610d58565b60006125af85611389565b605154909150600090600160d81b900460ff166125d95782602001516001600160d81b03166125db565b815b90508060000361262d5760405162461bcd60e51b815260206004820152601b60248201527f494e56414c49445f5a45524f5f4d41585f52454445454d41424c4500000000006044820152606401610d58565b600081851161263c578461263e565b815b905061264c87846001613697565b50600061265882611324565b90506126648883613746565b845164ffffffffff1615612731578185602001516001600160d81b031661268b9190614eaa565b6000036126b0576001600160a01b0388166000908152603e6020526040812055612731565b6126b982613884565b6001600160a01b0389166000908152603e60205260409020546126f5916001600160b81b031690600160281b90046001600160d81b03166150a5565b6001600160a01b0389166000908152603e6020526040902080546001600160d81b0392909216600160281b0264ffffffffff9092169190911790555b6127656001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001688836122bd565b866001600160a01b0316886001600160a01b03167f3f693fff038bb8a046aa76d9516190ac7444f7d69cf952c4cbdc086fdef2d6fc83856040516127b3929190918252602082015260400190565b60405180910390a35050505050505050565b6000816000036127e75760405162461bcd60e51b8152600401610d5890615078565b60006127fd856127f687611389565b6000613697565b9050600081841161280e5783612810565b815b9050806000036128325760405162461bcd60e51b8152600401610d5890615078565b61283c8183614eaa565b6001600160a01b038088166000908152603d60205260409020919091556128a7907f0000000000000000000000000000000000000000000000000000000000000000167f00000000000000000000000000000000000000000000000000000000000000008784612b85565b846001600160a01b0316866001600160a01b03167f9310ccfcb8de723f578a9e4282ea9f521f05ae40dc08f3068dfad528a65ee3c7836040516128ec91815260200190565b60405180910390a395945050505050565b60006129098484611e67565b9050600019811461169f57818110156129645760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610d58565b61169f8484848403612320565b600061297c84611389565b905061298a84826001613697565b50826001600160a01b0316846001600160a01b031614612a975760006129af84611389565b90506129bd84826001613697565b506001600160a01b0385166000908152603e602090815260409182902082518084019093525464ffffffffff8116808452600160281b9091046001600160d81b03169183019190915215612a9457838303612a30576001600160a01b0386166000908152603e6020526040812055612a94565b60208101516001600160d81b0316612a488585614eaa565b1015612a9457612a588484614eaa565b6001600160a01b0387166000908152603e6020526040902080546001600160d81b0392909216600160281b0264ffffffffff9092169190911790555b50505b61169f8484846138ed565b6000612aad82611389565b905080600003612aff5760405162461bcd60e51b815260206004820152601b60248201527f494e56414c49445f42414c414e43455f4f4e5f434f4f4c444f574e00000000006044820152606401610d58565b60408051808201825264ffffffffff42811682526001600160d81b0380851660208085019182526001600160a01b0388166000818152603e9092529086902094519151909216600160281b0292169190911790915590517f8a05f911d8ab7fc50fec37ef4ba7f9bfcb1a3c191c81dcd824ad0946c4e20d65906121429084815260200190565b6040516001600160a01b038085166024830152831660448201526064810182905261169f9085906323b872dd60e01b906084016122e9565b6001600160a01b038216612c075760405162461bcd60e51b8152602060048201526011602482015270494e56414c49445f44454c45474154454560781b6044820152606401610d58565b6000612c1282612cbe565b925050506000612c2185611389565b90506000612c2f8684612cfd565b6001600160a01b03878116600090815260208690526040902080546001600160a01b0319169188169190911790559050612c6b81868487613a9c565b846001600160a01b0316866001600160a01b03167fe8d51c8e11bd570db1734c8ec775785330e77007feed45c43b608ef33ff914bd86604051612cae91906150e6565b60405180910390a3505050505050565b6000808080846001811115612cd557612cd561503d565b03612cea57506006915060079050603f612cf6565b50604091506041905060425b9193909250565b6001600160a01b03808316600090815260208390526040812054909116806110c25783915050610f54565b605154600160d81b900460ff1615612d755760405162461bcd60e51b815260206004820152601060248201526f534c415348494e475f4f4e474f494e4760801b6044820152606401610d58565b80600003612d955760405162461bcd60e51b8152600401610d5890615078565b6000612da083611389565b90506000612db8843084612db360025490565b613ca0565b90508015612e3b576001600160a01b0384166000908152603d6020526040902054612de4908290614f2e565b6001600160a01b0385166000818152603d60209081526040918290209390935580519182529181018390527f2468f9268c60ad90e2d49edb0032c8a001e733ae888b3ab8e982edf535be1a76910160405180910390a15b6000612e46846113a4565b9050612e7d6001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016873087612b85565b612e878582613d61565b846001600160a01b0316866001600160a01b03167f6c86f3fd5118b3aa8bb4f389a617046de0a3d3d477de1a1673d227f802f616dc8684604051612cae929190918252602082015260400190565b6127108110612f265760405162461bcd60e51b815260206004820152601b60248201527f494e56414c49445f534c415348494e475f50455243454e5441474500000000006044820152606401610d58565b60508190556040518181527fb79c2d6c7f5c95eec9dc05affc0ed002620a4ec6d72b7b0744cc8638168c600a906020015b60405180910390a150565b604f8190556040518181527fbbf67247b5c97564e30ffc0a355e71c006836de7b9149e09e3d5d6054cb0335590602001612f57565b600080805b8351811015613092576000603c6000868481518110612fbd57612fbd614f7a565b602090810291909101810151516001600160a01b03168252810191909152604001600090812060018101548154885192945061302b926001600160801b0380831692600160801b900416908a908890811061301a5761301a614f7a565b602002602001015160400151613e2c565b905061307c86848151811061304257613042614f7a565b602002602001015160200151828460020160008b6001600160a01b03166001600160a01b0316815260200190815260200160002054613f37565b6130869085614f2e565b93505050600101612f9c565b509392505050565b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03167f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03161461313d5760405162461bcd60e51b815260206004820181905260248201527f5245574152445f544f4b454e5f49535f4e4f545f5354414b45445f544f4b454e6044820152606401610d58565b60006131538561314c87611389565b6001613697565b905060008184116131645783613166565b815b90508015611a56576131798630836127c5565b50611a56308683612d28565b60408051600380825260808201909252600091816020015b604080518082019091526000808252602082015281526020019060019003908161319d579050509050604051806040016040528060008152602001876001600160a01b0316815250816000815181106131f8576131f8614f7a565b6020026020010181905250604051806040016040528060018152602001866001600160a01b03168152508160018151811061323557613235614f7a565b6020026020010181905250604051806040016040528060028152602001856001600160a01b03168152508160028151811061327257613272614f7a565b602002602001018190525061328681613f63565b61328f83612ed5565b61329882612f62565b611478670de0b6b3a7640000612218565b60005b8151811015611074576000603c60008484815181106132cd576132cd614f7a565b6020026020010151604001516001600160a01b03166001600160a01b03168152602001908152602001600020905061334083838151811061331057613310614f7a565b6020026020010151604001518285858151811061332f5761332f614f7a565b602002602001015160200151614135565b5082828151811061335357613353614f7a565b60209081029190910101515181546fffffffffffffffffffffffffffffffff19166001600160801b03909116178155825183908390811061339657613396614f7a565b6020026020010151604001516001600160a01b03167f87fa03892a0556cb6b8f97e6d533a150d4d55fcbf275fff5fa003fa636bcc7fa8484815181106133de576133de614f7a565b602090810291909101810151516040516001600160801b0390911681520160405180910390a2506001016132ac565b60515460009061342d90605290600160e01b900463ffffffff16846141ed565b670de0b6b3a7640000613442878787876142fa565b61344c9190614f41565b611a569190614f58565b60006001600160d81b038211156134bf5760405162461bcd60e51b815260206004820152602760248201527f53616665436173743a2076616c756520646f65736e27742066697420696e20326044820152663136206269747360c81b6064820152608401610d58565b5090565b600064ffffffffff8211156134bf5760405162461bcd60e51b815260206004820152602660248201527f53616665436173743a2076616c756520646f65736e27742066697420696e203460448201526530206269747360d01b6064820152608401610d58565b806001600160d81b03166000036135775760405162461bcd60e51b81526020600482015260126024820152715a45524f5f45584348414e47455f5241544560701b6044820152606401610d58565b605180546001600160d81b0319166001600160d81b0383169081179091556040519081527fa9c433f9734baa3cf48b209454bb0ace054e191f677ba50e74b696c0d35ef26290602001612f57565b600061361a826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166143d49092919063ffffffff16565b80519091501561106457808060200190518101906136389190614f90565b6110645760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610d58565b6000806136a9853086612db360025490565b6001600160a01b0386166000908152603d6020526040812054919250906136d1908390614f2e565b90508115611a565783156136fb576001600160a01b0386166000908152603d602052604090208190555b604080516001600160a01b0388168152602081018490527f2468f9268c60ad90e2d49edb0032c8a001e733ae888b3ab8e982edf535be1a76910160405180910390a195945050505050565b6001600160a01b0382166137a65760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610d58565b6137b2826000836143e3565b6001600160a01b038216600090815260208190526040902054818110156138265760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610d58565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b60006001600160b81b038211156134bf5760405162461bcd60e51b815260206004820152602760248201527f53616665436173743a2076616c756520646f65736e27742066697420696e20316044820152663834206269747360c81b6064820152608401610d58565b6001600160a01b0383166139515760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610d58565b6001600160a01b0382166139b35760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610d58565b6139be8383836143e3565b6001600160a01b03831660009081526020819052604090205481811015613a365760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610d58565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a361169f565b826001600160a01b0316846001600160a01b0316031561169f57600080613ac283612cbe565b5090925090506001600160a01b03861615613bb3576001600160a01b0386166000908152602082905260408120548015613b42576001600160a01b038816600090815260208590526040812090613b1a600184614eaa565b8152602081019190915260400160002054600160801b90046001600160801b03169150613b4e565b613b4b88611389565b91505b613b6484848a85613b5f8b82614eaa565b614562565b6001600160a01b0388167fa0a19463ee116110c9b282012d9b65cc5522dc38a9520340cbaf3142e550127f613b998885614eaa565b87604051613ba89291906150f4565b60405180910390a250505b6001600160a01b03851615611478576001600160a01b0385166000908152602082905260408120548015613c2d576001600160a01b038716600090815260208590526040812090613c05600184614eaa565b8152602081019190915260400160002054600160801b90046001600160801b03169150613c39565b613c3687611389565b91505b613c4a84848985613b5f8b82614f2e565b6001600160a01b0387167fa0a19463ee116110c9b282012d9b65cc5522dc38a9520340cbaf3142e550127f613c7f8885614f2e565b87604051613c8e9291906150f4565b60405180910390a25050505050505050565b6001600160a01b038084166000908152603c602090815260408083209388168352600284019091528120549091908280613cdb888588614135565b9050808314613d55578615613cf857613cf5878285613f37565b91505b6001600160a01b03808a1660008181526002870160205260409081902084905551918a16917fbb123b5c06d5408bbea3c4fef481578175cfb432e3b482c6186f02ed9086585b90613d4c9085815260200190565b60405180910390a35b50979650505050505050565b6001600160a01b038216613db75760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610d58565b613dc3600083836143e3565b8060026000828254613dd59190614f2e565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6000831580613e39575081155b80613e4c575042836001600160801b0316145b80613e8057507f0000000000000000000000000000000000000000000000000000000000000000836001600160801b031610155b15613e8c575083611381565b60007f00000000000000000000000000000000000000000000000000000000000000004211613ebb5742613edd565b7f00000000000000000000000000000000000000000000000000000000000000005b90506000613ef46001600160801b03861683614eaa565b90508684613f046012600a6151ef565b613f0e848a614f41565b613f189190614f41565b613f229190614f58565b613f2c9190614f2e565b979650505050505050565b6000613f456012600a6151ef565b613f4f8385614eaa565b613f599086614f41565b6110bf9190614f58565b60005b81518110156110745760006001600160a01b031660456000848481518110613f9057613f90614f7a565b602090810291909101810151518252810191909152604001600020546001600160a01b0316148015613ff2575060006001600160a01b0316828281518110613fda57613fda614f7a565b6020026020010151602001516001600160a01b031614155b61403e5760405162461bcd60e51b815260206004820152601b60248201527f41444d494e5f43414e4e4f545f42455f494e495449414c495a454400000000006044820152606401610d58565b81818151811061405057614050614f7a565b6020026020010151602001516045600084848151811061407257614072614f7a565b602002602001015160000151815260200190815260200160002060006101000a8154816001600160a01b0302191690836001600160a01b031602179055508181815181106140c2576140c2614f7a565b6020026020010151602001516001600160a01b03167f83a9ddad961dcb7c6894c9585a16ff7792c2ec8281256a3cc7303ae830152dcf83838151811061410a5761410a614f7a565b60200260200101516000015160405161412591815260200190565b60405180910390a2600101613f66565b6001820154825460009190600160801b90046001600160801b031642819003614160575090506110c2565b845460009061417b9084906001600160801b03168488613e2c565b90508281146141ca57600186018190556040518181526001600160a01b038816907f5777ca300dfe5bead41006fbce4389794dbc0ed8d6cccebfaf94630aa04184bc9060200160405180910390a25b85546001600160801b03428116600160801b029116178655925050509392505050565b600019820160009081526020849052604081205464ffffffffff16821061423857506000198201600090815260208490526040902054600160281b90046001600160d81b03166110c2565b600060001984015b818111156142d15760028282030481036000818152602088815260409182902082518084019093525464ffffffffff8116808452600160281b9091046001600160d81b0316918301919091528690036142ab57602001516001600160d81b031693506110c292505050565b805164ffffffffff168611156142c3578193506142ca565b6001820392505b5050614240565b5060009081526020949094525050604090912054600160281b90046001600160d81b0316919050565b6000438211156143435760405162461bcd60e51b815260206004820152601460248201527324a72b20a624a22fa12627a1a5afa72aa6a122a960611b6044820152606401610d58565b6001600160a01b038316600090815260208590526040812054908190036143755761436d84611389565b915050611381565b6001600160a01b0384166000908152602087815260408083208380529091529020546001600160801b03168310156143b1576000915050611381565b6001600160a01b0384166000908152602087905260409020611ac5908285614678565b60606110bf8484600085614784565b6053546001600160a01b031680156144ba57806001600160a01b0316635b9c4cf1858561440f88611389565b61441888611389565b6040516001600160e01b031960e087901b1681526001600160a01b039485166004820152939092166024840152604483015260648201526084810185905260a401600060405180830381600087803b15801561447357600080fd5b505af1925050508015614484575060015b6144ba573d8080156144b2576040519150601f19603f3d011682016040523d82523d6000602084013e6144b7565b606091505b50505b6001600160a01b038085166000908152603f60205260408082205486841683529120549082169116816144eb578591505b6001600160a01b0381166144fc5750835b6145098282866000613a9c565b6001600160a01b0380871660009081526042602052604080822054888416835291205490821691168161453a578791505b6001600160a01b03811661454b5750855b6145588282886001613a9c565b5050505050505050565b6001600160a01b038316600090815260208581526040808320549188905290912043919081158015906145c457506001600160801b0383168160006145a8600186614eaa565b81526020810191909152604001600020546001600160801b0316145b1561460857838160006145d8600186614eaa565b8152602081019190915260400160002080546001600160801b03928316600160801b029216919091179055614558565b6040805180820182526001600160801b038086168252868116602080840191825260008781529086905293909320915192518116600160801b029216919091179055614655826001614f2e565b6001600160a01b0387166000908152602089905260409020555050505050505050565b60001982016000908152602084905260408120546001600160801b031682106146c557506000198201600090815260208490526040902054600160801b90046001600160801b03166110c2565b600060001984015b8181111561475b576002828203048103600081815260208881526040918290208251808401909352546001600160801b03808216808552600160801b909204169183019190915286900361473357602001516001600160801b031693506110c292505050565b80516001600160801b031686111561474d57819350614754565b6001820392505b50506146cd565b5060009081526020949094525050604090912054600160801b90046001600160801b0316919050565b6060824710156147e55760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610d58565b600080866001600160a01b0316858760405161480191906151fb565b60006040518083038185875af1925050503d806000811461483e576040519150601f19603f3d011682016040523d82523d6000602084013e614843565b606091505b5091509150613f2c87838387606083156148be5782516000036148b7576001600160a01b0385163b6148b75760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610d58565b5081611381565b61138183838151156148d35781518083602001fd5b8060405162461bcd60e51b8152600401610d58919061497e565b6001600160a01b038116811461113057600080fd5b6000806040838503121561491557600080fd5b8235614920816148ed565b946020939093013593505050565b60005b83811015614949578181015183820152602001614931565b50506000910152565b6000815180845261496a81602086016020860161492e565b601f01601f19169290920160200192915050565b6020815260006110c26020830184614952565b6000602082840312156149a357600080fd5b81356110c2816148ed565b6000602082840312156149c057600080fd5b5035919050565b6000806000606084860312156149dc57600080fd5b83356149e7816148ed565b925060208401356149f7816148ed565b929592945050506040919091013590565b60008060408385031215614a1b57600080fd5b8235614a26816148ed565b91506020830135614a36816148ed565b809150509250929050565b803560028110614a5057600080fd5b919050565b60008060408385031215614a6857600080fd5b8235614a73816148ed565b9150614a8160208401614a41565b90509250929050565b803560ff81168114614a5057600080fd5b60008060008060008060c08789031215614ab457600080fd5b8635614abf816148ed565b95506020870135945060408701359350614adb60608801614a8a565b9598949750929560808101359460a0909101359350915050565b600060208284031215614b0757600080fd5b813563ffffffff811681146110c257600080fd5b60008060008060808587031215614b3157600080fd5b8435614b3c816148ed565b93506020850135614b4c816148ed565b93969395505050506040820135916060013590565b600080600080600060a08688031215614b7957600080fd5b8535614b84816148ed565b94506020860135614b94816148ed565b93506040860135614ba4816148ed565b94979396509394606081013594506080013592915050565b60008060408385031215614bcf57600080fd5b823591506020830135614a36816148ed565b634e487b7160e01b600052604160045260246000fd5b6040516060810167ffffffffffffffff81118282101715614c1a57614c1a614be1565b60405290565b604051601f8201601f1916810167ffffffffffffffff81118282101715614c4957614c49614be1565b604052919050565b600060208284031215614c6357600080fd5b813567ffffffffffffffff811115614c7a57600080fd5b8201601f81018413614c8b57600080fd5b803567ffffffffffffffff811115614ca557614ca5614be1565b614cb460208260051b01614c20565b80828252602082019150602060608402850101925086831115614cd657600080fd5b6020840193505b82841015611ac55760608488031215614cf557600080fd5b614cfd614bf7565b84356001600160801b0381168114614d1457600080fd5b8152602085810135908201526040850135614d2e816148ed565b6040820152825260609390930192602090910190614cdd565b600080600060608486031215614d5c57600080fd5b8335614d67816148ed565b925060208401359150614d7c60408501614a41565b90509250925092565b600080600080600080600060e0888a031215614da057600080fd5b8735614dab816148ed565b96506020880135614dbb816148ed565b95506040880135945060608801359350614dd760808901614a8a565b9699959850939692959460a0840135945060c09093013592915050565b600080600060608486031215614e0957600080fd5b8335614e14816148ed565b95602085013595506040909401359392505050565b600080600080600080600060e0888a031215614e4457600080fd5b8735614e4f816148ed565b9650614dbb60208901614a41565b60208082526019908201527f43414c4c45525f4e4f545f534c415348494e475f41444d494e00000000000000604082015260600190565b634e487b7160e01b600052601160045260246000fd5b81810381811115610f5457610f54614e94565b600181811c90821680614ed157607f821691505b602082108103614ef157634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526017908201527f43414c4c45525f4e4f545f434c41494d5f48454c504552000000000000000000604082015260600190565b80820180821115610f5457610f54614e94565b8082028115828204841417610f5457610f54614e94565b600082614f7557634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b600060208284031215614fa257600080fd5b815180151581146110c257600080fd5b61190160f01b81526002810192909252602282015260420190565b602080825260119082015270494e56414c49445f5349474e415455524560781b604082015260600190565b60006001820161500a5761500a614e94565b5060010190565b60208082526012908201527124a72b20a624a22fa2ac2824a920aa24a7a760711b604082015260600190565b634e487b7160e01b600052602160045260246000fd5b600063ffffffff821663ffffffff810361506f5761506f614e94565b60010192915050565b6020808252601390820152721253959053125117d6915493d7d05353d55395606a1b604082015260600190565b6001600160d81b038281168282160390811115610f5457610f54614e94565b600281106150e257634e487b7160e01b600052602160045260246000fd5b9052565b60208101610f5482846150c4565b828152604081016110c260208301846150c4565b6001815b60018411156151435780850481111561512757615127614e94565b600184161561513557908102905b60019390931c92800261510c565b935093915050565b60008261515a57506001610f54565b8161516757506000610f54565b816001811461517d5760028114615187576151a3565b6001915050610f54565b60ff84111561519857615198614e94565b50506001821b610f54565b5060208310610133831016604e8410600b84101617156151c6575081810a610f54565b6151d36000198484615108565b80600019048211156151e7576151e7614e94565b029392505050565b60006110c2838361514b565b6000825161520d81846020870161492e565b919091019291505056fea264697066735822122034cb0950b0d49118bd53c46f37b2848f71bf75bb2f312219565b1a1d7a6efc1664736f6c634300081b0033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x496 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x8C9A281D GT PUSH2 0x262 JUMPI DUP1 PUSH4 0xAFF05AA9 GT PUSH2 0x151 JUMPI DUP1 PUSH4 0xDBC0ED8A GT PUSH2 0xCE JUMPI DUP1 PUSH4 0xEAB52318 GT PUSH2 0x92 JUMPI DUP1 PUSH4 0xEAB52318 EQ PUSH2 0xC65 JUMPI DUP1 PUSH4 0xF036BC68 EQ PUSH2 0xC78 JUMPI DUP1 PUSH4 0xF11B8188 EQ PUSH2 0xC8C JUMPI DUP1 PUSH4 0xF34D96DA EQ PUSH2 0xCEE JUMPI DUP1 PUSH4 0xF713D8A8 EQ PUSH2 0xCF6 JUMPI DUP1 PUSH4 0xFDE9EB69 EQ PUSH2 0xD09 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0xDBC0ED8A EQ PUSH2 0xC1F JUMPI DUP1 PUSH4 0xDC937E1C EQ PUSH2 0xC27 JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0xC3A JUMPI DUP1 PUSH4 0xDDE43CBA EQ PUSH2 0xC4D JUMPI DUP1 PUSH4 0xE6AA216C EQ PUSH2 0xC54 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0xC2FFBB91 GT PUSH2 0x115 JUMPI DUP1 PUSH4 0xC2FFBB91 EQ PUSH2 0xBAC JUMPI DUP1 PUSH4 0xC3863ADA EQ PUSH2 0xBBF JUMPI DUP1 PUSH4 0xC3CDA520 EQ PUSH2 0xBD2 JUMPI DUP1 PUSH4 0xCBCBB507 EQ PUSH2 0xBE5 JUMPI DUP1 PUSH4 0xD505ACCF EQ PUSH2 0xC0C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0xAFF05AA9 EQ PUSH2 0xB4B JUMPI DUP1 PUSH4 0xB2A5DBFA EQ PUSH2 0xB53 JUMPI DUP1 PUSH4 0xB2F4201D EQ PUSH2 0xB66 JUMPI DUP1 PUSH4 0xB9844D8D EQ PUSH2 0xB79 JUMPI DUP1 PUSH4 0xC18F539A EQ PUSH2 0xB99 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x9A99B4F0 GT PUSH2 0x1DF JUMPI DUP1 PUSH4 0xA9059CBB GT PUSH2 0x1A3 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0xAE3 JUMPI DUP1 PUSH4 0xAA9FBE02 EQ PUSH2 0xAF6 JUMPI DUP1 PUSH4 0xAAF5EB68 EQ PUSH2 0xB1D JUMPI DUP1 PUSH4 0xAB406FE6 EQ PUSH2 0xB25 JUMPI DUP1 PUSH4 0xADC9772E EQ PUSH2 0xB38 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x9A99B4F0 EQ PUSH2 0xA8F JUMPI DUP1 PUSH4 0x9C9B5154 EQ PUSH2 0xAA2 JUMPI DUP1 PUSH4 0x9E3FFCE0 EQ PUSH2 0xAB5 JUMPI DUP1 PUSH4 0xA457C2D7 EQ PUSH2 0xABD JUMPI DUP1 PUSH4 0xA6B63EB8 EQ PUSH2 0xAD0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x946776CD GT PUSH2 0x226 JUMPI DUP1 PUSH4 0x946776CD EQ PUSH2 0xA13 JUMPI DUP1 PUSH4 0x955E18AF EQ PUSH2 0xA3A JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0xA4D JUMPI DUP1 PUSH4 0x981B24D0 EQ PUSH2 0xA55 JUMPI DUP1 PUSH4 0x99248EA7 EQ PUSH2 0xA68 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x8C9A281D EQ PUSH2 0x932 JUMPI DUP1 PUSH4 0x8DBEFEE2 EQ PUSH2 0x93A JUMPI DUP1 PUSH4 0x8E9B2CA4 EQ PUSH2 0x94D JUMPI DUP1 PUSH4 0x8EF98E0E EQ PUSH2 0x95C JUMPI DUP1 PUSH4 0x919CD40F EQ PUSH2 0x9EC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x45755DD6 GT PUSH2 0x389 JUMPI DUP1 PUSH4 0x6F50458D GT PUSH2 0x306 JUMPI DUP1 PUSH4 0x74011F56 GT PUSH2 0x2CA JUMPI DUP1 PUSH4 0x74011F56 EQ PUSH2 0x8A4 JUMPI DUP1 PUSH4 0x78160376 EQ PUSH2 0x8B7 JUMPI DUP1 PUSH4 0x787A08A6 EQ PUSH2 0x8D7 JUMPI DUP1 PUSH4 0x7B5B1157 EQ PUSH2 0x8DF JUMPI DUP1 PUSH4 0x7BB73C97 EQ PUSH2 0x8F2 JUMPI DUP1 PUSH4 0x7E90D7EF EQ PUSH2 0x912 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x6F50458D EQ PUSH2 0x858 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x86B JUMPI DUP1 PUSH4 0x727A5D57 EQ PUSH2 0x87E JUMPI DUP1 PUSH4 0x72B49D63 EQ PUSH2 0x829 JUMPI DUP1 PUSH4 0x73D6A889 EQ PUSH2 0x891 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x5B3CC0CF GT PUSH2 0x34D JUMPI DUP1 PUSH4 0x5B3CC0CF EQ PUSH2 0x792 JUMPI DUP1 PUSH4 0x5C19A95C EQ PUSH2 0x7F1 JUMPI DUP1 PUSH4 0x60BA192B EQ PUSH2 0x804 JUMPI DUP1 PUSH4 0x616E0BF9 EQ PUSH2 0x829 JUMPI DUP1 PUSH4 0x6198E135 EQ PUSH2 0x831 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x45755DD6 EQ PUSH2 0x709 JUMPI DUP1 PUSH4 0x4575E69B EQ PUSH2 0x71C JUMPI DUP1 PUSH4 0x4998FFFD EQ PUSH2 0x745 JUMPI DUP1 PUSH4 0x4CDAD506 EQ PUSH2 0x758 JUMPI DUP1 PUSH4 0x58146D17 EQ PUSH2 0x76B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x23B872DD GT PUSH2 0x417 JUMPI DUP1 PUSH4 0x3373EE4C GT PUSH2 0x3DB JUMPI DUP1 PUSH4 0x3373EE4C EQ PUSH2 0x661 JUMPI DUP1 PUSH4 0x359C4A96 EQ PUSH2 0x69F JUMPI DUP1 PUSH4 0x3644E515 EQ PUSH2 0x6C6 JUMPI DUP1 PUSH4 0x39509351 EQ PUSH2 0x6CF JUMPI DUP1 PUSH4 0x41CBF54A EQ PUSH2 0x6E2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x23B872DD EQ PUSH2 0x5D8 JUMPI DUP1 PUSH4 0x250201DB EQ PUSH2 0x5EB JUMPI DUP1 PUSH4 0x30ADF81F EQ PUSH2 0x5FE JUMPI DUP1 PUSH4 0x312F6B83 EQ PUSH2 0x625 JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x64C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x112D037C GT PUSH2 0x45E JUMPI DUP1 PUSH4 0x112D037C EQ PUSH2 0x582 JUMPI DUP1 PUSH4 0x174ED542 EQ PUSH2 0x597 JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x5AA JUMPI DUP1 PUSH4 0x1E9A6950 EQ PUSH2 0x5B2 JUMPI DUP1 PUSH4 0x20FB80B5 EQ PUSH2 0x5C5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x2FB4D85 EQ PUSH2 0x49B JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x4C1 JUMPI DUP1 PUSH4 0x91030C3 EQ PUSH2 0x4D6 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x534 JUMPI DUP1 PUSH4 0x111FD88B EQ PUSH2 0x557 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x4AE PUSH2 0x4A9 CALLDATASIZE PUSH1 0x4 PUSH2 0x4902 JUMP JUMPDEST PUSH2 0xD1C JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x4C9 PUSH2 0xF5A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x4B8 SWAP2 SWAP1 PUSH2 0x497E JUMP JUMPDEST PUSH2 0x50F PUSH2 0x4E4 CALLDATASIZE PUSH1 0x4 PUSH2 0x4991 JUMP JUMPDEST PUSH1 0x3E PUSH1 0x20 MSTORE PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH5 0xFFFFFFFFFF DUP2 AND SWAP1 PUSH1 0x1 PUSH1 0x28 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0xD8 SHL SUB AND DUP3 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH5 0xFFFFFFFFFF SWAP1 SWAP4 AND DUP4 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xD8 SHL SUB SWAP1 SWAP2 AND PUSH1 0x20 DUP4 ADD MSTORE ADD PUSH2 0x4B8 JUMP JUMPDEST PUSH2 0x547 PUSH2 0x542 CALLDATASIZE PUSH1 0x4 PUSH2 0x4902 JUMP JUMPDEST PUSH2 0xFEC JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x4B8 JUMP JUMPDEST PUSH2 0x56A PUSH2 0x565 CALLDATASIZE PUSH1 0x4 PUSH2 0x49AE JUMP JUMPDEST PUSH2 0x1004 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x4B8 JUMP JUMPDEST PUSH2 0x595 PUSH2 0x590 CALLDATASIZE PUSH1 0x4 PUSH2 0x49C7 JUMP JUMPDEST PUSH2 0x101F JUMP JUMPDEST STOP JUMPDEST PUSH1 0x53 SLOAD PUSH2 0x56A SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 JUMP JUMPDEST PUSH1 0x2 SLOAD PUSH2 0x4AE JUMP JUMPDEST PUSH2 0x595 PUSH2 0x5C0 CALLDATASIZE PUSH1 0x4 PUSH2 0x4902 JUMP JUMPDEST PUSH2 0x1069 JUMP JUMPDEST PUSH2 0x4AE PUSH2 0x5D3 CALLDATASIZE PUSH1 0x4 PUSH2 0x49C7 JUMP JUMPDEST PUSH2 0x1078 JUMP JUMPDEST PUSH2 0x547 PUSH2 0x5E6 CALLDATASIZE PUSH1 0x4 PUSH2 0x49C7 JUMP JUMPDEST PUSH2 0x10C9 JUMP JUMPDEST PUSH2 0x595 PUSH2 0x5F9 CALLDATASIZE PUSH1 0x4 PUSH2 0x4991 JUMP JUMPDEST PUSH2 0x10ED JUMP JUMPDEST PUSH2 0x4AE PUSH32 0x6E71EDAE12B1B97F4D1F60370FEF10105FA2FAAE0126114A169C64845D6126C9 DUP2 JUMP JUMPDEST PUSH2 0x56A PUSH32 0x0 DUP2 JUMP JUMPDEST PUSH1 0x12 JUMPDEST PUSH1 0x40 MLOAD PUSH1 0xFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x4B8 JUMP JUMPDEST PUSH2 0x4AE PUSH2 0x66F CALLDATASIZE PUSH1 0x4 PUSH2 0x4A08 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3C PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 DUP7 AND DUP4 MSTORE PUSH1 0x2 SWAP1 SWAP4 ADD SWAP1 MSTORE KECCAK256 SLOAD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x4AE PUSH32 0x0 DUP2 JUMP JUMPDEST PUSH2 0x4AE PUSH1 0x43 SLOAD DUP2 JUMP JUMPDEST PUSH2 0x547 PUSH2 0x6DD CALLDATASIZE PUSH1 0x4 PUSH2 0x4902 JUMP JUMPDEST PUSH2 0x1133 JUMP JUMPDEST PUSH2 0x4AE PUSH32 0x9A9A49B990BA9BB39F8048C490A40AB25C18F55D208D5FBCF958261A9B48716D DUP2 JUMP JUMPDEST PUSH2 0x595 PUSH2 0x717 CALLDATASIZE PUSH1 0x4 PUSH2 0x49AE JUMP JUMPDEST PUSH2 0x1155 JUMP JUMPDEST PUSH2 0x56A PUSH2 0x72A CALLDATASIZE PUSH1 0x4 PUSH2 0x49AE JUMP JUMPDEST PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x46 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH2 0x595 PUSH2 0x753 CALLDATASIZE PUSH1 0x4 PUSH2 0x4991 JUMP JUMPDEST PUSH2 0x12BA JUMP JUMPDEST PUSH2 0x4AE PUSH2 0x766 CALLDATASIZE PUSH1 0x4 PUSH2 0x49AE JUMP JUMPDEST PUSH2 0x1324 JUMP JUMPDEST PUSH2 0x77A PUSH8 0xDE0B6B3A7640000 DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD8 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x4B8 JUMP JUMPDEST PUSH2 0x7D1 PUSH2 0x7A0 CALLDATASIZE PUSH1 0x4 PUSH2 0x4902 JUMP JUMPDEST PUSH1 0x6 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x0 SWAP3 DUP4 MSTORE PUSH1 0x40 DUP1 DUP5 KECCAK256 SWAP1 SWAP2 MSTORE SWAP1 DUP3 MSTORE SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB DUP1 DUP3 AND SWAP2 PUSH1 0x1 PUSH1 0x80 SHL SWAP1 DIV AND DUP3 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB SWAP4 DUP5 AND DUP2 MSTORE SWAP3 SWAP1 SWAP2 AND PUSH1 0x20 DUP4 ADD MSTORE ADD PUSH2 0x4B8 JUMP JUMPDEST PUSH2 0x595 PUSH2 0x7FF CALLDATASIZE PUSH1 0x4 PUSH2 0x4991 JUMP JUMPDEST PUSH2 0x134F JUMP JUMPDEST PUSH1 0x51 SLOAD PUSH1 0x1 PUSH1 0xE0 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND PUSH1 0x40 MLOAD PUSH4 0xFFFFFFFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x4B8 JUMP JUMPDEST PUSH1 0x4F SLOAD PUSH2 0x4AE JUMP JUMPDEST PUSH2 0x4AE PUSH32 0x0 DUP2 JUMP JUMPDEST PUSH2 0x56A PUSH2 0x866 CALLDATASIZE PUSH1 0x4 PUSH2 0x4A55 JUMP JUMPDEST PUSH2 0x1367 JUMP JUMPDEST PUSH2 0x4AE PUSH2 0x879 CALLDATASIZE PUSH1 0x4 PUSH2 0x4991 JUMP JUMPDEST PUSH2 0x1389 JUMP JUMPDEST PUSH2 0x4AE PUSH2 0x88C CALLDATASIZE PUSH1 0x4 PUSH2 0x49AE JUMP JUMPDEST PUSH2 0x13A4 JUMP JUMPDEST PUSH2 0x595 PUSH2 0x89F CALLDATASIZE PUSH1 0x4 PUSH2 0x4A9B JUMP JUMPDEST PUSH2 0x13C7 JUMP JUMPDEST PUSH2 0x595 PUSH2 0x8B2 CALLDATASIZE PUSH1 0x4 PUSH2 0x49AE JUMP JUMPDEST PUSH2 0x1480 JUMP JUMPDEST PUSH2 0x4C9 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 DUP2 JUMP JUMPDEST PUSH2 0x595 PUSH2 0x14C3 JUMP JUMPDEST PUSH2 0x595 PUSH2 0x8ED CALLDATASIZE PUSH1 0x4 PUSH2 0x49AE JUMP JUMPDEST PUSH2 0x14CE JUMP JUMPDEST PUSH2 0x4AE PUSH2 0x900 CALLDATASIZE PUSH1 0x4 PUSH2 0x4991 JUMP JUMPDEST PUSH1 0x7 PUSH1 0x20 MSTORE PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 JUMP JUMPDEST PUSH2 0x4AE PUSH2 0x920 CALLDATASIZE PUSH1 0x4 PUSH2 0x4991 JUMP JUMPDEST PUSH1 0x3D PUSH1 0x20 MSTORE PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 JUMP JUMPDEST PUSH2 0x4AE PUSH1 0x0 DUP2 JUMP JUMPDEST PUSH2 0x4AE PUSH2 0x948 CALLDATASIZE PUSH1 0x4 PUSH2 0x4991 JUMP JUMPDEST PUSH2 0x1541 JUMP JUMPDEST PUSH2 0x4AE PUSH8 0xDE0B6B3A7640000 DUP2 JUMP JUMPDEST PUSH2 0x9C1 PUSH2 0x96A CALLDATASIZE PUSH1 0x4 PUSH2 0x4AF5 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP1 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE POP PUSH4 0xFFFFFFFF AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x52 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 DUP3 MLOAD DUP1 DUP5 ADD SWAP1 SWAP4 MSTORE SLOAD PUSH5 0xFFFFFFFFFF DUP2 AND DUP4 MSTORE PUSH1 0x1 PUSH1 0x28 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0xD8 SHL SUB AND SWAP1 DUP3 ADD MSTORE SWAP1 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP3 MLOAD PUSH5 0xFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 SWAP3 DUP4 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD8 SHL SUB AND SWAP3 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE ADD PUSH2 0x4B8 JUMP JUMPDEST PUSH2 0x4AE PUSH32 0x0 DUP2 JUMP JUMPDEST PUSH2 0x56A PUSH32 0x0 DUP2 JUMP JUMPDEST PUSH2 0x4AE PUSH2 0xA48 CALLDATASIZE PUSH1 0x4 PUSH2 0x4902 JUMP JUMPDEST PUSH2 0x161C JUMP JUMPDEST PUSH2 0x4C9 PUSH2 0x1629 JUMP JUMPDEST PUSH2 0x4AE PUSH2 0xA63 CALLDATASIZE PUSH1 0x4 PUSH2 0x49AE JUMP JUMPDEST PUSH2 0x1638 JUMP JUMPDEST PUSH2 0x56A PUSH32 0x0 DUP2 JUMP JUMPDEST PUSH2 0x595 PUSH2 0xA9D CALLDATASIZE PUSH1 0x4 PUSH2 0x4902 JUMP JUMPDEST PUSH2 0x1643 JUMP JUMPDEST PUSH2 0x595 PUSH2 0xAB0 CALLDATASIZE PUSH1 0x4 PUSH2 0x4B1B JUMP JUMPDEST PUSH2 0x164E JUMP JUMPDEST PUSH2 0x4AE PUSH1 0x1 DUP2 JUMP JUMPDEST PUSH2 0x547 PUSH2 0xACB CALLDATASIZE PUSH1 0x4 PUSH2 0x4902 JUMP JUMPDEST PUSH2 0x16A5 JUMP JUMPDEST PUSH2 0x595 PUSH2 0xADE CALLDATASIZE PUSH1 0x4 PUSH2 0x4B61 JUMP JUMPDEST PUSH2 0x1720 JUMP JUMPDEST PUSH2 0x547 PUSH2 0xAF1 CALLDATASIZE PUSH1 0x4 PUSH2 0x4902 JUMP JUMPDEST PUSH2 0x1838 JUMP JUMPDEST PUSH2 0x4AE PUSH32 0x10D8D059343739EFCE7DAD10D09F0806DA52B252B3E6A7951920D2D6EC4102E5 DUP2 JUMP JUMPDEST PUSH2 0x64F PUSH1 0x12 DUP2 JUMP JUMPDEST PUSH2 0x595 PUSH2 0xB33 CALLDATASIZE PUSH1 0x4 PUSH2 0x4BBC JUMP JUMPDEST PUSH2 0x1846 JUMP JUMPDEST PUSH2 0x595 PUSH2 0xB46 CALLDATASIZE PUSH1 0x4 PUSH2 0x4902 JUMP JUMPDEST PUSH2 0x1909 JUMP JUMPDEST PUSH2 0x595 PUSH2 0x1914 JUMP JUMPDEST PUSH2 0x595 PUSH2 0xB61 CALLDATASIZE PUSH1 0x4 PUSH2 0x4C51 JUMP JUMPDEST PUSH2 0x1986 JUMP JUMPDEST PUSH2 0x4AE PUSH2 0xB74 CALLDATASIZE PUSH1 0x4 PUSH2 0x4A55 JUMP JUMPDEST PUSH2 0x1A37 JUMP JUMPDEST PUSH2 0x4AE PUSH2 0xB87 CALLDATASIZE PUSH1 0x4 PUSH2 0x4991 JUMP JUMPDEST PUSH1 0x44 PUSH1 0x20 MSTORE PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 JUMP JUMPDEST PUSH2 0x4AE PUSH2 0xBA7 CALLDATASIZE PUSH1 0x4 PUSH2 0x49C7 JUMP JUMPDEST PUSH2 0x1A5F JUMP JUMPDEST PUSH2 0x4AE PUSH2 0xBBA CALLDATASIZE PUSH1 0x4 PUSH2 0x4D47 JUMP JUMPDEST PUSH2 0x1AA6 JUMP JUMPDEST PUSH1 0x8 SLOAD PUSH2 0x56A SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 JUMP JUMPDEST PUSH2 0x595 PUSH2 0xBE0 CALLDATASIZE PUSH1 0x4 PUSH2 0x4A9B JUMP JUMPDEST PUSH2 0x1ACF JUMP JUMPDEST PUSH2 0x56A PUSH32 0x0 DUP2 JUMP JUMPDEST PUSH2 0x595 PUSH2 0xC1A CALLDATASIZE PUSH1 0x4 PUSH2 0x4D85 JUMP JUMPDEST PUSH2 0x1C94 JUMP JUMPDEST PUSH2 0x4AE PUSH1 0x2 DUP2 JUMP JUMPDEST PUSH2 0x595 PUSH2 0xC35 CALLDATASIZE PUSH1 0x4 PUSH2 0x4A55 JUMP JUMPDEST PUSH2 0x1E5C JUMP JUMPDEST PUSH2 0x4AE PUSH2 0xC48 CALLDATASIZE PUSH1 0x4 PUSH2 0x4A08 JUMP JUMPDEST PUSH2 0x1E67 JUMP JUMPDEST PUSH1 0x1 PUSH2 0x4AE JUMP JUMPDEST PUSH1 0x51 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD8 SHL SUB AND PUSH2 0x77A JUMP JUMPDEST PUSH2 0x595 PUSH2 0xC73 CALLDATASIZE PUSH1 0x4 PUSH2 0x4DF4 JUMP JUMPDEST PUSH2 0x1E92 JUMP JUMPDEST PUSH1 0x51 SLOAD PUSH2 0x547 SWAP1 PUSH1 0x1 PUSH1 0xD8 SHL SWAP1 DIV PUSH1 0xFF AND DUP2 JUMP JUMPDEST PUSH2 0xCC8 PUSH2 0xC9A CALLDATASIZE PUSH1 0x4 PUSH2 0x4991 JUMP JUMPDEST PUSH1 0x3C PUSH1 0x20 MSTORE PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x1 SWAP1 SWAP2 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB DUP1 DUP4 AND SWAP3 PUSH1 0x1 PUSH1 0x80 SHL SWAP1 DIV AND SWAP1 DUP4 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB SWAP5 DUP6 AND DUP2 MSTORE SWAP4 SWAP1 SWAP3 AND PUSH1 0x20 DUP5 ADD MSTORE SWAP1 DUP3 ADD MSTORE PUSH1 0x60 ADD PUSH2 0x4B8 JUMP JUMPDEST PUSH1 0x50 SLOAD PUSH2 0x4AE JUMP JUMPDEST PUSH2 0x595 PUSH2 0xD04 CALLDATASIZE PUSH1 0x4 PUSH2 0x4E29 JUMP JUMPDEST PUSH2 0x1EA9 JUMP JUMPDEST PUSH2 0x595 PUSH2 0xD17 CALLDATASIZE PUSH1 0x4 PUSH2 0x49AE JUMP JUMPDEST PUSH2 0x207D JUMP JUMPDEST PUSH1 0x0 PUSH2 0xD28 PUSH1 0x0 PUSH2 0x1004 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xD61 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xD58 SWAP1 PUSH2 0x4E5D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x51 SLOAD PUSH1 0x1 PUSH1 0xD8 SHL SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0xDBB 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 0x50524556494F55535F534C415348494E475F4E4F545F534554544C4544000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xD58 JUMP JUMPDEST PUSH1 0x0 DUP3 GT PUSH2 0xDF9 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0xB PUSH1 0x24 DUP3 ADD MSTORE PUSH11 0x16915493D7D05353D55395 PUSH1 0xAA SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xD58 JUMP JUMPDEST PUSH1 0x0 PUSH2 0xE04 PUSH1 0x2 SLOAD SWAP1 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0xE11 DUP3 PUSH2 0x1324 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0xE2A PUSH1 0x50 SLOAD DUP4 PUSH2 0x214E SWAP1 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST SWAP1 POP DUP1 DUP6 GT ISZERO PUSH2 0xE38 JUMPI DUP1 SWAP5 POP JUMPDEST PUSH32 0x0 PUSH2 0xE63 DUP7 DUP5 PUSH2 0x4EAA JUMP JUMPDEST LT ISZERO PUSH2 0xEA8 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 PUSH20 0x52454D41494E494E475F4C545F4D494E494D554D PUSH1 0x60 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xD58 JUMP JUMPDEST PUSH1 0x51 DUP1 SLOAD PUSH1 0xFF PUSH1 0xD8 SHL NOT AND PUSH1 0x1 PUSH1 0xD8 SHL OR SWAP1 SSTORE PUSH2 0xED6 PUSH2 0xED1 PUSH2 0xECB DUP8 DUP6 PUSH2 0x4EAA JUMP JUMPDEST DUP6 PUSH2 0x21DA JUMP JUMPDEST PUSH2 0x2218 JUMP JUMPDEST PUSH2 0xF0A PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND DUP8 DUP8 PUSH2 0x22BD JUMP JUMPDEST DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x4ED05E9673C26D2ED44F7EF6A7F2942DF0EE3B5E1E17DB4B99F9DCD261A339CD DUP7 PUSH1 0x40 MLOAD PUSH2 0xF45 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 DUP5 SWAP4 POP POP POP POP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0xF69 SWAP1 PUSH2 0x4EBD 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 0xF95 SWAP1 PUSH2 0x4EBD JUMP JUMPDEST DUP1 ISZERO PUSH2 0xFE2 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0xFB7 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0xFE2 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 0xFC5 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0xFFA DUP2 DUP6 DUP6 PUSH2 0x2320 JUMP JUMPDEST POP PUSH1 0x1 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x45 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH2 0x1029 PUSH1 0x2 PUSH2 0x1004 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x1059 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xD58 SWAP1 PUSH2 0x4EF7 JUMP JUMPDEST PUSH2 0x1064 DUP4 DUP4 DUP4 PUSH2 0x2444 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x1074 CALLER DUP4 DUP4 PUSH2 0x2444 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1084 PUSH1 0x2 PUSH2 0x1004 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x10B4 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xD58 SWAP1 PUSH2 0x4EF7 JUMP JUMPDEST PUSH2 0x10BF DUP5 DUP5 DUP5 PUSH2 0x27C5 JUMP JUMPDEST SWAP1 POP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0x10D7 DUP6 DUP3 DUP6 PUSH2 0x28FD JUMP JUMPDEST PUSH2 0x10E2 DUP6 DUP6 DUP6 PUSH2 0x2971 JUMP JUMPDEST POP PUSH1 0x1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH2 0x10F7 PUSH1 0x2 PUSH2 0x1004 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x1127 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xD58 SWAP1 PUSH2 0x4EF7 JUMP JUMPDEST PUSH2 0x1130 DUP2 PUSH2 0x2AA2 JUMP JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0xFFA DUP2 DUP6 DUP6 PUSH2 0x1146 DUP4 DUP4 PUSH2 0x1E67 JUMP JUMPDEST PUSH2 0x1150 SWAP2 SWAP1 PUSH2 0x4F2E JUMP JUMPDEST PUSH2 0x2320 JUMP JUMPDEST PUSH32 0x0 DUP2 LT ISZERO PUSH2 0x11B9 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x11 PUSH1 0x24 DUP3 ADD MSTORE PUSH17 0x414D4F554E545F4C545F4D494E494D554D PUSH1 0x78 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xD58 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x11C4 PUSH1 0x2 SLOAD SWAP1 JUMP JUMPDEST SWAP1 POP PUSH32 0x0 DUP2 LT ISZERO PUSH2 0x122A JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x11 PUSH1 0x24 DUP3 ADD MSTORE PUSH17 0x5348415245535F4C545F4D494E494D554D PUSH1 0x78 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xD58 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1235 DUP3 PUSH2 0x1324 JUMP JUMPDEST SWAP1 POP PUSH2 0x124D PUSH2 0xED1 PUSH2 0x1247 DUP6 DUP5 PUSH2 0x4F2E JUMP JUMPDEST DUP5 PUSH2 0x21DA JUMP JUMPDEST PUSH2 0x1282 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND CALLER ADDRESS DUP7 PUSH2 0x2B85 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP4 DUP2 MSTORE PUSH32 0x278E51D3323FBF18B9FB8DF3F8B97E31B145BC1146C52E764CF4AA1BFC4BA17D SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP POP POP JUMP JUMPDEST PUSH20 0xEE56E2B3D491590B5B31738CC34D5232F378A8D5 CALLER EQ PUSH2 0x12DA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x53 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 0x62BBCED765BCCC9ED93D0BAE1B2A8C86E13B4663F8BF27D5936D9D619194C8A9 SWAP1 PUSH1 0x0 SWAP1 LOG2 POP JUMP JUMPDEST PUSH1 0x51 SLOAD PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xD8 SHL SUB AND PUSH2 0x1345 DUP4 PUSH8 0xDE0B6B3A7640000 PUSH2 0x4F41 JUMP JUMPDEST PUSH2 0xF54 SWAP2 SWAP1 PUSH2 0x4F58 JUMP JUMPDEST PUSH2 0x135B CALLER DUP3 PUSH1 0x0 PUSH2 0x2BBD JUMP JUMPDEST PUSH2 0x1130 CALLER DUP3 PUSH1 0x1 PUSH2 0x2BBD JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x1373 DUP4 PUSH2 0x2CBE JUMP JUMPDEST SWAP3 POP POP POP PUSH2 0x1381 DUP5 DUP3 PUSH2 0x2CFD JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP 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 PUSH1 0x51 SLOAD PUSH1 0x0 SWAP1 PUSH8 0xDE0B6B3A7640000 SWAP1 PUSH2 0x1345 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xD8 SHL SUB AND DUP5 PUSH2 0x4F41 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0xD505ACCF PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 DUP2 AND PUSH1 0x4 DUP4 ADD MSTORE ADDRESS PUSH1 0x24 DUP4 ADD MSTORE PUSH1 0x44 DUP3 ADD DUP8 SWAP1 MSTORE PUSH1 0x64 DUP3 ADD DUP7 SWAP1 MSTORE PUSH1 0xFF DUP6 AND PUSH1 0x84 DUP4 ADD MSTORE PUSH1 0xA4 DUP3 ADD DUP5 SWAP1 MSTORE PUSH1 0xC4 DUP3 ADD DUP4 SWAP1 MSTORE PUSH32 0x0 AND SWAP1 PUSH4 0xD505ACCF SWAP1 PUSH1 0xE4 ADD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x1455 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x1469 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH2 0x1478 DUP7 DUP8 DUP8 PUSH2 0x2D28 JUMP JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH2 0x148A PUSH1 0x0 PUSH2 0x1004 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x14BA JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xD58 SWAP1 PUSH2 0x4E5D JUMP JUMPDEST PUSH2 0x1130 DUP2 PUSH2 0x2ED5 JUMP JUMPDEST PUSH2 0x14CC CALLER PUSH2 0x2AA2 JUMP JUMPDEST JUMP JUMPDEST PUSH2 0x14D8 PUSH1 0x1 PUSH2 0x1004 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x1538 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 0x43414C4C45525F4E4F545F434F4F4C444F574E5F41444D494E00000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xD58 JUMP JUMPDEST PUSH2 0x1130 DUP2 PUSH2 0x2F62 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 DUP1 DUP3 MSTORE DUP2 DUP4 ADD SWAP1 SWAP3 MSTORE PUSH1 0x0 SWAP2 DUP3 SWAP2 SWAP1 DUP2 PUSH1 0x20 ADD JUMPDEST PUSH2 0x1588 PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP2 MSTORE POP SWAP1 JUMP JUMPDEST DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 SWAP1 SUB SWAP1 DUP2 PUSH2 0x155B JUMPI SWAP1 POP POP SWAP1 POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE DUP1 ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x15C0 DUP6 PUSH2 0x1389 JUMP JUMPDEST DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x15CE PUSH1 0x2 SLOAD SWAP1 JUMP JUMPDEST DUP2 MSTORE POP DUP2 PUSH1 0x0 DUP2 MLOAD DUP2 LT PUSH2 0x15E4 JUMPI PUSH2 0x15E4 PUSH2 0x4F7A JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 SWAP1 MSTORE POP PUSH2 0x15F9 DUP4 DUP3 PUSH2 0x2F97 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3D PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH2 0x10C2 SWAP2 SWAP1 PUSH2 0x4F2E JUMP JUMPDEST PUSH1 0x0 PUSH2 0x10C2 CALLER DUP5 DUP5 PUSH2 0x309A JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0xF69 SWAP1 PUSH2 0x4EBD JUMP JUMPDEST PUSH1 0x0 PUSH2 0xF54 PUSH1 0x2 SLOAD SWAP1 JUMP JUMPDEST PUSH2 0x1064 CALLER DUP4 DUP4 PUSH2 0x27C5 JUMP JUMPDEST PUSH2 0x1658 PUSH1 0x2 PUSH2 0x1004 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x1688 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xD58 SWAP1 PUSH2 0x4EF7 JUMP JUMPDEST PUSH2 0x1693 DUP5 DUP5 DUP5 PUSH2 0x27C5 JUMP JUMPDEST POP PUSH2 0x169F DUP5 DUP5 DUP4 PUSH2 0x2444 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 CALLER DUP2 PUSH2 0x16B3 DUP3 DUP7 PUSH2 0x1E67 JUMP JUMPDEST SWAP1 POP DUP4 DUP2 LT ISZERO PUSH2 0x1713 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 PUSH5 0x207A65726F PUSH1 0xD8 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0xD58 JUMP JUMPDEST PUSH2 0x10E2 DUP3 DUP7 DUP7 DUP5 SUB PUSH2 0x2320 JUMP JUMPDEST PUSH1 0x9 SLOAD PUSH1 0x1 SWAP1 DUP2 GT PUSH2 0x178B 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 0x436F6E747261637420696E7374616E63652068617320616C7265616479206265 PUSH1 0x44 DUP3 ADD MSTORE PUSH14 0x195B881A5B9A5D1A585B1A5E9959 PUSH1 0x92 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0xD58 JUMP JUMPDEST PUSH1 0x9 DUP2 SWAP1 SSTORE PUSH2 0x179D DUP7 DUP7 DUP7 DUP7 DUP7 PUSH2 0x3185 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH4 0x95EA7B3 PUSH1 0xE0 SHL DUP2 MSTORE ADDRESS PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x0 NOT PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 PUSH4 0x95EA7B3 SWAP1 PUSH1 0x44 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 GAS CALL ISZERO DUP1 ISZERO PUSH2 0x180B 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 0x182F SWAP2 SWAP1 PUSH2 0x4F90 JUMP JUMPDEST POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0xFFA DUP2 DUP6 DUP6 PUSH2 0x2971 JUMP JUMPDEST PUSH1 0x0 DUP3 DUP2 MSTORE PUSH1 0x45 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP3 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x18A6 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 PUSH21 0x21A0A62622A92FA727AA2FA927A622AFA0A226A4A7 PUSH1 0x59 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xD58 JUMP JUMPDEST PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x46 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE SWAP2 MLOAD DUP6 DUP2 MSTORE PUSH32 0xC3D1BF52795A20771EE6DE3E59948FD83E10DB956122D4709A3B86C512963855 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP JUMP JUMPDEST PUSH2 0x1074 CALLER DUP4 DUP4 PUSH2 0x2D28 JUMP JUMPDEST PUSH2 0x191E PUSH1 0x0 PUSH2 0x1004 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x194E JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xD58 SWAP1 PUSH2 0x4E5D JUMP JUMPDEST PUSH1 0x51 DUP1 SLOAD PUSH1 0xFF PUSH1 0xD8 SHL NOT AND SWAP1 SSTORE PUSH1 0x40 MLOAD PUSH32 0xCDEE157E87BA915BE681D4FA3F3D511AFE7348ECA06448A3ACCD6AC227FA40AF SWAP1 PUSH1 0x0 SWAP1 LOG1 JUMP JUMPDEST CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ PUSH2 0x19F6 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 PUSH21 0x27A7262CAFA2A6A4A9A9A4A7A72FA6A0A720A3A2A9 PUSH1 0x59 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xD58 JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP2 MLOAD DUP2 LT ISZERO PUSH2 0x1A2D JUMPI PUSH1 0x2 SLOAD DUP3 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x1A17 JUMPI PUSH2 0x1A17 PUSH2 0x4F7A JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD DUP2 ADD MLOAD ADD MSTORE PUSH1 0x1 ADD PUSH2 0x19F9 JUMP JUMPDEST POP PUSH2 0x1130 DUP2 PUSH2 0x32A9 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH2 0x1A45 DUP5 PUSH2 0x2CBE JUMP JUMPDEST POP SWAP2 POP SWAP2 POP PUSH2 0x1A56 DUP3 DUP3 DUP8 NUMBER PUSH2 0x340D JUMP JUMPDEST SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1A6B PUSH1 0x2 PUSH2 0x1004 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x1A9B JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xD58 SWAP1 PUSH2 0x4EF7 JUMP JUMPDEST PUSH2 0x10BF DUP5 DUP5 DUP5 PUSH2 0x309A JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH2 0x1AB4 DUP5 PUSH2 0x2CBE JUMP JUMPDEST POP SWAP2 POP SWAP2 POP PUSH2 0x1AC5 DUP3 DUP3 DUP9 DUP9 PUSH2 0x340D JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH32 0x9A9A49B990BA9BB39F8048C490A40AB25C18F55D208D5FBCF958261A9B48716D PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP9 AND SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x60 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0x80 DUP2 ADD DUP6 SWAP1 MSTORE PUSH1 0x0 SWAP1 PUSH1 0xA0 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 PUSH1 0x43 SLOAD DUP3 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x1B4D SWAP3 SWAP2 SWAP1 PUSH2 0x4FB2 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F NOT DUP2 DUP5 SUB ADD DUP2 MSTORE DUP3 DUP3 MSTORE DUP1 MLOAD PUSH1 0x20 SWAP2 DUP3 ADD KECCAK256 PUSH1 0x0 DUP1 DUP6 MSTORE SWAP2 DUP5 ADD DUP1 DUP5 MSTORE DUP2 SWAP1 MSTORE PUSH1 0xFF DUP10 AND SWAP3 DUP5 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x60 DUP4 ADD DUP8 SWAP1 MSTORE PUSH1 0x80 DUP4 ADD DUP7 SWAP1 MSTORE SWAP1 SWAP3 POP SWAP1 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 0x1BB8 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 0x1BEB JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xD58 SWAP1 PUSH2 0x4FCD JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x44 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD SWAP2 PUSH2 0x1C0F DUP4 PUSH2 0x4FF8 JUMP JUMPDEST SWAP2 SWAP1 POP SSTORE DUP9 EQ PUSH2 0x1C51 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0xD PUSH1 0x24 DUP3 ADD MSTORE PUSH13 0x494E56414C49445F4E4F4E4345 PUSH1 0x98 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xD58 JUMP JUMPDEST DUP7 TIMESTAMP GT ISZERO PUSH2 0x1C71 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xD58 SWAP1 PUSH2 0x5011 JUMP JUMPDEST PUSH2 0x1C7D DUP2 DUP11 PUSH1 0x0 PUSH2 0x2BBD JUMP JUMPDEST PUSH2 0x1C89 DUP2 DUP11 PUSH1 0x1 PUSH2 0x2BBD JUMP JUMPDEST POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND PUSH2 0x1CDA JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0xD PUSH1 0x24 DUP3 ADD MSTORE PUSH13 0x24A72B20A624A22FA7ABA722A9 PUSH1 0x99 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xD58 JUMP JUMPDEST DUP4 TIMESTAMP GT ISZERO PUSH2 0x1CFA JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xD58 SWAP1 PUSH2 0x5011 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 DUP2 AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x44 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SLOAD PUSH1 0x43 SLOAD DUP3 MLOAD PUSH32 0x6E71EDAE12B1B97F4D1F60370FEF10105FA2FAAE0126114A169C64845D6126C9 DUP2 DUP7 ADD MSTORE DUP1 DUP5 ADD SWAP7 SWAP1 SWAP7 MSTORE SWAP6 DUP13 AND PUSH1 0x60 DUP7 ADD MSTORE PUSH1 0x80 DUP6 ADD DUP12 SWAP1 MSTORE PUSH1 0xA0 DUP6 ADD DUP2 SWAP1 MSTORE PUSH1 0xC0 DUP1 DUP7 ADD DUP12 SWAP1 MSTORE DUP3 MLOAD DUP1 DUP8 SUB SWAP1 SWAP2 ADD DUP2 MSTORE PUSH1 0xE0 DUP7 ADD SWAP1 SWAP3 MSTORE DUP2 MLOAD SWAP2 SWAP1 SWAP3 ADD KECCAK256 SWAP1 SWAP4 SWAP2 SWAP3 PUSH2 0x1D91 SWAP3 SWAP2 SWAP1 PUSH2 0x100 ADD PUSH2 0x4FB2 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F NOT DUP2 DUP5 SUB ADD DUP2 MSTORE DUP3 DUP3 MSTORE DUP1 MLOAD PUSH1 0x20 SWAP2 DUP3 ADD KECCAK256 PUSH1 0x0 DUP5 MSTORE SWAP1 DUP4 ADD DUP1 DUP4 MSTORE DUP2 SWAP1 MSTORE PUSH1 0xFF DUP9 AND SWAP2 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x60 DUP3 ADD DUP7 SWAP1 MSTORE PUSH1 0x80 DUP3 ADD DUP6 SWAP1 MSTORE SWAP2 POP 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 0x1DF9 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP PUSH1 0x20 PUSH1 0x40 MLOAD SUB MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP10 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x1E33 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xD58 SWAP1 PUSH2 0x4FCD JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP10 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x44 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH1 0x1 DUP4 ADD SWAP1 SSTORE PUSH2 0x1C89 DUP10 DUP10 DUP10 PUSH2 0x2320 JUMP JUMPDEST PUSH2 0x1074 CALLER DUP4 DUP4 PUSH2 0x2BBD 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 0x1E9D CALLER DUP5 DUP5 PUSH2 0x27C5 JUMP JUMPDEST POP PUSH2 0x1064 CALLER DUP5 DUP4 PUSH2 0x2444 JUMP JUMPDEST PUSH1 0x0 PUSH32 0x10D8D059343739EFCE7DAD10D09F0806DA52B252B3E6A7951920D2D6EC4102E5 DUP9 DUP9 PUSH1 0x1 DUP2 GT ISZERO PUSH2 0x1EDF JUMPI PUSH2 0x1EDF PUSH2 0x503D JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x20 DUP2 ADD SWAP5 SWAP1 SWAP5 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP3 AND SWAP2 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 DUP2 ADD DUP8 SWAP1 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 PUSH1 0x43 SLOAD DUP3 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x1F42 SWAP3 SWAP2 SWAP1 PUSH2 0x4FB2 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F NOT DUP2 DUP5 SUB ADD DUP2 MSTORE DUP3 DUP3 MSTORE DUP1 MLOAD PUSH1 0x20 SWAP2 DUP3 ADD KECCAK256 PUSH1 0x0 DUP1 DUP6 MSTORE SWAP2 DUP5 ADD DUP1 DUP5 MSTORE DUP2 SWAP1 MSTORE PUSH1 0xFF DUP10 AND SWAP3 DUP5 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x60 DUP4 ADD DUP8 SWAP1 MSTORE PUSH1 0x80 DUP4 ADD DUP7 SWAP1 MSTORE SWAP1 SWAP3 POP SWAP1 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 0x1FAD 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 0x1FE0 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xD58 SWAP1 PUSH2 0x4FCD JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x44 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD SWAP2 PUSH2 0x2004 DUP4 PUSH2 0x4FF8 JUMP JUMPDEST SWAP2 SWAP1 POP SSTORE DUP9 EQ PUSH2 0x2046 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0xD PUSH1 0x24 DUP3 ADD MSTORE PUSH13 0x494E56414C49445F4E4F4E4345 PUSH1 0x98 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xD58 JUMP JUMPDEST DUP7 TIMESTAMP GT ISZERO PUSH2 0x2066 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xD58 SWAP1 PUSH2 0x5011 JUMP JUMPDEST PUSH2 0x2071 DUP2 DUP12 DUP12 PUSH2 0x2BBD JUMP JUMPDEST POP POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x46 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x20E5 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 0x43414C4C45525F4E4F545F50454E44494E475F524F4C455F41444D494E000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xD58 JUMP JUMPDEST PUSH1 0x0 DUP3 DUP2 MSTORE PUSH1 0x45 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 DUP1 SLOAD CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT SWAP2 DUP3 AND DUP2 OR SWAP1 SWAP3 SSTORE PUSH1 0x46 DUP5 MSTORE SWAP4 DUP3 SWAP1 KECCAK256 DUP1 SLOAD SWAP1 SWAP5 AND SWAP1 SWAP4 SSTORE MLOAD DUP5 DUP2 MSTORE PUSH32 0x83A9DDAD961DCB7C6894C9585A16FF7792C2EC8281256A3CC7303AE830152DCF SWAP2 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 ISZERO DUP1 PUSH2 0x215B JUMPI POP DUP2 ISZERO JUMPDEST ISZERO PUSH2 0x2168 JUMPI POP PUSH1 0x0 PUSH2 0xF54 JUMP JUMPDEST PUSH2 0x2174 DUP3 PUSH1 0x0 NOT PUSH2 0x4F58 JUMP JUMPDEST DUP4 GT ISZERO PUSH2 0x21C3 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 0x4D4154485F4D554C5449504C49434154494F4E5F4F564552464C4F5700000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xD58 JUMP JUMPDEST PUSH2 0x2710 PUSH2 0x21D0 DUP4 DUP6 PUSH2 0x4F41 JUMP JUMPDEST PUSH2 0x10C2 SWAP2 SWAP1 PUSH2 0x4F58 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x10C2 DUP4 PUSH1 0x1 DUP2 PUSH2 0x21F5 PUSH8 0xDE0B6B3A7640000 DUP8 PUSH2 0x4F41 JUMP JUMPDEST PUSH2 0x21FF SWAP2 SWAP1 PUSH2 0x4F2E JUMP JUMPDEST PUSH2 0x2209 SWAP2 SWAP1 PUSH2 0x4EAA JUMP JUMPDEST PUSH2 0x2213 SWAP2 SWAP1 PUSH2 0x4F58 JUMP JUMPDEST PUSH2 0x3456 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH2 0x222C NUMBER PUSH2 0x34C3 JUMP JUMPDEST PUSH5 0xFFFFFFFFFF SWAP1 DUP2 AND DUP3 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xD8 SHL SUB DUP1 DUP6 AND PUSH1 0x20 SWAP4 DUP5 ADD MSTORE PUSH1 0x51 DUP1 SLOAD PUSH4 0xFFFFFFFF PUSH1 0x1 PUSH1 0xE0 SHL SWAP2 DUP3 SWAP1 DIV DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x52 DUP8 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP8 MLOAD SWAP8 SWAP1 SWAP7 ADD MLOAD SWAP1 SWAP4 AND PUSH1 0x1 PUSH1 0x28 SHL MUL SWAP6 SWAP1 SWAP4 AND SWAP5 SWAP1 SWAP5 OR SWAP1 SWAP3 SSTORE DUP3 SLOAD PUSH1 0x1C SWAP3 PUSH2 0x2296 SWAP3 SWAP1 SWAP2 DIV AND PUSH2 0x5053 JUMP JUMPDEST SWAP2 SWAP1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH4 0xFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH4 0xFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH2 0x1130 DUP2 PUSH2 0x3529 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 0x1064 SWAP1 DUP5 SWAP1 PUSH4 0xA9059CBB PUSH1 0xE0 SHL 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 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT SWAP1 SWAP4 AND SWAP3 SWAP1 SWAP3 OR SWAP1 SWAP2 MSTORE PUSH2 0x35C5 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x2382 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 PUSH4 0x72657373 PUSH1 0xE0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0xD58 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x23E3 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 PUSH2 0x7373 PUSH1 0xF0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0xD58 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 DUP1 PUSH1 0x0 SUB PUSH2 0x2464 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xD58 SWAP1 PUSH2 0x5078 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3E PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 DUP3 MLOAD DUP1 DUP5 ADD SWAP1 SWAP4 MSTORE SLOAD PUSH5 0xFFFFFFFFFF DUP2 AND DUP4 MSTORE PUSH1 0x1 PUSH1 0x28 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0xD8 SHL SUB AND SWAP1 DUP3 ADD MSTORE PUSH1 0x51 SLOAD PUSH1 0x1 PUSH1 0xD8 SHL SWAP1 DIV PUSH1 0xFF AND PUSH2 0x25A4 JUMPI PUSH1 0x4F SLOAD DUP2 MLOAD PUSH2 0x24CE SWAP2 SWAP1 PUSH5 0xFFFFFFFFFF AND PUSH2 0x4F2E JUMP JUMPDEST TIMESTAMP LT ISZERO PUSH2 0x2515 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 PUSH21 0x24A729AAA32324A1A4A2A72A2FA1A7A7A62227ABA7 PUSH1 0x59 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xD58 JUMP JUMPDEST PUSH1 0x4F SLOAD DUP2 MLOAD PUSH32 0x0 SWAP2 PUSH2 0x254C SWAP2 PUSH5 0xFFFFFFFFFF AND PUSH2 0x4F2E JUMP JUMPDEST PUSH2 0x2556 SWAP1 TIMESTAMP PUSH2 0x4EAA JUMP JUMPDEST GT ISZERO PUSH2 0x25A4 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 0x554E5354414B455F57494E444F575F46494E4953484544000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xD58 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x25AF DUP6 PUSH2 0x1389 JUMP JUMPDEST PUSH1 0x51 SLOAD SWAP1 SWAP2 POP PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0xD8 SHL SWAP1 DIV PUSH1 0xFF AND PUSH2 0x25D9 JUMPI DUP3 PUSH1 0x20 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD8 SHL SUB AND PUSH2 0x25DB JUMP JUMPDEST DUP2 JUMPDEST SWAP1 POP DUP1 PUSH1 0x0 SUB PUSH2 0x262D 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 0x494E56414C49445F5A45524F5F4D41585F52454445454D41424C450000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xD58 JUMP JUMPDEST PUSH1 0x0 DUP2 DUP6 GT PUSH2 0x263C JUMPI DUP5 PUSH2 0x263E JUMP JUMPDEST DUP2 JUMPDEST SWAP1 POP PUSH2 0x264C DUP8 DUP5 PUSH1 0x1 PUSH2 0x3697 JUMP JUMPDEST POP PUSH1 0x0 PUSH2 0x2658 DUP3 PUSH2 0x1324 JUMP JUMPDEST SWAP1 POP PUSH2 0x2664 DUP9 DUP4 PUSH2 0x3746 JUMP JUMPDEST DUP5 MLOAD PUSH5 0xFFFFFFFFFF AND ISZERO PUSH2 0x2731 JUMPI DUP2 DUP6 PUSH1 0x20 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD8 SHL SUB AND PUSH2 0x268B SWAP2 SWAP1 PUSH2 0x4EAA JUMP JUMPDEST PUSH1 0x0 SUB PUSH2 0x26B0 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP9 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3E PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SSTORE PUSH2 0x2731 JUMP JUMPDEST PUSH2 0x26B9 DUP3 PUSH2 0x3884 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP10 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3E PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH2 0x26F5 SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xB8 SHL SUB AND SWAP1 PUSH1 0x1 PUSH1 0x28 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0xD8 SHL SUB AND PUSH2 0x50A5 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP10 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3E PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD8 SHL SUB SWAP3 SWAP1 SWAP3 AND PUSH1 0x1 PUSH1 0x28 SHL MUL PUSH5 0xFFFFFFFFFF SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMPDEST PUSH2 0x2765 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND DUP9 DUP4 PUSH2 0x22BD JUMP JUMPDEST DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP9 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x3F693FFF038BB8A046AA76D9516190AC7444F7D69CF952C4CBDC086FDEF2D6FC DUP4 DUP6 PUSH1 0x40 MLOAD PUSH2 0x27B3 SWAP3 SWAP2 SWAP1 SWAP2 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x0 SUB PUSH2 0x27E7 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xD58 SWAP1 PUSH2 0x5078 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x27FD DUP6 PUSH2 0x27F6 DUP8 PUSH2 0x1389 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3697 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP2 DUP5 GT PUSH2 0x280E JUMPI DUP4 PUSH2 0x2810 JUMP JUMPDEST DUP2 JUMPDEST SWAP1 POP DUP1 PUSH1 0x0 SUB PUSH2 0x2832 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xD58 SWAP1 PUSH2 0x5078 JUMP JUMPDEST PUSH2 0x283C DUP2 DUP4 PUSH2 0x4EAA JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP9 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3D PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SWAP2 SWAP1 SWAP2 SSTORE PUSH2 0x28A7 SWAP1 PUSH32 0x0 AND PUSH32 0x0 DUP8 DUP5 PUSH2 0x2B85 JUMP JUMPDEST DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x9310CCFCB8DE723F578A9E4282EA9F521F05AE40DC08F3068DFAD528A65EE3C7 DUP4 PUSH1 0x40 MLOAD PUSH2 0x28EC SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2909 DUP5 DUP5 PUSH2 0x1E67 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 NOT DUP2 EQ PUSH2 0x169F JUMPI DUP2 DUP2 LT ISZERO PUSH2 0x2964 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 0x45524332303A20696E73756666696369656E7420616C6C6F77616E6365000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xD58 JUMP JUMPDEST PUSH2 0x169F DUP5 DUP5 DUP5 DUP5 SUB PUSH2 0x2320 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x297C DUP5 PUSH2 0x1389 JUMP JUMPDEST SWAP1 POP PUSH2 0x298A DUP5 DUP3 PUSH1 0x1 PUSH2 0x3697 JUMP JUMPDEST POP DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x2A97 JUMPI PUSH1 0x0 PUSH2 0x29AF DUP5 PUSH2 0x1389 JUMP JUMPDEST SWAP1 POP PUSH2 0x29BD DUP5 DUP3 PUSH1 0x1 PUSH2 0x3697 JUMP JUMPDEST POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3E PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 DUP3 MLOAD DUP1 DUP5 ADD SWAP1 SWAP4 MSTORE SLOAD PUSH5 0xFFFFFFFFFF DUP2 AND DUP1 DUP5 MSTORE PUSH1 0x1 PUSH1 0x28 SHL SWAP1 SWAP2 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0xD8 SHL SUB AND SWAP2 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE ISZERO PUSH2 0x2A94 JUMPI DUP4 DUP4 SUB PUSH2 0x2A30 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3E PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SSTORE PUSH2 0x2A94 JUMP JUMPDEST PUSH1 0x20 DUP2 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD8 SHL SUB AND PUSH2 0x2A48 DUP6 DUP6 PUSH2 0x4EAA JUMP JUMPDEST LT ISZERO PUSH2 0x2A94 JUMPI PUSH2 0x2A58 DUP5 DUP5 PUSH2 0x4EAA JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3E PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD8 SHL SUB SWAP3 SWAP1 SWAP3 AND PUSH1 0x1 PUSH1 0x28 SHL MUL PUSH5 0xFFFFFFFFFF SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMPDEST POP POP JUMPDEST PUSH2 0x169F DUP5 DUP5 DUP5 PUSH2 0x38ED JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2AAD DUP3 PUSH2 0x1389 JUMP JUMPDEST SWAP1 POP DUP1 PUSH1 0x0 SUB PUSH2 0x2AFF 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 0x494E56414C49445F42414C414E43455F4F4E5F434F4F4C444F574E0000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xD58 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD DUP3 MSTORE PUSH5 0xFFFFFFFFFF TIMESTAMP DUP2 AND DUP3 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xD8 SHL SUB DUP1 DUP6 AND PUSH1 0x20 DUP1 DUP6 ADD SWAP2 DUP3 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP9 AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x3E SWAP1 SWAP3 MSTORE SWAP1 DUP7 SWAP1 KECCAK256 SWAP5 MLOAD SWAP2 MLOAD SWAP1 SWAP3 AND PUSH1 0x1 PUSH1 0x28 SHL MUL SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SWAP2 SSTORE SWAP1 MLOAD PUSH32 0x8A05F911D8AB7FC50FEC37EF4BA7F9BFCB1A3C191C81DCD824AD0946C4E20D65 SWAP1 PUSH2 0x2142 SWAP1 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 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 0x169F SWAP1 DUP6 SWAP1 PUSH4 0x23B872DD PUSH1 0xE0 SHL SWAP1 PUSH1 0x84 ADD PUSH2 0x22E9 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x2C07 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x11 PUSH1 0x24 DUP3 ADD MSTORE PUSH17 0x494E56414C49445F44454C454741544545 PUSH1 0x78 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xD58 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2C12 DUP3 PUSH2 0x2CBE JUMP JUMPDEST SWAP3 POP POP POP PUSH1 0x0 PUSH2 0x2C21 DUP6 PUSH2 0x1389 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x2C2F DUP7 DUP5 PUSH2 0x2CFD JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP7 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND SWAP2 DUP9 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE SWAP1 POP PUSH2 0x2C6B DUP2 DUP7 DUP5 DUP8 PUSH2 0x3A9C JUMP JUMPDEST DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xE8D51C8E11BD570DB1734C8EC775785330E77007FEED45C43B608EF33FF914BD DUP7 PUSH1 0x40 MLOAD PUSH2 0x2CAE SWAP2 SWAP1 PUSH2 0x50E6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP1 DUP1 DUP5 PUSH1 0x1 DUP2 GT ISZERO PUSH2 0x2CD5 JUMPI PUSH2 0x2CD5 PUSH2 0x503D JUMP JUMPDEST SUB PUSH2 0x2CEA JUMPI POP PUSH1 0x6 SWAP2 POP PUSH1 0x7 SWAP1 POP PUSH1 0x3F PUSH2 0x2CF6 JUMP JUMPDEST POP PUSH1 0x40 SWAP2 POP PUSH1 0x41 SWAP1 POP PUSH1 0x42 JUMPDEST SWAP2 SWAP4 SWAP1 SWAP3 POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP4 SWAP1 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD SWAP1 SWAP2 AND DUP1 PUSH2 0x10C2 JUMPI DUP4 SWAP2 POP POP PUSH2 0xF54 JUMP JUMPDEST PUSH1 0x51 SLOAD PUSH1 0x1 PUSH1 0xD8 SHL SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0x2D75 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 PUSH16 0x534C415348494E475F4F4E474F494E47 PUSH1 0x80 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xD58 JUMP JUMPDEST DUP1 PUSH1 0x0 SUB PUSH2 0x2D95 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xD58 SWAP1 PUSH2 0x5078 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2DA0 DUP4 PUSH2 0x1389 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x2DB8 DUP5 ADDRESS DUP5 PUSH2 0x2DB3 PUSH1 0x2 SLOAD SWAP1 JUMP JUMPDEST PUSH2 0x3CA0 JUMP JUMPDEST SWAP1 POP DUP1 ISZERO PUSH2 0x2E3B JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3D PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH2 0x2DE4 SWAP1 DUP3 SWAP1 PUSH2 0x4F2E JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x3D PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 SWAP4 SWAP1 SWAP4 SSTORE DUP1 MLOAD SWAP2 DUP3 MSTORE SWAP2 DUP2 ADD DUP4 SWAP1 MSTORE PUSH32 0x2468F9268C60AD90E2D49EDB0032C8A001E733AE888B3AB8E982EDF535BE1A76 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMPDEST PUSH1 0x0 PUSH2 0x2E46 DUP5 PUSH2 0x13A4 JUMP JUMPDEST SWAP1 POP PUSH2 0x2E7D PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND DUP8 ADDRESS DUP8 PUSH2 0x2B85 JUMP JUMPDEST PUSH2 0x2E87 DUP6 DUP3 PUSH2 0x3D61 JUMP JUMPDEST DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x6C86F3FD5118B3AA8BB4F389A617046DE0A3D3D477DE1A1673D227F802F616DC DUP7 DUP5 PUSH1 0x40 MLOAD PUSH2 0x2CAE SWAP3 SWAP2 SWAP1 SWAP2 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 ADD SWAP1 JUMP JUMPDEST PUSH2 0x2710 DUP2 LT PUSH2 0x2F26 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 0x494E56414C49445F534C415348494E475F50455243454E544147450000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xD58 JUMP JUMPDEST PUSH1 0x50 DUP2 SWAP1 SSTORE PUSH1 0x40 MLOAD DUP2 DUP2 MSTORE PUSH32 0xB79C2D6C7F5C95EEC9DC05AFFC0ED002620A4EC6D72B7B0744CC8638168C600A SWAP1 PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP JUMP JUMPDEST PUSH1 0x4F DUP2 SWAP1 SSTORE PUSH1 0x40 MLOAD DUP2 DUP2 MSTORE PUSH32 0xBBF67247B5C97564E30FFC0A355E71C006836DE7B9149E09E3D5D6054CB03355 SWAP1 PUSH1 0x20 ADD PUSH2 0x2F57 JUMP JUMPDEST PUSH1 0x0 DUP1 DUP1 JUMPDEST DUP4 MLOAD DUP2 LT ISZERO PUSH2 0x3092 JUMPI PUSH1 0x0 PUSH1 0x3C PUSH1 0x0 DUP7 DUP5 DUP2 MLOAD DUP2 LT PUSH2 0x2FBD JUMPI PUSH2 0x2FBD PUSH2 0x4F7A JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD DUP2 ADD MLOAD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP3 MSTORE DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x40 ADD PUSH1 0x0 SWAP1 DUP2 KECCAK256 PUSH1 0x1 DUP2 ADD SLOAD DUP2 SLOAD DUP9 MLOAD SWAP3 SWAP5 POP PUSH2 0x302B SWAP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB DUP1 DUP4 AND SWAP3 PUSH1 0x1 PUSH1 0x80 SHL SWAP1 DIV AND SWAP1 DUP11 SWAP1 DUP9 SWAP1 DUP2 LT PUSH2 0x301A JUMPI PUSH2 0x301A PUSH2 0x4F7A JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x40 ADD MLOAD PUSH2 0x3E2C JUMP JUMPDEST SWAP1 POP PUSH2 0x307C DUP7 DUP5 DUP2 MLOAD DUP2 LT PUSH2 0x3042 JUMPI PUSH2 0x3042 PUSH2 0x4F7A JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x20 ADD MLOAD DUP3 DUP5 PUSH1 0x2 ADD PUSH1 0x0 DUP12 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD PUSH2 0x3F37 JUMP JUMPDEST PUSH2 0x3086 SWAP1 DUP6 PUSH2 0x4F2E JUMP JUMPDEST SWAP4 POP POP POP PUSH1 0x1 ADD PUSH2 0x2F9C JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x313D 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 0x5245574152445F544F4B454E5F49535F4E4F545F5354414B45445F544F4B454E PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xD58 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3153 DUP6 PUSH2 0x314C DUP8 PUSH2 0x1389 JUMP JUMPDEST PUSH1 0x1 PUSH2 0x3697 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP2 DUP5 GT PUSH2 0x3164 JUMPI DUP4 PUSH2 0x3166 JUMP JUMPDEST DUP2 JUMPDEST SWAP1 POP DUP1 ISZERO PUSH2 0x1A56 JUMPI PUSH2 0x3179 DUP7 ADDRESS DUP4 PUSH2 0x27C5 JUMP JUMPDEST POP PUSH2 0x1A56 ADDRESS DUP7 DUP4 PUSH2 0x2D28 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x3 DUP1 DUP3 MSTORE PUSH1 0x80 DUP3 ADD SWAP1 SWAP3 MSTORE PUSH1 0x0 SWAP2 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 0x319D JUMPI SWAP1 POP POP SWAP1 POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE PUSH1 0x20 ADD DUP8 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 MSTORE POP DUP2 PUSH1 0x0 DUP2 MLOAD DUP2 LT PUSH2 0x31F8 JUMPI PUSH2 0x31F8 PUSH2 0x4F7A JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 SWAP1 MSTORE POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x1 DUP2 MSTORE PUSH1 0x20 ADD DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 MSTORE POP DUP2 PUSH1 0x1 DUP2 MLOAD DUP2 LT PUSH2 0x3235 JUMPI PUSH2 0x3235 PUSH2 0x4F7A JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 SWAP1 MSTORE POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x2 DUP2 MSTORE PUSH1 0x20 ADD DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 MSTORE POP DUP2 PUSH1 0x2 DUP2 MLOAD DUP2 LT PUSH2 0x3272 JUMPI PUSH2 0x3272 PUSH2 0x4F7A JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 SWAP1 MSTORE POP PUSH2 0x3286 DUP2 PUSH2 0x3F63 JUMP JUMPDEST PUSH2 0x328F DUP4 PUSH2 0x2ED5 JUMP JUMPDEST PUSH2 0x3298 DUP3 PUSH2 0x2F62 JUMP JUMPDEST PUSH2 0x1478 PUSH8 0xDE0B6B3A7640000 PUSH2 0x2218 JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP2 MLOAD DUP2 LT ISZERO PUSH2 0x1074 JUMPI PUSH1 0x0 PUSH1 0x3C PUSH1 0x0 DUP5 DUP5 DUP2 MLOAD DUP2 LT PUSH2 0x32CD JUMPI PUSH2 0x32CD PUSH2 0x4F7A JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x40 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SWAP1 POP PUSH2 0x3340 DUP4 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x3310 JUMPI PUSH2 0x3310 PUSH2 0x4F7A JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x40 ADD MLOAD DUP3 DUP6 DUP6 DUP2 MLOAD DUP2 LT PUSH2 0x332F JUMPI PUSH2 0x332F PUSH2 0x4F7A JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x20 ADD MLOAD PUSH2 0x4135 JUMP JUMPDEST POP DUP3 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x3353 JUMPI PUSH2 0x3353 PUSH2 0x4F7A JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD MLOAD MLOAD DUP2 SLOAD PUSH16 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB SWAP1 SWAP2 AND OR DUP2 SSTORE DUP3 MLOAD DUP4 SWAP1 DUP4 SWAP1 DUP2 LT PUSH2 0x3396 JUMPI PUSH2 0x3396 PUSH2 0x4F7A JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x40 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x87FA03892A0556CB6B8F97E6D533A150D4D55FCBF275FFF5FA003FA636BCC7FA DUP5 DUP5 DUP2 MLOAD DUP2 LT PUSH2 0x33DE JUMPI PUSH2 0x33DE PUSH2 0x4F7A JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD DUP2 ADD MLOAD MLOAD PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP PUSH1 0x1 ADD PUSH2 0x32AC JUMP JUMPDEST PUSH1 0x51 SLOAD PUSH1 0x0 SWAP1 PUSH2 0x342D SWAP1 PUSH1 0x52 SWAP1 PUSH1 0x1 PUSH1 0xE0 SHL SWAP1 DIV PUSH4 0xFFFFFFFF AND DUP5 PUSH2 0x41ED JUMP JUMPDEST PUSH8 0xDE0B6B3A7640000 PUSH2 0x3442 DUP8 DUP8 DUP8 DUP8 PUSH2 0x42FA JUMP JUMPDEST PUSH2 0x344C SWAP2 SWAP1 PUSH2 0x4F41 JUMP JUMPDEST PUSH2 0x1A56 SWAP2 SWAP1 PUSH2 0x4F58 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xD8 SHL SUB DUP3 GT ISZERO PUSH2 0x34BF 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 PUSH7 0x31362062697473 PUSH1 0xC8 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0xD58 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH5 0xFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x34BF 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 0x53616665436173743A2076616C756520646F65736E27742066697420696E2034 PUSH1 0x44 DUP3 ADD MSTORE PUSH6 0x302062697473 PUSH1 0xD0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0xD58 JUMP JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xD8 SHL SUB AND PUSH1 0x0 SUB PUSH2 0x3577 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 PUSH18 0x5A45524F5F45584348414E47455F52415445 PUSH1 0x70 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xD58 JUMP JUMPDEST PUSH1 0x51 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD8 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xD8 SHL SUB DUP4 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH32 0xA9C433F9734BAA3CF48B209454BB0ACE054E191F677BA50E74B696C0D35EF262 SWAP1 PUSH1 0x20 ADD PUSH2 0x2F57 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x361A 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 0x43D4 SWAP1 SWAP3 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST DUP1 MLOAD SWAP1 SWAP2 POP ISZERO PUSH2 0x1064 JUMPI DUP1 DUP1 PUSH1 0x20 ADD SWAP1 MLOAD DUP2 ADD SWAP1 PUSH2 0x3638 SWAP2 SWAP1 PUSH2 0x4F90 JUMP JUMPDEST PUSH2 0x1064 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 PUSH10 0x1BDD081CDD58D8D95959 PUSH1 0xB2 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0xD58 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x36A9 DUP6 ADDRESS DUP7 PUSH2 0x2DB3 PUSH1 0x2 SLOAD SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3D PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD SWAP2 SWAP3 POP SWAP1 PUSH2 0x36D1 SWAP1 DUP4 SWAP1 PUSH2 0x4F2E JUMP JUMPDEST SWAP1 POP DUP2 ISZERO PUSH2 0x1A56 JUMPI DUP4 ISZERO PUSH2 0x36FB JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3D PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP2 SWAP1 SSTORE JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP9 AND DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 SWAP1 MSTORE PUSH32 0x2468F9268C60AD90E2D49EDB0032C8A001E733AE888B3AB8E982EDF535BE1A76 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x37A6 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 PUSH1 0x73 PUSH1 0xF8 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0xD58 JUMP JUMPDEST PUSH2 0x37B2 DUP3 PUSH1 0x0 DUP4 PUSH2 0x43E3 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 0x3826 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 PUSH2 0x6365 PUSH1 0xF0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0xD58 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 DUP7 DUP7 SUB SWAP1 SSTORE PUSH1 0x2 DUP1 SLOAD DUP8 SWAP1 SUB SWAP1 SSTORE MLOAD DUP6 DUP2 MSTORE SWAP2 SWAP3 SWAP2 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xB8 SHL SUB DUP3 GT ISZERO PUSH2 0x34BF 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 PUSH7 0x38342062697473 PUSH1 0xC8 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0xD58 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x3951 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 PUSH5 0x6472657373 PUSH1 0xD8 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0xD58 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x39B3 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 PUSH3 0x657373 PUSH1 0xE8 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0xD58 JUMP JUMPDEST PUSH2 0x39BE DUP4 DUP4 DUP4 PUSH2 0x43E3 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 0x3A36 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 PUSH6 0x616C616E6365 PUSH1 0xD0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0xD58 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 DUP2 AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 DUP8 DUP8 SUB SWAP1 SSTORE SWAP4 DUP8 AND DUP1 DUP4 MSTORE SWAP2 DUP5 SWAP1 KECCAK256 DUP1 SLOAD DUP8 ADD SWAP1 SSTORE SWAP3 MLOAD DUP6 DUP2 MSTORE SWAP1 SWAP3 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH2 0x169F JUMP JUMPDEST DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SUB ISZERO PUSH2 0x169F JUMPI PUSH1 0x0 DUP1 PUSH2 0x3AC2 DUP4 PUSH2 0x2CBE JUMP JUMPDEST POP SWAP1 SWAP3 POP SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND ISZERO PUSH2 0x3BB3 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP3 SWAP1 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD DUP1 ISZERO PUSH2 0x3B42 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP9 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP6 SWAP1 MSTORE PUSH1 0x40 DUP2 KECCAK256 SWAP1 PUSH2 0x3B1A PUSH1 0x1 DUP5 PUSH2 0x4EAA JUMP JUMPDEST DUP2 MSTORE PUSH1 0x20 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x40 ADD PUSH1 0x0 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x80 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND SWAP2 POP PUSH2 0x3B4E JUMP JUMPDEST PUSH2 0x3B4B DUP9 PUSH2 0x1389 JUMP JUMPDEST SWAP2 POP JUMPDEST PUSH2 0x3B64 DUP5 DUP5 DUP11 DUP6 PUSH2 0x3B5F DUP12 DUP3 PUSH2 0x4EAA JUMP JUMPDEST PUSH2 0x4562 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP9 AND PUSH32 0xA0A19463EE116110C9B282012D9B65CC5522DC38A9520340CBAF3142E550127F PUSH2 0x3B99 DUP9 DUP6 PUSH2 0x4EAA JUMP JUMPDEST DUP8 PUSH1 0x40 MLOAD PUSH2 0x3BA8 SWAP3 SWAP2 SWAP1 PUSH2 0x50F4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND ISZERO PUSH2 0x1478 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP3 SWAP1 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD DUP1 ISZERO PUSH2 0x3C2D JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP6 SWAP1 MSTORE PUSH1 0x40 DUP2 KECCAK256 SWAP1 PUSH2 0x3C05 PUSH1 0x1 DUP5 PUSH2 0x4EAA JUMP JUMPDEST DUP2 MSTORE PUSH1 0x20 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x40 ADD PUSH1 0x0 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x80 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND SWAP2 POP PUSH2 0x3C39 JUMP JUMPDEST PUSH2 0x3C36 DUP8 PUSH2 0x1389 JUMP JUMPDEST SWAP2 POP JUMPDEST PUSH2 0x3C4A DUP5 DUP5 DUP10 DUP6 PUSH2 0x3B5F DUP12 DUP3 PUSH2 0x4F2E JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND PUSH32 0xA0A19463EE116110C9B282012D9B65CC5522DC38A9520340CBAF3142E550127F PUSH2 0x3C7F DUP9 DUP6 PUSH2 0x4F2E JUMP JUMPDEST DUP8 PUSH1 0x40 MLOAD PUSH2 0x3C8E SWAP3 SWAP2 SWAP1 PUSH2 0x50F4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP5 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3C PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 DUP9 AND DUP4 MSTORE PUSH1 0x2 DUP5 ADD SWAP1 SWAP2 MSTORE DUP2 KECCAK256 SLOAD SWAP1 SWAP2 SWAP1 DUP3 DUP1 PUSH2 0x3CDB DUP9 DUP6 DUP9 PUSH2 0x4135 JUMP JUMPDEST SWAP1 POP DUP1 DUP4 EQ PUSH2 0x3D55 JUMPI DUP7 ISZERO PUSH2 0x3CF8 JUMPI PUSH2 0x3CF5 DUP8 DUP3 DUP6 PUSH2 0x3F37 JUMP JUMPDEST SWAP2 POP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP11 AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x2 DUP8 ADD PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 DUP2 SWAP1 KECCAK256 DUP5 SWAP1 SSTORE MLOAD SWAP2 DUP11 AND SWAP2 PUSH32 0xBB123B5C06D5408BBEA3C4FEF481578175CFB432E3B482C6186F02ED9086585B SWAP1 PUSH2 0x3D4C SWAP1 DUP6 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 JUMPDEST POP SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x3DB7 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 0xD58 JUMP JUMPDEST PUSH2 0x3DC3 PUSH1 0x0 DUP4 DUP4 PUSH2 0x43E3 JUMP JUMPDEST DUP1 PUSH1 0x2 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x3DD5 SWAP2 SWAP1 PUSH2 0x4F2E JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 DUP1 SLOAD DUP7 ADD SWAP1 SSTORE MLOAD DUP5 DUP2 MSTORE PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x0 DUP4 ISZERO DUP1 PUSH2 0x3E39 JUMPI POP DUP2 ISZERO JUMPDEST DUP1 PUSH2 0x3E4C JUMPI POP TIMESTAMP DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND EQ JUMPDEST DUP1 PUSH2 0x3E80 JUMPI POP PUSH32 0x0 DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND LT ISZERO JUMPDEST ISZERO PUSH2 0x3E8C JUMPI POP DUP4 PUSH2 0x1381 JUMP JUMPDEST PUSH1 0x0 PUSH32 0x0 TIMESTAMP GT PUSH2 0x3EBB JUMPI TIMESTAMP PUSH2 0x3EDD JUMP JUMPDEST PUSH32 0x0 JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x3EF4 PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB DUP7 AND DUP4 PUSH2 0x4EAA JUMP JUMPDEST SWAP1 POP DUP7 DUP5 PUSH2 0x3F04 PUSH1 0x12 PUSH1 0xA PUSH2 0x51EF JUMP JUMPDEST PUSH2 0x3F0E DUP5 DUP11 PUSH2 0x4F41 JUMP JUMPDEST PUSH2 0x3F18 SWAP2 SWAP1 PUSH2 0x4F41 JUMP JUMPDEST PUSH2 0x3F22 SWAP2 SWAP1 PUSH2 0x4F58 JUMP JUMPDEST PUSH2 0x3F2C SWAP2 SWAP1 PUSH2 0x4F2E JUMP JUMPDEST SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3F45 PUSH1 0x12 PUSH1 0xA PUSH2 0x51EF JUMP JUMPDEST PUSH2 0x3F4F DUP4 DUP6 PUSH2 0x4EAA JUMP JUMPDEST PUSH2 0x3F59 SWAP1 DUP7 PUSH2 0x4F41 JUMP JUMPDEST PUSH2 0x10BF SWAP2 SWAP1 PUSH2 0x4F58 JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP2 MLOAD DUP2 LT ISZERO PUSH2 0x1074 JUMPI PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x45 PUSH1 0x0 DUP5 DUP5 DUP2 MLOAD DUP2 LT PUSH2 0x3F90 JUMPI PUSH2 0x3F90 PUSH2 0x4F7A JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD DUP2 ADD MLOAD MLOAD DUP3 MSTORE DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x40 ADD PUSH1 0x0 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ DUP1 ISZERO PUSH2 0x3FF2 JUMPI POP PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP3 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x3FDA JUMPI PUSH2 0x3FDA PUSH2 0x4F7A JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x20 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ ISZERO JUMPDEST PUSH2 0x403E 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 0x41444D494E5F43414E4E4F545F42455F494E495449414C495A45440000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xD58 JUMP JUMPDEST DUP2 DUP2 DUP2 MLOAD DUP2 LT PUSH2 0x4050 JUMPI PUSH2 0x4050 PUSH2 0x4F7A JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x20 ADD MLOAD PUSH1 0x45 PUSH1 0x0 DUP5 DUP5 DUP2 MLOAD DUP2 LT PUSH2 0x4072 JUMPI PUSH2 0x4072 PUSH2 0x4F7A JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x0 ADD MLOAD DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB MUL NOT AND SWAP1 DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND MUL OR SWAP1 SSTORE POP DUP2 DUP2 DUP2 MLOAD DUP2 LT PUSH2 0x40C2 JUMPI PUSH2 0x40C2 PUSH2 0x4F7A JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x20 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x83A9DDAD961DCB7C6894C9585A16FF7792C2EC8281256A3CC7303AE830152DCF DUP4 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x410A JUMPI PUSH2 0x410A PUSH2 0x4F7A JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x0 ADD MLOAD PUSH1 0x40 MLOAD PUSH2 0x4125 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 PUSH1 0x1 ADD PUSH2 0x3F66 JUMP JUMPDEST PUSH1 0x1 DUP3 ADD SLOAD DUP3 SLOAD PUSH1 0x0 SWAP2 SWAP1 PUSH1 0x1 PUSH1 0x80 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND TIMESTAMP DUP2 SWAP1 SUB PUSH2 0x4160 JUMPI POP SWAP1 POP PUSH2 0x10C2 JUMP JUMPDEST DUP5 SLOAD PUSH1 0x0 SWAP1 PUSH2 0x417B SWAP1 DUP5 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND DUP5 DUP9 PUSH2 0x3E2C JUMP JUMPDEST SWAP1 POP DUP3 DUP2 EQ PUSH2 0x41CA JUMPI PUSH1 0x1 DUP7 ADD DUP2 SWAP1 SSTORE PUSH1 0x40 MLOAD DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP9 AND SWAP1 PUSH32 0x5777CA300DFE5BEAD41006FBCE4389794DBC0ED8D6CCCEBFAF94630AA04184BC SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 JUMPDEST DUP6 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB TIMESTAMP DUP2 AND PUSH1 0x1 PUSH1 0x80 SHL MUL SWAP2 AND OR DUP7 SSTORE SWAP3 POP POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 NOT DUP3 ADD PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP5 SWAP1 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD PUSH5 0xFFFFFFFFFF AND DUP3 LT PUSH2 0x4238 JUMPI POP PUSH1 0x0 NOT DUP3 ADD PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP5 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x28 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0xD8 SHL SUB AND PUSH2 0x10C2 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x0 NOT DUP5 ADD JUMPDEST DUP2 DUP2 GT ISZERO PUSH2 0x42D1 JUMPI PUSH1 0x2 DUP3 DUP3 SUB DIV DUP2 SUB PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x20 DUP9 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 DUP3 MLOAD DUP1 DUP5 ADD SWAP1 SWAP4 MSTORE SLOAD PUSH5 0xFFFFFFFFFF DUP2 AND DUP1 DUP5 MSTORE PUSH1 0x1 PUSH1 0x28 SHL SWAP1 SWAP2 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0xD8 SHL SUB AND SWAP2 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE DUP7 SWAP1 SUB PUSH2 0x42AB JUMPI PUSH1 0x20 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD8 SHL SUB AND SWAP4 POP PUSH2 0x10C2 SWAP3 POP POP POP JUMP JUMPDEST DUP1 MLOAD PUSH5 0xFFFFFFFFFF AND DUP7 GT ISZERO PUSH2 0x42C3 JUMPI DUP2 SWAP4 POP PUSH2 0x42CA JUMP JUMPDEST PUSH1 0x1 DUP3 SUB SWAP3 POP JUMPDEST POP POP PUSH2 0x4240 JUMP JUMPDEST POP PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 SWAP5 SWAP1 SWAP5 MSTORE POP POP PUSH1 0x40 SWAP1 SWAP2 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x28 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0xD8 SHL SUB AND SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 NUMBER DUP3 GT ISZERO PUSH2 0x4343 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 PUSH20 0x24A72B20A624A22FA12627A1A5AFA72AA6A122A9 PUSH1 0x61 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xD58 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP6 SWAP1 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD SWAP1 DUP2 SWAP1 SUB PUSH2 0x4375 JUMPI PUSH2 0x436D DUP5 PUSH2 0x1389 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x1381 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP8 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 DUP4 DUP1 MSTORE SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND DUP4 LT ISZERO PUSH2 0x43B1 JUMPI PUSH1 0x0 SWAP2 POP POP PUSH2 0x1381 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP8 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH2 0x1AC5 SWAP1 DUP3 DUP6 PUSH2 0x4678 JUMP JUMPDEST PUSH1 0x60 PUSH2 0x10BF DUP5 DUP5 PUSH1 0x0 DUP6 PUSH2 0x4784 JUMP JUMPDEST PUSH1 0x53 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP1 ISZERO PUSH2 0x44BA JUMPI DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x5B9C4CF1 DUP6 DUP6 PUSH2 0x440F DUP9 PUSH2 0x1389 JUMP JUMPDEST PUSH2 0x4418 DUP9 PUSH2 0x1389 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT PUSH1 0xE0 DUP8 SWAP1 SHL AND DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP5 DUP6 AND PUSH1 0x4 DUP3 ADD MSTORE SWAP4 SWAP1 SWAP3 AND PUSH1 0x24 DUP5 ADD MSTORE PUSH1 0x44 DUP4 ADD MSTORE PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 DUP2 ADD DUP6 SWAP1 MSTORE PUSH1 0xA4 ADD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x4473 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x4484 JUMPI POP PUSH1 0x1 JUMPDEST PUSH2 0x44BA JUMPI RETURNDATASIZE DUP1 DUP1 ISZERO PUSH2 0x44B2 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 0x44B7 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP POP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP6 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3F PUSH1 0x20 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 SLOAD DUP7 DUP5 AND DUP4 MSTORE SWAP2 KECCAK256 SLOAD SWAP1 DUP3 AND SWAP2 AND DUP2 PUSH2 0x44EB JUMPI DUP6 SWAP2 POP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x44FC JUMPI POP DUP4 JUMPDEST PUSH2 0x4509 DUP3 DUP3 DUP7 PUSH1 0x0 PUSH2 0x3A9C JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP8 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x42 PUSH1 0x20 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 SLOAD DUP9 DUP5 AND DUP4 MSTORE SWAP2 KECCAK256 SLOAD SWAP1 DUP3 AND SWAP2 AND DUP2 PUSH2 0x453A JUMPI DUP8 SWAP2 POP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x454B JUMPI POP DUP6 JUMPDEST PUSH2 0x4558 DUP3 DUP3 DUP9 PUSH1 0x1 PUSH2 0x3A9C JUMP JUMPDEST POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP6 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SLOAD SWAP2 DUP9 SWAP1 MSTORE SWAP1 SWAP2 KECCAK256 NUMBER SWAP2 SWAP1 DUP2 ISZERO DUP1 ISZERO SWAP1 PUSH2 0x45C4 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB DUP4 AND DUP2 PUSH1 0x0 PUSH2 0x45A8 PUSH1 0x1 DUP7 PUSH2 0x4EAA JUMP JUMPDEST DUP2 MSTORE PUSH1 0x20 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x40 ADD PUSH1 0x0 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND EQ JUMPDEST ISZERO PUSH2 0x4608 JUMPI DUP4 DUP2 PUSH1 0x0 PUSH2 0x45D8 PUSH1 0x1 DUP7 PUSH2 0x4EAA JUMP JUMPDEST DUP2 MSTORE PUSH1 0x20 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x40 ADD PUSH1 0x0 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB SWAP3 DUP4 AND PUSH1 0x1 PUSH1 0x80 SHL MUL SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE PUSH2 0x4558 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD DUP3 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB DUP1 DUP7 AND DUP3 MSTORE DUP7 DUP2 AND PUSH1 0x20 DUP1 DUP5 ADD SWAP2 DUP3 MSTORE PUSH1 0x0 DUP8 DUP2 MSTORE SWAP1 DUP7 SWAP1 MSTORE SWAP4 SWAP1 SWAP4 KECCAK256 SWAP2 MLOAD SWAP3 MLOAD DUP2 AND PUSH1 0x1 PUSH1 0x80 SHL MUL SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE PUSH2 0x4655 DUP3 PUSH1 0x1 PUSH2 0x4F2E JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP10 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SSTORE POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 NOT DUP3 ADD PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP5 SWAP1 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND DUP3 LT PUSH2 0x46C5 JUMPI POP PUSH1 0x0 NOT DUP3 ADD PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP5 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x80 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND PUSH2 0x10C2 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x0 NOT DUP5 ADD JUMPDEST DUP2 DUP2 GT ISZERO PUSH2 0x475B JUMPI PUSH1 0x2 DUP3 DUP3 SUB DIV DUP2 SUB PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x20 DUP9 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 DUP3 MLOAD DUP1 DUP5 ADD SWAP1 SWAP4 MSTORE SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB DUP1 DUP3 AND DUP1 DUP6 MSTORE PUSH1 0x1 PUSH1 0x80 SHL SWAP1 SWAP3 DIV AND SWAP2 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE DUP7 SWAP1 SUB PUSH2 0x4733 JUMPI PUSH1 0x20 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND SWAP4 POP PUSH2 0x10C2 SWAP3 POP POP POP JUMP JUMPDEST DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND DUP7 GT ISZERO PUSH2 0x474D JUMPI DUP2 SWAP4 POP PUSH2 0x4754 JUMP JUMPDEST PUSH1 0x1 DUP3 SUB SWAP3 POP JUMPDEST POP POP PUSH2 0x46CD JUMP JUMPDEST POP PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 SWAP5 SWAP1 SWAP5 MSTORE POP POP PUSH1 0x40 SWAP1 SWAP2 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x80 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 DUP3 SELFBALANCE LT ISZERO PUSH2 0x47E5 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 PUSH6 0x1C8818D85B1B PUSH1 0xD2 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0xD58 JUMP JUMPDEST PUSH1 0x0 DUP1 DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP6 DUP8 PUSH1 0x40 MLOAD PUSH2 0x4801 SWAP2 SWAP1 PUSH2 0x51FB 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 0x483E 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 0x4843 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP SWAP2 POP SWAP2 POP PUSH2 0x3F2C DUP8 DUP4 DUP4 DUP8 PUSH1 0x60 DUP4 ISZERO PUSH2 0x48BE JUMPI DUP3 MLOAD PUSH1 0x0 SUB PUSH2 0x48B7 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND EXTCODESIZE PUSH2 0x48B7 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 0xD58 JUMP JUMPDEST POP DUP2 PUSH2 0x1381 JUMP JUMPDEST PUSH2 0x1381 DUP4 DUP4 DUP2 MLOAD ISZERO PUSH2 0x48D3 JUMPI DUP2 MLOAD DUP1 DUP4 PUSH1 0x20 ADD REVERT JUMPDEST DUP1 PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xD58 SWAP2 SWAP1 PUSH2 0x497E JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x1130 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x4915 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x4920 DUP2 PUSH2 0x48ED JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x4949 JUMPI DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH2 0x4931 JUMP JUMPDEST POP POP PUSH1 0x0 SWAP2 ADD MSTORE JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD DUP1 DUP5 MSTORE PUSH2 0x496A DUP2 PUSH1 0x20 DUP7 ADD PUSH1 0x20 DUP7 ADD PUSH2 0x492E JUMP JUMPDEST PUSH1 0x1F ADD PUSH1 0x1F NOT AND SWAP3 SWAP1 SWAP3 ADD PUSH1 0x20 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH1 0x0 PUSH2 0x10C2 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x4952 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x49A3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x10C2 DUP2 PUSH2 0x48ED JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x49C0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x49DC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x49E7 DUP2 PUSH2 0x48ED JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH2 0x49F7 DUP2 PUSH2 0x48ED JUMP JUMPDEST SWAP3 SWAP6 SWAP3 SWAP5 POP POP POP PUSH1 0x40 SWAP2 SWAP1 SWAP2 ADD CALLDATALOAD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x4A1B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x4A26 DUP2 PUSH2 0x48ED JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x4A36 DUP2 PUSH2 0x48ED JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x2 DUP2 LT PUSH2 0x4A50 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x4A68 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH2 0x4A73 DUP2 PUSH2 0x48ED JUMP JUMPDEST SWAP2 POP PUSH2 0x4A81 PUSH1 0x20 DUP5 ADD PUSH2 0x4A41 JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0xFF DUP2 AND DUP2 EQ PUSH2 0x4A50 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0xC0 DUP8 DUP10 SUB SLT ISZERO PUSH2 0x4AB4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP7 CALLDATALOAD PUSH2 0x4ABF DUP2 PUSH2 0x48ED JUMP JUMPDEST SWAP6 POP PUSH1 0x20 DUP8 ADD CALLDATALOAD SWAP5 POP PUSH1 0x40 DUP8 ADD CALLDATALOAD SWAP4 POP PUSH2 0x4ADB PUSH1 0x60 DUP9 ADD PUSH2 0x4A8A JUMP JUMPDEST SWAP6 SWAP9 SWAP5 SWAP8 POP SWAP3 SWAP6 PUSH1 0x80 DUP2 ADD CALLDATALOAD SWAP5 PUSH1 0xA0 SWAP1 SWAP2 ADD CALLDATALOAD SWAP4 POP SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4B07 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH4 0xFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x10C2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x4B31 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP5 CALLDATALOAD PUSH2 0x4B3C DUP2 PUSH2 0x48ED JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD CALLDATALOAD PUSH2 0x4B4C DUP2 PUSH2 0x48ED JUMP JUMPDEST SWAP4 SWAP7 SWAP4 SWAP6 POP POP POP POP PUSH1 0x40 DUP3 ADD CALLDATALOAD SWAP2 PUSH1 0x60 ADD CALLDATALOAD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0xA0 DUP7 DUP9 SUB SLT ISZERO PUSH2 0x4B79 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP6 CALLDATALOAD PUSH2 0x4B84 DUP2 PUSH2 0x48ED JUMP JUMPDEST SWAP5 POP PUSH1 0x20 DUP7 ADD CALLDATALOAD PUSH2 0x4B94 DUP2 PUSH2 0x48ED JUMP JUMPDEST SWAP4 POP PUSH1 0x40 DUP7 ADD CALLDATALOAD PUSH2 0x4BA4 DUP2 PUSH2 0x48ED JUMP JUMPDEST SWAP5 SWAP8 SWAP4 SWAP7 POP SWAP4 SWAP5 PUSH1 0x60 DUP2 ADD CALLDATALOAD SWAP5 POP PUSH1 0x80 ADD CALLDATALOAD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x4BCF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH2 0x4A36 DUP2 PUSH2 0x48ED JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x60 DUP2 ADD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x4C1A JUMPI PUSH2 0x4C1A PUSH2 0x4BE1 JUMP JUMPDEST PUSH1 0x40 MSTORE SWAP1 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 0x4C49 JUMPI PUSH2 0x4C49 PUSH2 0x4BE1 JUMP JUMPDEST PUSH1 0x40 MSTORE SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4C63 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x4C7A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 ADD PUSH1 0x1F DUP2 ADD DUP5 SGT PUSH2 0x4C8B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x4CA5 JUMPI PUSH2 0x4CA5 PUSH2 0x4BE1 JUMP JUMPDEST PUSH2 0x4CB4 PUSH1 0x20 DUP3 PUSH1 0x5 SHL ADD PUSH2 0x4C20 JUMP JUMPDEST DUP1 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP2 POP PUSH1 0x20 PUSH1 0x60 DUP5 MUL DUP6 ADD ADD SWAP3 POP DUP7 DUP4 GT ISZERO PUSH2 0x4CD6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x20 DUP5 ADD SWAP4 POP JUMPDEST DUP3 DUP5 LT ISZERO PUSH2 0x1AC5 JUMPI PUSH1 0x60 DUP5 DUP9 SUB SLT ISZERO PUSH2 0x4CF5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x4CFD PUSH2 0x4BF7 JUMP JUMPDEST DUP5 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x4D14 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MSTORE PUSH1 0x20 DUP6 DUP2 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH1 0x40 DUP6 ADD CALLDATALOAD PUSH2 0x4D2E DUP2 PUSH2 0x48ED JUMP JUMPDEST PUSH1 0x40 DUP3 ADD MSTORE DUP3 MSTORE PUSH1 0x60 SWAP4 SWAP1 SWAP4 ADD SWAP3 PUSH1 0x20 SWAP1 SWAP2 ADD SWAP1 PUSH2 0x4CDD JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x4D5C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x4D67 DUP2 PUSH2 0x48ED JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD SWAP2 POP PUSH2 0x4D7C PUSH1 0x40 DUP6 ADD PUSH2 0x4A41 JUMP JUMPDEST 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 0x4DA0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP8 CALLDATALOAD PUSH2 0x4DAB DUP2 PUSH2 0x48ED JUMP JUMPDEST SWAP7 POP PUSH1 0x20 DUP9 ADD CALLDATALOAD PUSH2 0x4DBB DUP2 PUSH2 0x48ED JUMP JUMPDEST SWAP6 POP PUSH1 0x40 DUP9 ADD CALLDATALOAD SWAP5 POP PUSH1 0x60 DUP9 ADD CALLDATALOAD SWAP4 POP PUSH2 0x4DD7 PUSH1 0x80 DUP10 ADD PUSH2 0x4A8A JUMP 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 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x4E09 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP4 CALLDATALOAD PUSH2 0x4E14 DUP2 PUSH2 0x48ED JUMP JUMPDEST SWAP6 PUSH1 0x20 DUP6 ADD CALLDATALOAD SWAP6 POP PUSH1 0x40 SWAP1 SWAP5 ADD CALLDATALOAD SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0xE0 DUP9 DUP11 SUB SLT ISZERO PUSH2 0x4E44 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP8 CALLDATALOAD PUSH2 0x4E4F DUP2 PUSH2 0x48ED JUMP JUMPDEST SWAP7 POP PUSH2 0x4DBB PUSH1 0x20 DUP10 ADD PUSH2 0x4A41 JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE PUSH1 0x19 SWAP1 DUP3 ADD MSTORE PUSH32 0x43414C4C45525F4E4F545F534C415348494E475F41444D494E00000000000000 PUSH1 0x40 DUP3 ADD MSTORE PUSH1 0x60 ADD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST DUP2 DUP2 SUB DUP2 DUP2 GT ISZERO PUSH2 0xF54 JUMPI PUSH2 0xF54 PUSH2 0x4E94 JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0x4ED1 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x4EF1 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 0x20 DUP1 DUP3 MSTORE PUSH1 0x17 SWAP1 DUP3 ADD MSTORE PUSH32 0x43414C4C45525F4E4F545F434C41494D5F48454C504552000000000000000000 PUSH1 0x40 DUP3 ADD MSTORE PUSH1 0x60 ADD SWAP1 JUMP JUMPDEST DUP1 DUP3 ADD DUP1 DUP3 GT ISZERO PUSH2 0xF54 JUMPI PUSH2 0xF54 PUSH2 0x4E94 JUMP JUMPDEST DUP1 DUP3 MUL DUP2 ISZERO DUP3 DUP3 DIV DUP5 EQ OR PUSH2 0xF54 JUMPI PUSH2 0xF54 PUSH2 0x4E94 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x4F75 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 PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4FA2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0x10C2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x1901 PUSH1 0xF0 SHL DUP2 MSTORE PUSH1 0x2 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x22 DUP3 ADD MSTORE PUSH1 0x42 ADD SWAP1 JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE PUSH1 0x11 SWAP1 DUP3 ADD MSTORE PUSH17 0x494E56414C49445F5349474E4154555245 PUSH1 0x78 SHL PUSH1 0x40 DUP3 ADD MSTORE PUSH1 0x60 ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 DUP3 ADD PUSH2 0x500A JUMPI PUSH2 0x500A PUSH2 0x4E94 JUMP JUMPDEST POP PUSH1 0x1 ADD SWAP1 JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE PUSH1 0x12 SWAP1 DUP3 ADD MSTORE PUSH18 0x24A72B20A624A22FA2AC2824A920AA24A7A7 PUSH1 0x71 SHL PUSH1 0x40 DUP3 ADD MSTORE PUSH1 0x60 ADD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH4 0xFFFFFFFF DUP3 AND PUSH4 0xFFFFFFFF DUP2 SUB PUSH2 0x506F JUMPI PUSH2 0x506F PUSH2 0x4E94 JUMP JUMPDEST PUSH1 0x1 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE PUSH1 0x13 SWAP1 DUP3 ADD MSTORE PUSH19 0x1253959053125117D6915493D7D05353D55395 PUSH1 0x6A SHL PUSH1 0x40 DUP3 ADD MSTORE PUSH1 0x60 ADD SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xD8 SHL SUB DUP3 DUP2 AND DUP3 DUP3 AND SUB SWAP1 DUP2 GT ISZERO PUSH2 0xF54 JUMPI PUSH2 0xF54 PUSH2 0x4E94 JUMP JUMPDEST PUSH1 0x2 DUP2 LT PUSH2 0x50E2 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST SWAP1 MSTORE JUMP JUMPDEST PUSH1 0x20 DUP2 ADD PUSH2 0xF54 DUP3 DUP5 PUSH2 0x50C4 JUMP JUMPDEST DUP3 DUP2 MSTORE PUSH1 0x40 DUP2 ADD PUSH2 0x10C2 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x50C4 JUMP JUMPDEST PUSH1 0x1 DUP2 JUMPDEST PUSH1 0x1 DUP5 GT ISZERO PUSH2 0x5143 JUMPI DUP1 DUP6 DIV DUP2 GT ISZERO PUSH2 0x5127 JUMPI PUSH2 0x5127 PUSH2 0x4E94 JUMP JUMPDEST PUSH1 0x1 DUP5 AND ISZERO PUSH2 0x5135 JUMPI SWAP1 DUP2 MUL SWAP1 JUMPDEST PUSH1 0x1 SWAP4 SWAP1 SWAP4 SHR SWAP3 DUP1 MUL PUSH2 0x510C JUMP JUMPDEST SWAP4 POP SWAP4 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x515A JUMPI POP PUSH1 0x1 PUSH2 0xF54 JUMP JUMPDEST DUP2 PUSH2 0x5167 JUMPI POP PUSH1 0x0 PUSH2 0xF54 JUMP JUMPDEST DUP2 PUSH1 0x1 DUP2 EQ PUSH2 0x517D JUMPI PUSH1 0x2 DUP2 EQ PUSH2 0x5187 JUMPI PUSH2 0x51A3 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP PUSH2 0xF54 JUMP JUMPDEST PUSH1 0xFF DUP5 GT ISZERO PUSH2 0x5198 JUMPI PUSH2 0x5198 PUSH2 0x4E94 JUMP JUMPDEST POP POP PUSH1 0x1 DUP3 SHL PUSH2 0xF54 JUMP JUMPDEST POP PUSH1 0x20 DUP4 LT PUSH2 0x133 DUP4 LT AND PUSH1 0x4E DUP5 LT PUSH1 0xB DUP5 LT AND OR ISZERO PUSH2 0x51C6 JUMPI POP DUP2 DUP2 EXP PUSH2 0xF54 JUMP JUMPDEST PUSH2 0x51D3 PUSH1 0x0 NOT DUP5 DUP5 PUSH2 0x5108 JUMP JUMPDEST DUP1 PUSH1 0x0 NOT DIV DUP3 GT ISZERO PUSH2 0x51E7 JUMPI PUSH2 0x51E7 PUSH2 0x4E94 JUMP JUMPDEST MUL SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x10C2 DUP4 DUP4 PUSH2 0x514B JUMP JUMPDEST PUSH1 0x0 DUP3 MLOAD PUSH2 0x520D DUP2 DUP5 PUSH1 0x20 DUP8 ADD PUSH2 0x492E JUMP JUMPDEST SWAP2 SWAP1 SWAP2 ADD SWAP3 SWAP2 POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 CALLVALUE 0xCB MULMOD POP 0xB0 0xD4 SWAP2 XOR 0xBD MSTORE8 0xC4 PUSH16 0x37B2848F71BF75BB2F312219565B1A1D PUSH27 0x6EFC1664736F6C634300081B003300000000000000000000000000 ","sourceMap":"130302:6617:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;121016:767;;;;;;:::i;:::-;;:::i;:::-;;;668:25:1;;;656:2;641:18;121016:767:0;;;;;;;;18232:98;;;:::i;:::-;;;;;;;:::i;104053:60::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;-1:-1:-1;;;104053:60:0;;-1:-1:-1;;;;;104053:60:0;;;;;;;1914:12:1;1902:25;;;1884:44;;-1:-1:-1;;;;;1964:32:1;;;1959:2;1944:18;;1937:60;1857:18;104053:60:0;1712:291:1;20509:197:0;;;;;;:::i;:::-;;:::i;:::-;;;2173:14:1;;2166:22;2148:41;;2136:2;2121:18;20509:197:0;2008:187:1;112463:93:0;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2595:32:1;;;2577:51;;2565:2;2550:18;112463:93:0;2431:203:1;119527:152:0;;;;;;:::i;:::-;;:::i;:::-;;130650:53;;;;;-1:-1:-1;;;;;130650:53:0;;;19320:106;19407:12;;19320:106;;119345:145;;;;;;:::i;:::-;;:::i;119910:189::-;;;;;;:::i;:::-;;:::i;21268:286::-;;;;;;:::i;:::-;;:::i;118898:102::-;;;;;;:::i;:::-;;:::i;104786:153::-;;104832:107;104786:153;;103661:36;;;;;19169:91;19251:2;19169:91;;;3976:4:1;3964:17;;;3946:36;;3934:2;3919:18;19169:91:0;3804:184:1;64436:142:0;;;;;;:::i;:::-;-1:-1:-1;;;;;64548:13:0;;;64524:7;64548:13;;;:6;:13;;;;;;;;:25;;;;;:19;;;;:25;;;;64436:142;;;;;103822:39;;;;;104540:31;;;;;;21949:234;;;;;;:::i;:::-;;:::i;32075:121::-;;32119:77;32075:121;;121820:453;;;;;;:::i;:::-;;:::i;112718:107::-;;;;;;:::i;:::-;112778:7;112800:20;;;:14;:20;;;;;;-1:-1:-1;;;;;112800:20:0;;112718:107;131787:277;;;;;;:::i;:::-;;:::i;120813:166::-;;;;;;:::i;:::-;;:::i;114657:52::-;;114705:4;114657:52;;;;;-1:-1:-1;;;;;4843:32:1;;;4825:51;;4813:2;4798:18;114657:52:0;4679:203:1;42725:72:0;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;42725:72:0;;;;-1:-1:-1;;;42725:72:0;;;;;;;;;-1:-1:-1;;;;;5079:47:1;;;5061:66;;5163:47;;;;5158:2;5143:18;;5136:75;5034:18;42725:72:0;4887:330:1;32849:211:0;;;;;;:::i;:::-;;:::i;132935:117::-;133020:27;;-1:-1:-1;;;133020:27:0;;;;132935:117;;5396:10:1;5384:23;;;5366:42;;5354:2;5339:18;132935:117:0;5222:192:1;123015:96:0;123090:16;;123015:96;;114982:36;;;;;33171:291;;;;;;:::i;:::-;;:::i;19484:125::-;;;;;;:::i;:::-;;:::i;118405:138::-;;;;;;:::i;:::-;;:::i;132564:335::-;;;;;;:::i;:::-;;:::i;122476:154::-;;;;;;:::i;:::-;;:::i;104575:50::-;;104615:10;;;;;;;;;;;;;-1:-1:-1;;;104615:10:0;;;104575:50;;118760:101;;;:::i;122841:137::-;;;;;;:::i;:::-;;:::i;42801:57::-;;;;;;:::i;:::-;;;;;;;;;;;;;;103994:55;;;;;;:::i;:::-;;;;;;;;;;;;;;114509:44;;114552:1;114509:44;;105899:491;;;;;;:::i;:::-;;:::i;114713:49::-;;114758:4;114713:49;;133088:160;;;;;;:::i;:::-;-1:-1:-1;;;;;;;;;;;;;;;;;;133214:29:0;;;;;;:22;:29;;;;;;;;;133207:36;;;;;;;;;;;;;;-1:-1:-1;;;133207:36:0;;-1:-1:-1;;;;;133207:36:0;;;;;;133088:160;;;;;7648:13:1;;7663:12;7644:32;7626:51;;7737:4;7725:17;;;7719:24;-1:-1:-1;;;;;7715:50:1;7693:20;;;7686:80;;;;7599:18;133088:160:0;7406:366:1;57216:41:0;;;;;103951:38;;;;;132100:179;;;;;;:::i;:::-;;:::i;18443:102::-;;;:::i;34963:110::-;;;;;;:::i;:::-;;:::i;103701:36::-;;;;;119716:157;;;;;;:::i;:::-;;:::i;120389:246::-;;;;;;:::i;:::-;;:::i;114557:47::-;;114603:1;114557:47;;22670:427;;;;;;:::i;:::-;;:::i;131260:491::-;;;;;;:::i;:::-;;:::i;19805:189::-;;;;;;:::i;:::-;;:::i;31922:148::-;;31974:96;31922:148;;57308:36;;57342:2;57308:36;;113034:203;;;;;;:::i;:::-;;:::i;118580:143::-;;;;;;:::i;:::-;;:::i;122310:129::-;;;:::i;118013:355::-;;;;;;:::i;:::-;;:::i;33641:406::-;;;;;;:::i;:::-;;:::i;105005:42::-;;;;;;:::i;:::-;;;;;;;;;;;;;;132315:213;;;;;;:::i;:::-;;:::i;34157:424::-;;;;;;:::i;:::-;;:::i;43166:36::-;;;;;-1:-1:-1;;;;;43166:36:0;;;108928:736;;;;;;:::i;:::-;;:::i;57262:41::-;;;;;106427:849;;;;;;:::i;:::-;;:::i;114608:45::-;;114652:1;114608:45;;32553:157;;;;;;:::i;:::-;;:::i;20052:149::-;;;;;;:::i;:::-;;:::i;130708:86::-;130788:1;130708:86;;120672:104;120751:20;;-1:-1:-1;;;;;120751:20:0;120672:104;;120136:216;;;;;;:::i;:::-;;:::i;115561:32::-;;;;;-1:-1:-1;;;115561:32:0;;;;;;57349:43;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;57349:43:0;;;;-1:-1:-1;;;57349:43:0;;;;;;;;;;-1:-1:-1;;;;;14111:47:1;;;14093:66;;14195:47;;;;14190:2;14175:18;;14168:75;14259:18;;;14252:34;14081:2;14066:18;57349:43:0;13891:401:1;122667:137:0;122776:23;;122667:137;;107760:768;;;;;;:::i;:::-;;:::i;113388:190::-;;;;;;:::i;:::-;;:::i;121016:767::-;121129:7;115662:26;114552:1;115662:8;:26::i;:::-;-1:-1:-1;;;;;115648:40:0;:10;-1:-1:-1;;;;;115648:40:0;;115633:96;;;;-1:-1:-1;;;115633:96:0;;;;;;;:::i;:::-;;;;;;;;;121155:20:::1;::::0;-1:-1:-1;;;121155:20:0;::::1;;;121154:21;121146:63;;;::::0;-1:-1:-1;;;121146:63:0;;15764:2:1;121146:63:0::1;::::0;::::1;15746:21:1::0;15803:2;15783:18;;;15776:30;15842:31;15822:18;;;15815:59;15891:18;;121146:63:0::1;15562:353:1::0;121146:63:0::1;121232:1;121223:6;:10;121215:34;;;::::0;-1:-1:-1;;;121215:34:0;;16122:2:1;121215:34:0::1;::::0;::::1;16104:21:1::0;16161:2;16141:18;;;16134:30;-1:-1:-1;;;16180:18:1;;;16173:41;16231:18;;121215:34:0::1;15920:335:1::0;121215:34:0::1;121255:21;121279:13;19407:12:::0;;;19320:106;121279:13:::1;121255:37;;121298:15;121316:28;121330:13;121316;:28::i;:::-;121298:46;;121351:20;121374:43;121393:23;;121374:7;:18;;:43;;;;:::i;:::-;121351:66;;121437:12;121428:6;:21;121424:63;;;121468:12;121459:21;;121424:63;121520:11;121500:16;121510:6:::0;121500:7;:16:::1;:::i;:::-;:31;;121492:64;;;::::0;-1:-1:-1;;;121492:64:0;;16727:2:1;121492:64:0::1;::::0;::::1;16709:21:1::0;16766:2;16746:18;;;16739:30;-1:-1:-1;;;16785:18:1;;;16778:50;16845:18;;121492:64:0::1;16525:344:1::0;121492:64:0::1;121563:20;:27:::0;;-1:-1:-1;;;;121563:27:0::1;-1:-1:-1::0;;;121563:27:0::1;::::0;;121596:70:::1;121616:49;121633:16;121643:6:::0;121633:7;:16:::1;:::i;:::-;121651:13;121616:16;:49::i;:::-;121596:19;:70::i;:::-;121673:46;-1:-1:-1::0;;;;;121673:12:0::1;:25;121699:11:::0;121712:6;121673:25:::1;:46::i;:::-;121739:11;-1:-1:-1::0;;;;;121731:28:0::1;;121752:6;121731:28;;;;668:25:1::0;;656:2;641:18;;522:177;121731:28:0::1;;;;;;;;121772:6;121765:13;;;;;115735:1;121016:767:::0;;;;:::o;18232:98::-;18286:13;18318:5;18311:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18232:98;:::o;20509:197::-;20592:4;16050:10;20646:32;16050:10;20662:7;20671:6;20646:8;:32::i;:::-;-1:-1:-1;20695:4:0;;20509:197;-1:-1:-1;;;20509:197:0:o;112463:93::-;112516:7;112538:13;;;:7;:13;;;;;;-1:-1:-1;;;;;112538:13:0;;112463:93::o;119527:152::-;115957:27;114652:1;115957:8;:27::i;:::-;-1:-1:-1;;;;;115943:41:0;:10;-1:-1:-1;;;;;115943:41:0;;115928:95;;;;-1:-1:-1;;;115928:95:0;;;;;;;:::i;:::-;119649:25:::1;119657:4;119663:2;119667:6;119649:7;:25::i;:::-;119527:152:::0;;;:::o;119345:145::-;119454:31;119462:10;119474:2;119478:6;119454:7;:31::i;:::-;119345:145;;:::o;119910:189::-;120041:7;115957:27;114652:1;115957:8;:27::i;:::-;-1:-1:-1;;;;;115943:41:0;:10;-1:-1:-1;;;;;115943:41:0;;115928:95;;;;-1:-1:-1;;;115928:95:0;;;;;;;:::i;:::-;120063:31:::1;120077:4;120083:2;120087:6;120063:13;:31::i;:::-;120056:38;;116029:1;119910:189:::0;;;;;:::o;21268:286::-;21395:4;16050:10;21451:38;21467:4;16050:10;21482:6;21451:15;:38::i;:::-;21499:27;21509:4;21515:2;21519:6;21499:9;:27::i;:::-;-1:-1:-1;21543:4:0;;21268:286;-1:-1:-1;;;;21268:286:0:o;118898:102::-;115957:27;114652:1;115957:8;:27::i;:::-;-1:-1:-1;;;;;115943:41:0;:10;-1:-1:-1;;;;;115943:41:0;;115928:95;;;;-1:-1:-1;;;115928:95:0;;;;;;;:::i;:::-;118980:15:::1;118990:4;118980:9;:15::i;:::-;118898:102:::0;:::o;21949:234::-;22037:4;16050:10;22091:64;16050:10;22107:7;22144:10;22116:25;16050:10;22107:7;22116:9;:25::i;:::-;:38;;;;:::i;:::-;22091:8;:64::i;121820:453::-;121899:11;121889:6;:21;;121881:51;;;;-1:-1:-1;;;121881:51:0;;17943:2:1;121881:51:0;;;17925:21:1;17982:2;17962:18;;;17955:30;-1:-1:-1;;;18001:18:1;;;17994:47;18058:18;;121881:51:0;17741:341:1;121881:51:0;121938:21;121962:13;19407:12;;;19320:106;121962:13;121938:37;;122006:11;121989:13;:28;;121981:58;;;;-1:-1:-1;;;121981:58:0;;18289:2:1;121981:58:0;;;18271:21:1;18328:2;18308:18;;;18301:30;-1:-1:-1;;;18347:18:1;;;18340:47;18404:18;;121981:58:0;18087:341:1;121981:58:0;122045:14;122062:28;122076:13;122062;:28::i;:::-;122045:45;-1:-1:-1;122096:69:0;122116:48;122133:15;122142:6;122045:45;122133:15;:::i;:::-;122150:13;122116:16;:48::i;122096:69::-;122172:64;-1:-1:-1;;;;;122172:12:0;:29;122202:10;122222:4;122229:6;122172:29;:64::i;:::-;122247:21;;668:25:1;;;122247:21:0;;656:2:1;641:18;122247:21:0;;;;;;;121875:398;;121820:453;:::o;131787:277::-;131906:42;131892:10;:56;131884:65;;;;;;131973:12;:30;;-1:-1:-1;;;;;;131973:30:0;-1:-1:-1;;;;;131973:30:0;;;;;;;;132014:45;;;;-1:-1:-1;;132014:45:0;131787:277;:::o;120813:166::-;120954:20;;120898:7;;-1:-1:-1;;;;;120954:20:0;120923:27;120944:6;114758:4;120923:27;:::i;:::-;120922:52;;;;:::i;32849:211::-;32910:67;32926:10;32938:9;32949:27;32910:15;:67::i;:::-;32983:72;32999:10;33011:9;33022:32;32983:15;:72::i;33171:291::-;33297:7;33319:45;33368:40;33393:14;33368:24;:40::i;:::-;33314:94;;;;33422:35;33436:9;33447;33422:13;:35::i;:::-;33415:42;33171:291;-1:-1:-1;;;;33171:291:0:o;19484:125::-;-1:-1:-1;;;;;19584:18:0;19558:7;19584:18;;;;;;;;;;;;19484:125::o;118405:138::-;118496:20;;118464:7;;114758:4;;118487:29;;-1:-1:-1;;;;;118496:20:0;118487:6;:29;:::i;132564:335::-;132720:142;;-1:-1:-1;;;132720:142:0;;-1:-1:-1;;;;;19289:32:1;;;132720:142:0;;;19271:51:1;132794:4:0;19338:18:1;;;19331:60;19407:18;;;19400:34;;;19450:18;;;19443:34;;;19526:4;19514:17;;19493:19;;;19486:46;19548:19;;;19541:35;;;19592:19;;;19585:35;;;132745:12:0;132720:46;;;;19243:19:1;;132720:142:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;132868:26;132875:4;132881;132887:6;132868;:26::i;:::-;132564:335;;;;;;:::o;122476:154::-;115662:26;114552:1;115662:8;:26::i;:::-;-1:-1:-1;;;;;115648:40:0;:10;-1:-1:-1;;;;;115648:40:0;;115633:96;;;;-1:-1:-1;;;115633:96:0;;;;;;;:::i;:::-;122587:38:::1;122614:10;122587:26;:38::i;118760:101::-:0;118835:21;118845:10;118835:9;:21::i;:::-;118760:101::o;122841:137::-;115809:29;114603:1;115809:8;:29::i;:::-;-1:-1:-1;;;;;115795:43:0;:10;-1:-1:-1;;;;;115795:43:0;;115780:99;;;;-1:-1:-1;;;115780:99:0;;19833:2:1;115780:99:0;;;19815:21:1;19872:2;19852:18;;;19845:30;19911:27;19891:18;;;19884:55;19956:18;;115780:99:0;19631:349:1;115780:99:0;122937:36:::1;122957:15;122937:19;:36::i;105899:491::-:0;106065:41;;;106104:1;106065:41;;;;;;;;;105982:7;;;;106065:41;;;;;;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;106065:41:0;;;;;;;;;;;;;;;;105999:107;;106133:151;;;;;;;;106199:4;-1:-1:-1;;;;;106133:151:0;;;;;106226:17;106236:6;106226:9;:17::i;:::-;106133:151;;;;106264:13;19407:12;;;19320:106;106264:13;106133:151;;;106112:15;106128:1;106112:18;;;;;;;;:::i;:::-;;;;;;:172;;;;106340:45;106361:6;106369:15;106340:20;:45::i;:::-;-1:-1:-1;;;;;106303:28:0;;;;;;:20;:28;;;;;;:82;;;;:::i;132100:179::-;132197:7;132221:53;132251:10;132263:2;132267:6;132221:29;:53::i;18443:102::-;18499:13;18531:7;18524:14;;;;;:::i;34963:110::-;35027:7;35049:19;19407:12;;;19320:106;119716:157;119831:37;119845:10;119857:2;119861:6;119831:13;:37::i;120389:246::-;115957:27;114652:1;115957:8;:27::i;:::-;-1:-1:-1;;;;;115943:41:0;:10;-1:-1:-1;;;;;115943:41:0;;115928:95;;;;-1:-1:-1;;;115928:95:0;;;;;;;:::i;:::-;120557:36:::1;120571:4;120577:2;120581:11;120557:13;:36::i;:::-;;120599:31;120607:4;120613:2;120617:12;120599:7;:31::i;:::-;120389:246:::0;;;;:::o;22670:427::-;22763:4;16050:10;22763:4;22844:25;16050:10;22861:7;22844:9;:25::i;:::-;22817:52;;22907:15;22887:16;:35;;22879:85;;;;-1:-1:-1;;;22879:85:0;;20319:2:1;22879:85:0;;;20301:21:1;20358:2;20338:18;;;20331:30;20397:34;20377:18;;;20370:62;-1:-1:-1;;;20448:18:1;;;20441:35;20493:19;;22879:85:0;20117:401:1;22879:85:0;22998:60;23007:5;23014:7;23042:15;23023:16;:34;22998:8;:60::i;131260:491::-;102749:23;;130788:1;;102738:34;;102723:111;;;;-1:-1:-1;;;102723:111:0;;20725:2:1;102723:111:0;;;20707:21:1;20764:2;20744:18;;;20737:30;20803:34;20783:18;;;20776:62;-1:-1:-1;;;20854:18:1;;;20847:44;20908:19;;102723:111:0;20523:410:1;102723:111:0;102841:23;:34;;;131469:136:::1;131488:13:::0;131509:18;131535:11;131554:22;131584:15;131469:11:::1;:136::i;:::-;131692:54;::::0;-1:-1:-1;;;131692:54:0;;131721:4:::1;131692:54;::::0;::::1;21112:51:1::0;-1:-1:-1;;21179:18:1;;;21172:34;131692:12:0::1;-1:-1:-1::0;;;;;131692:20:0::1;::::0;::::1;::::0;21085:18:1;;131692:54:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;102679:209:::0;131260:491;;;;;:::o;19805:189::-;19884:4;16050:10;19938:28;16050:10;19955:2;19959:6;19938:9;:28::i;113034:203::-;112092:13;;;;:7;:13;;;;;;113127:4;;-1:-1:-1;;;;;112092:13:0;112109:10;112092:27;112084:61;;;;-1:-1:-1;;;112084:61:0;;21701:2:1;112084:61:0;;;21683:21:1;21740:2;21720:18;;;21713:30;-1:-1:-1;;;21759:18:1;;;21752:51;21820:18;;112084:61:0;21499:345:1;112084:61:0;113141:20:::1;::::0;;;:14:::1;:20;::::0;;;;;;;;:38;;-1:-1:-1;;;;;;113141:38:0::1;-1:-1:-1::0;;;;;113141:38:0;::::1;::::0;;::::1;::::0;;;113190:42;;668:25:1;;;113190:42:0::1;::::0;641:18:1;113190:42:0::1;;;;;;;113034:203:::0;;;:::o;118580:143::-;118688:30;118695:10;118707:2;118711:6;118688;:30::i;122310:129::-;115662:26;114552:1;115662:8;:26::i;:::-;-1:-1:-1;;;;;115648:40:0;:10;-1:-1:-1;;;;;115648:40:0;;115633:96;;;;-1:-1:-1;;;115633:96:0;;;;;;;:::i;:::-;122378:20:::1;:28:::0;;-1:-1:-1;;;;122378:28:0::1;::::0;;122417:17:::1;::::0;::::1;::::0;122401:5:::1;::::0;122417:17:::1;122310:129::o:0;118013:355::-;118141:10;-1:-1:-1;;;;;118155:16:0;118141:30;;118133:64;;;;-1:-1:-1;;;118133:64:0;;22051:2:1;118133:64:0;;;22033:21:1;22090:2;22070:18;;;22063:30;-1:-1:-1;;;22109:18:1;;;22102:51;22170:18;;118133:64:0;21849:345:1;118133:64:0;118209:9;118204:118;118228:17;:24;118224:1;:28;118204:118;;;19407:12;;118267:17;118285:1;118267:20;;;;;;;;:::i;:::-;;;;;;;;;;;;:32;:48;118254:3;;118204:118;;;;118328:35;118345:17;118328:16;:35::i;33641:406::-;33759:7;33784:66;33858:51;33920:40;33945:14;33920:24;:40::i;:::-;33776:184;;;;;33974:68;33995:9;34006:15;34023:4;34029:12;33974:20;:68::i;:::-;33967:75;33641:406;-1:-1:-1;;;;;33641:406:0:o;132315:213::-;132454:7;115957:27;114652:1;115957:8;:27::i;:::-;-1:-1:-1;;;;;115943:41:0;:10;-1:-1:-1;;;;;115943:41:0;;115928:95;;;;-1:-1:-1;;;115928:95:0;;;;;;;:::i;:::-;132476:47:::1;132506:4;132512:2;132516:6;132476:29;:47::i;34157:424::-:0;34296:7;34319:66;34393:51;34455:40;34480:14;34455:24;:40::i;:::-;34311:184;;;;;34509:67;34530:9;34541:15;34558:4;34564:11;34509:20;:67::i;:::-;34502:74;34157:424;-1:-1:-1;;;;;;34157:424:0:o;108928:736::-;109111:55;;;32119:77;109111:55;;;22430:25:1;-1:-1:-1;;;;;22491:32:1;;22471:18;;;22464:60;;;;22540:18;;;22533:34;;;22583:18;;;22576:34;;;109073:18:0;;22402:19:1;;109111:55:0;;;;;;;;;;;;109094:78;;;;;;109073:99;;109178:14;109241:16;;109259:10;109212:58;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;109212:58:0;;;;;;;;;109195:81;;109212:58;109195:81;;;;109282:17;109302:26;;;;;;;;;23245:25:1;;;23318:4;23306:17;;23286:18;;;23279:45;;;;23340:18;;;23333:34;;;23383:18;;;23376:34;;;109195:81:0;;-1:-1:-1;109282:17:0;109302:26;;23217:19:1;;109302:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;109302:26:0;;-1:-1:-1;;109302:26:0;;;-1:-1:-1;;;;;;;109342:23:0;;109334:53;;;;-1:-1:-1;;;109334:53:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;109410:18:0;;;;;;:7;:18;;;;;:20;;;;;;:::i;:::-;;;;;109401:5;:29;109393:55;;;;-1:-1:-1;;;109393:55:0;;24109:2:1;109393:55:0;;;24091:21:1;24148:2;24128:18;;;24121:30;-1:-1:-1;;;24167:18:1;;;24160:43;24220:18;;109393:55:0;23907:337:1;109393:55:0;109481:6;109462:15;:25;;109454:56;;;;-1:-1:-1;;;109454:56:0;;;;;;;:::i;:::-;109516:66;109532:9;109543;109554:27;109516:15;:66::i;:::-;109588:71;109604:9;109615;109626:32;109588:15;:71::i;:::-;109067:597;;;108928:736;;;;;;:::o;106427:849::-;-1:-1:-1;;;;;106594:19:0;;106586:45;;;;-1:-1:-1;;;106586:45:0;;24798:2:1;106586:45:0;;;24780:21:1;24837:2;24817:18;;;24810:30;-1:-1:-1;;;24856:18:1;;;24849:43;24909:18;;106586:45:0;24596:337:1;106586:45:0;106695:8;106676:15;:27;;106668:58;;;;-1:-1:-1;;;106668:58:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;106760:14:0;;;106732:25;106760:14;;;:7;:14;;;;;;;;;106860:16;;106907:163;;104832:107;106907:163;;;25225:25:1;25266:18;;;25259:60;;;;25355:32;;;25335:18;;;25328:60;25404:18;;;25397:34;;;25447:19;;;25440:35;;;25491:19;;;;25484:35;;;106907:163:0;;;;;;;;;;25197:19:1;;;106907:163:0;;;106886:194;;;;;;;106760:14;;106732:25;;106814:274;;106860:16;106886:194;106814:274;;;:::i;:::-;;;;-1:-1:-1;;106814:274:0;;;;;;;;;106797:297;;106814:274;106797:297;;;;107118:26;;;;;;;;;23245:25:1;;;23318:4;23306:17;;23286:18;;;23279:45;;;;23340:18;;;23333:34;;;23383:18;;;23376:34;;;106797:297:0;-1:-1:-1;107118:26:0;;23217:19:1;;107118:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;107109:35:0;:5;-1:-1:-1;;;;;107109:35:0;;107101:65;;;;-1:-1:-1;;;107101:65:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;107190:14:0;;;;;;:7;:14;;;;;107227:1;107207:21;;107190:38;;107240:31;107198:5;107256:7;107265:5;107240:8;:31::i;32553:157::-;32651:54;32667:10;32679:9;32690:14;32651:15;:54::i;20052:149::-;-1:-1:-1;;;;;20167:18:0;;;20141:7;20167:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;20052:149::o;120136:216::-;120262:42;120276:10;120288:2;120292:11;120262:13;:42::i;:::-;;120310:37;120318:10;120330:2;120334:12;120310:7;:37::i;107760:768::-;107946:18;31974:96;108039:9;108066:14;108058:23;;;;;;;;:::i;:::-;107984:136;;;;;;25921:25:1;;;;-1:-1:-1;;;;;25982:32:1;;;25962:18;;;25955:60;;;;26031:18;;;26024:34;26074:18;;;26067:34;;;26117:19;;;26110:35;;;25893:19;;107984:136:0;;;;;;;;;;;;107967:159;;;;;;107946:180;;108132:14;108195:16;;108213:10;108166:58;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;108166:58:0;;;;;;;;;108149:81;;108166:58;108149:81;;;;108236:17;108256:26;;;;;;;;;23245:25:1;;;23318:4;23306:17;;23286:18;;;23279:45;;;;23340:18;;;23333:34;;;23383:18;;;23376:34;;;108149:81:0;;-1:-1:-1;108236:17:0;108256:26;;23217:19:1;;108256:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;108256:26:0;;-1:-1:-1;;108256:26:0;;;-1:-1:-1;;;;;;;108296:23:0;;108288:53;;;;-1:-1:-1;;;108288:53:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;108364:18:0;;;;;;:7;:18;;;;;:20;;;;;;:::i;:::-;;;;;108355:5;:29;108347:55;;;;-1:-1:-1;;;108347:55:0;;24109:2:1;108347:55:0;;;24091:21:1;24148:2;24128:18;;;24121:30;-1:-1:-1;;;24167:18:1;;;24160:43;24220:18;;108347:55:0;23907:337:1;108347:55:0;108435:6;108416:15;:25;;108408:56;;;;-1:-1:-1;;;108408:56:0;;;;;;;:::i;:::-;108470:53;108486:9;108497;108508:14;108470:15;:53::i;:::-;107940:588;;;107760:768;;;;;;;:::o;113388:190::-;112226:20;;;;:14;:20;;;;;;113456:4;;-1:-1:-1;;;;;112226:20:0;112250:10;112226:34;112211:94;;;;-1:-1:-1;;;112211:94:0;;26358:2:1;112211:94:0;;;26340:21:1;26397:2;26377:18;;;26370:30;26436:31;26416:18;;;26409:59;26485:18;;112211:94:0;26156:353:1;112211:94:0;113468:13:::1;::::0;;;:7:::1;:13;::::0;;;;;;;:26;;113484:10:::1;-1:-1:-1::0;;;;;;113468:26:0;;::::1;::::0;::::1;::::0;;;113500:14:::1;:20:::0;;;;;;:33;;;;::::1;::::0;;;113544:29;668:25:1;;;113544:29:0::1;::::0;641:18:1;113544:29:0::1;;;;;;;;113388:190:::0;;:::o;100553:384::-;100655:7;100682:10;;;:29;;-1:-1:-1;100696:15:0;;100682:29;100678:68;;;-1:-1:-1;100734:1:0;100727:8;;100678:68;100786:32;100808:10;-1:-1:-1;;100786:32:0;:::i;:::-;100777:5;:41;;100756:116;;;;-1:-1:-1;;;100756:116:0;;26716:2:1;100756:116:0;;;26698:21:1;26755:2;26735:18;;;26728:30;26794;26774:18;;;26767:58;26842:18;;100756:116:0;26514:352:1;100756:116:0;100201:3;100891:18;100899:10;100891:5;:18;:::i;:::-;100890:40;;;;:::i;128926:229::-;129029:7;129059:91;129117:11;129112:1;129117:11;129062:32;114758:4;129062:11;:32;:::i;:::-;129061:48;;;;:::i;:::-;:52;;;;:::i;:::-;129060:68;;;;:::i;:::-;129059:89;:91::i;135713:300::-;135845:80;;;;;;;;135873:23;:12;:21;:23::i;:::-;135845:80;;;;;;-1:-1:-1;;;;;135845:80:0;;;;;;;;135814:27;;;;-1:-1:-1;;;135814:27:0;;;;;;-1:-1:-1;135791:51:0;;;:22;:51;;;;;:134;;;;;;;;;;-1:-1:-1;;;135791:134:0;;;;;;;;;;;;135931:29;;135814:27;;135931:29;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;135966:42;135992:15;135966:25;:42::i;53116:239::-;53280:58;;-1:-1:-1;;;;;21130:32:1;;53280:58:0;;;21112:51:1;21179:18;;;21172:34;;;53228:120:0;;53261:5;;-1:-1:-1;;;53303:23:0;21085:18:1;;53280:58:0;;;;-1:-1:-1;;53280:58:0;;;;;;;;;;;;;;-1:-1:-1;;;;;53280:58:0;-1:-1:-1;;;;;;53280:58:0;;;;;;;;;;53228:19;:120::i;26582:370::-;-1:-1:-1;;;;;26713:19:0;;26705:68;;;;-1:-1:-1;;;26705:68:0;;27266:2:1;26705:68:0;;;27248:21:1;27305:2;27285:18;;;27278:30;27344:34;27324:18;;;27317:62;-1:-1:-1;;;27395:18:1;;;27388:34;27439:19;;26705:68:0;27064:400:1;26705:68:0;-1:-1:-1;;;;;26791:21:0;;26783:68;;;;-1:-1:-1;;;26783:68:0;;27671:2:1;26783:68:0;;;27653:21:1;27710:2;27690:18;;;27683:30;27749:34;27729:18;;;27722:62;-1:-1:-1;;;27800:18:1;;;27793:32;27842:19;;26783:68:0;27469:398:1;26783:68:0;-1:-1:-1;;;;;26862:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;26913:32;;668:25:1;;;26913:32:0;;641:18:1;26913:32:0;;;;;;;26582:370;;;:::o;126795:1421::-;126893:6;126903:1;126893:11;126885:43;;;;-1:-1:-1;;;126885:43:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;126978:22:0;;126935:40;126978:22;;;:16;:22;;;;;;;;;126935:65;;;;;;;;;;;;;;-1:-1:-1;;;126935:65:0;;-1:-1:-1;;;;;126935:65:0;;;;;127011:20;;-1:-1:-1;;;127011:20:0;;;;127006:329;;127107:16;;127078:26;;:45;;127107:16;127078:45;;;:::i;:::-;127059:15;:64;;127041:124;;;;-1:-1:-1;;;127041:124:0;;28422:2:1;127041:124:0;;;28404:21:1;28461:2;28441:18;;;28434:30;-1:-1:-1;;;28480:18:1;;;28473:51;28541:18;;127041:124:0;28220:345:1;127041:124:0;127239:16;;127210:26;;127270:14;;127210:45;;;;;:::i;:::-;127191:65;;:15;:65;:::i;:::-;:93;;127173:155;;;;-1:-1:-1;;;127173:155:0;;28772:2:1;127173:155:0;;;28754:21:1;28811:2;28791:18;;;28784:30;28850:25;28830:18;;;28823:53;28893:18;;127173:155:0;28570:347:1;127173:155:0;127341:21;127365:15;127375:4;127365:9;:15::i;:::-;127410:20;;127341:39;;-1:-1:-1;127386:21:0;;-1:-1:-1;;;127410:20:0;;;;:74;;127461:16;:23;;;-1:-1:-1;;;;;127410:74:0;;;;127439:13;127410:74;127386:98;;127498:13;127515:1;127498:18;127490:58;;;;-1:-1:-1;;;127490:58:0;;29124:2:1;127490:58:0;;;29106:21:1;29163:2;29143:18;;;29136:30;29202:29;29182:18;;;29175:57;29249:18;;127490:58:0;28922:351:1;127490:58:0;127555:22;127590:13;127581:6;:22;127580:49;;127623:6;127580:49;;;127607:13;127580:49;127555:74;;127636:57;127667:4;127673:13;127688:4;127636:30;:57::i;:::-;;127700:26;127729:29;127743:14;127729:13;:29::i;:::-;127700:58;;127765:27;127771:4;127777:14;127765:5;:27::i;:::-;127803:26;;:31;;;127799:285;;127874:14;127848:16;:23;;;-1:-1:-1;;;;;127848:40:0;;;;;:::i;:::-;127892:1;127848:45;127844:234;;-1:-1:-1;;;;;127912:22:0;;;;;;:16;:22;;;;;127905:29;127844:234;;;128043:26;:14;:24;:26::i;:::-;-1:-1:-1;;;;;128001:22:0;;;;;;:16;:22;;;;;:29;:68;;-1:-1:-1;;;;;128001:68:0;;-1:-1:-1;;;128001:29:0;;-1:-1:-1;;;;;128001:29:0;:68;:::i;:::-;-1:-1:-1;;;;;127959:22:0;;;;;;:16;:22;;;;;:110;;-1:-1:-1;;;;;127959:110:0;;;;-1:-1:-1;;;127959:110:0;;;;;;;;;;;127844:234;128090:57;-1:-1:-1;;;;;128097:12:0;128090:33;128124:2;128128:18;128090:33;:57::i;:::-;128172:2;-1:-1:-1;;;;;128159:52:0;128166:4;-1:-1:-1;;;;;128159:52:0;;128176:18;128196:14;128159:52;;;;;;29655:25:1;;;29711:2;29696:18;;29689:34;29643:2;29628:18;;29481:248;128159:52:0;;;;;;;;126879:1337;;;;;126795:1421;;;:::o;124232:642::-;124331:7;124354:6;124364:1;124354:11;124346:43;;;;-1:-1:-1;;;124346:43:0;;;;;;;:::i;:::-;124395:23;124421:84;124459:4;124471:15;124481:4;124471:9;:15::i;:::-;124494:5;124421:30;:84::i;:::-;124395:110;;124512:21;124546:15;124537:6;:24;124536:65;;124595:6;124536:65;;;124571:15;124536:65;124512:89;;124615:13;124632:1;124615:18;124607:50;;;;-1:-1:-1;;;124607:50:0;;;;;;;:::i;:::-;124693:31;124711:13;124693:15;:31;:::i;:::-;-1:-1:-1;;;;;124664:26:0;;;;;;;:20;:26;;;;;:60;;;;124730:63;;:12;:29;124760:13;124775:2;124779:13;124730:29;:63::i;:::-;124825:2;-1:-1:-1;;;;;124804:39:0;124819:4;-1:-1:-1;;;;;124804:39:0;;124829:13;124804:39;;;;668:25:1;;656:2;641:18;;522:177;124804:39:0;;;;;;;;124856:13;124232:642;-1:-1:-1;;;;;124232:642:0:o;27233:441::-;27363:24;27390:25;27400:5;27407:7;27390:9;:25::i;:::-;27363:52;;-1:-1:-1;;27429:16:0;:37;27425:243;;27510:6;27490:16;:26;;27482:68;;;;-1:-1:-1;;;27482:68:0;;29936:2:1;27482:68:0;;;29918:21:1;29975:2;29955:18;;;29948:30;30014:31;29994:18;;;29987:59;30063:18;;27482:68:0;29734:353:1;27482:68:0;27592:51;27601:5;27608:7;27636:6;27617:16;:25;27592:8;:51::i;129159:885::-;129260:21;129284:15;129294:4;129284:9;:15::i;:::-;129260:39;;129319:57;129350:4;129356:13;129371:4;129319:30;:57::i;:::-;;129412:2;-1:-1:-1;;;;;129404:10:0;:4;-1:-1:-1;;;;;129404:10:0;;129400:600;;129424:19;129446:13;129456:2;129446:9;:13::i;:::-;129424:35;;129467:53;129498:2;129502:11;129515:4;129467:30;:53::i;:::-;-1:-1:-1;;;;;;129578:22:0;;129529:46;129578:22;;;:16;:22;;;;;;;;;129529:71;;;;;;;;;;;;;;;-1:-1:-1;;;129529:71:0;;;-1:-1:-1;;;;;129529:71:0;;;;;;;;129612:37;129608:386;;129774:6;129757:13;:23;129753:233;;-1:-1:-1;;;;;129801:22:0;;;;;;:16;:22;;;;;129794:29;129753:233;;;129869:29;;;;-1:-1:-1;;;;;129844:54:0;:22;129860:6;129844:13;:22;:::i;:::-;:54;129840:146;;;129952:22;129968:6;129952:13;:22;:::i;:::-;-1:-1:-1;;;;;129912:22:0;;;;;;:16;:22;;;;;:63;;-1:-1:-1;;;;;129912:63:0;;;;-1:-1:-1;;;129912:63:0;;;;;;;;;;;129840:146;129416:584;;129400:600;130006:33;130022:4;130028:2;130032:6;130006:15;:33::i;119004:304::-;119052:14;119069:15;119079:4;119069:9;:15::i;:::-;119052:32;;119098:6;119108:1;119098:11;119090:51;;;;-1:-1:-1;;;119090:51:0;;30294:2:1;119090:51:0;;;30276:21:1;30333:2;30313:18;;;30306:30;30372:29;30352:18;;;30345:57;30419:18;;119090:51:0;30092:351:1;119090:51:0;119172:97;;;;;;;;;119215:15;119172:97;;;;-1:-1:-1;;;;;119172:97:0;;;;;;;;;;-1:-1:-1;;;;;119147:22:0;;-1:-1:-1;119147:22:0;;;:16;:22;;;;;;;:122;;;;;;;-1:-1:-1;;;119147:122:0;;;;;;;;;;119281:22;;;;;;119255:6;668:25:1;;656:2;641:18;;522:177;53361:275:0;53551:68;;-1:-1:-1;;;;;30668:32:1;;;53551:68:0;;;30650:51:1;30737:32;;30717:18;;;30710:60;30786:18;;;30779:34;;;53499:130:0;;53532:5;;-1:-1:-1;;;53574:27:0;30623:18:1;;53551:68:0;30448:371:1;35293:602:0;-1:-1:-1;;;;;35426:23:0;;35418:53;;;;-1:-1:-1;;;35418:53:0;;31026:2:1;35418:53:0;;;31008:21:1;31065:2;31045:18;;;31038:30;-1:-1:-1;;;31084:18:1;;;31077:47;31141:18;;35418:53:0;30824:341:1;35418:53:0;35483:45;35532:40;35557:14;35532:24;:40::i;:::-;35478:94;;;;35579:24;35606:20;35616:9;35606;:20::i;:::-;35579:47;;35633:25;35661:35;35675:9;35686;35661:13;:35::i;:::-;-1:-1:-1;;;;;35703:20:0;;;;;;;;;;;;;;:32;;-1:-1:-1;;;;;;35703:32:0;;;;;;;;;;35633:63;-1:-1:-1;35742:84:0;35633:63;35703:32;35793:16;35811:14;35742:20;:84::i;:::-;35864:9;-1:-1:-1;;;;;35837:53:0;35853:9;-1:-1:-1;;;;;35837:53:0;;35875:14;35837:53;;;;;;:::i;:::-;;;;;;;;35412:483;;;35293:602;;;:::o;110737:612::-;110857:56;;;;111066:14;:45;;;;;;;;:::i;:::-;;111062:283;;-1:-1:-1;111129:16:0;;-1:-1:-1;111147:22:0;;-1:-1:-1;111171:16:0;111121:67;;111062:283;-1:-1:-1;111226:26:0;;-1:-1:-1;111262:32:0;;-1:-1:-1;111304:26:0;111062:283;110737:612;;;;;:::o;41594:299::-;-1:-1:-1;;;;;41763:20:0;;;41718:7;41763:20;;;;;;;;;;;41718:7;;41763:20;;41790:68;;41842:9;41835:16;;;;;125885:724;125983:20;;-1:-1:-1;;;125983:20:0;;;;125982:21;125974:50;;;;-1:-1:-1;;;125974:50:0;;31842:2:1;125974:50:0;;;31824:21:1;31881:2;31861:18;;;31854:30;-1:-1:-1;;;31900:18:1;;;31893:46;31956:18;;125974:50:0;31640:340:1;125974:50:0;126038:6;126048:1;126038:11;126030:43;;;;-1:-1:-1;;;126030:43:0;;;;;;;:::i;:::-;126080:19;126102:13;126112:2;126102:9;:13::i;:::-;126080:35;;126122:22;126147:101;126179:2;126197:4;126210:11;126229:13;19407:12;;;19320:106;126229:13;126147:24;:101::i;:::-;126122:126;-1:-1:-1;126259:19:0;;126255:155;;-1:-1:-1;;;;;126315:24:0;;;;;;:20;:24;;;;;;:41;;126342:14;;126315:41;:::i;:::-;-1:-1:-1;;;;;126288:24:0;;;;;;:20;:24;;;;;;;;;:68;;;;126369:34;;21112:51:1;;;21179:18;;;21172:34;;;126369::0;;21085:18:1;126369:34:0;;;;;;;126255:155;126416:20;126439;126452:6;126439:12;:20::i;:::-;126416:43;-1:-1:-1;126466:58:0;-1:-1:-1;;;;;126466:12:0;:29;126496:4;126510;126517:6;126466:29;:58::i;:::-;126531:23;126537:2;126541:12;126531:5;:23::i;:::-;126579:2;-1:-1:-1;;;;;126566:38:0;126573:4;-1:-1:-1;;;;;126566:38:0;;126583:6;126591:12;126566:38;;;;;;29655:25:1;;;29711:2;29696:18;;29689:34;29643:2;29628:18;;29481:248;123423:274:0;100201:3;123509:10;:45;123494:103;;;;-1:-1:-1;;;123494:103:0;;32187:2:1;123494:103:0;;;32169:21:1;32226:2;32206:18;;;32199:30;32265:29;32245:18;;;32238:57;32312:18;;123494:103:0;31985:351:1;123494:103:0;123604:23;:36;;;123651:41;;668:25:1;;;123651:41:0;;656:2:1;641:18;123651:41:0;;;;;;;;123423:274;:::o;123812:158::-;123881:16;:34;;;123926:39;;668:25:1;;;123926:39:0;;656:2:1;641:18;123926:39:0;522:177:1;61809:692:0;61938:7;;;61986:484;62010:6;:13;62006:1;:17;61986:484;;;62038:29;62070:6;:33;62077:6;62084:1;62077:9;;;;;;;;:::i;:::-;;;;;;;;;;;;:25;-1:-1:-1;;;;;62070:33:0;;;;;;;;;;;62077:25;62070:33;;;62156:17;;;;62183:29;;62263:9;;62070:33;;-1:-1:-1;62132:160:0;;-1:-1:-1;;;;;62183:29:0;;;;-1:-1:-1;;;62222:31:0;;;;62263:6;;62270:1;;62263:9;;;;;;:::i;:::-;;;;;;;:21;;;62132:14;:160::i;:::-;62111:181;;62351:112;62374:6;62381:1;62374:9;;;;;;;;:::i;:::-;;;;;;;:22;;;62408:10;62430:11;:17;;:23;62448:4;-1:-1:-1;;;;;62430:23:0;-1:-1:-1;;;;;62430:23:0;;;;;;;;;;;;;62351:11;:112::i;:::-;62326:137;;:14;:137;:::i;:::-;62301:162;-1:-1:-1;;;62025:3:0;;61986:484;;;-1:-1:-1;62482:14:0;61809:692;-1:-1:-1;;;61809:692:0:o;125108:597::-;125223:7;125262:12;-1:-1:-1;;;;;125246:28:0;:12;-1:-1:-1;;;;;125246:28:0;;125238:73;;;;-1:-1:-1;;;125238:73:0;;32543:2:1;125238:73:0;;;32525:21:1;;;32562:18;;;32555:30;32621:34;32601:18;;;32594:62;32673:18;;125238:73:0;32341:356:1;125238:73:0;125318:26;125347:83;125385:4;125397:15;125407:4;125397:9;:15::i;:::-;125420:4;125347:30;:83::i;:::-;125318:112;;125436:21;125470:18;125461:6;:27;125460:71;;125525:6;125460:71;;;125498:18;125460:71;125436:95;-1:-1:-1;125542:18:0;;125538:136;;125570:49;125584:4;125598;125605:13;125570;:49::i;:::-;;125627:40;125642:4;125649:2;125653:13;125627:6;:40::i;117343:620::-;117564:18;;;117580:1;117564:18;;;;;;;;;117532:29;;117564:18;;;;-1:-1:-1;;;;;;;;;;;;;;;;;117564:18:0;;;;;;;;;;;;;;;117532:50;;117604:42;;;;;;;;114552:1;117604:42;;;;117632:13;-1:-1:-1;;;;;117604:42:0;;;;117588:10;117599:1;117588:13;;;;;;;;:::i;:::-;;;;;;:58;;;;117668:50;;;;;;;;114603:1;117668:50;;;;117699:18;-1:-1:-1;;;;;117668:50:0;;;;117652:10;117663:1;117652:13;;;;;;;;:::i;:::-;;;;;;:66;;;;117740:41;;;;;;;;114652:1;117740:41;;;;117769:11;-1:-1:-1;;;;;117740:41:0;;;;117724:10;117735:1;117724:13;;;;;;;;:::i;:::-;;;;;;:57;;;;117788:23;117800:10;117788:11;:23::i;:::-;117818:50;117845:22;117818:26;:50::i;:::-;117874:36;117894:15;117874:19;:36::i;:::-;117916:42;114705:4;117916:19;:42::i;57961:642::-;58078:9;58073:526;58097:17;:24;58093:1;:28;58073:526;;;58136:29;58168:6;:60;58184:17;58202:1;58184:20;;;;;;;;:::i;:::-;;;;;;;:36;;;-1:-1:-1;;;;;58168:60:0;-1:-1:-1;;;;;58168:60:0;;;;;;;;;;;;58136:92;;58237:142;58272:17;58290:1;58272:20;;;;;;;;:::i;:::-;;;;;;;:36;;;58318:11;58339:17;58357:1;58339:20;;;;;;;;:::i;:::-;;;;;;;:32;;;58237:25;:142::i;:::-;;58420:17;58438:1;58420:20;;;;;;;;:::i;:::-;;;;;;;;;;;:38;58388:70;;-1:-1:-1;;58388:70:0;-1:-1:-1;;;;;58388:70:0;;;;;;58500:20;;;;58518:1;;58500:20;;;;;;:::i;:::-;;;;;;;:36;;;-1:-1:-1;;;;;58472:120:0;;58546:17;58564:1;58546:20;;;;;;;;:::i;:::-;;;;;;;;;;;;:38;58472:120;;-1:-1:-1;;;;;32866:47:1;;;32848:66;;32821:18;58472:120:0;;;;;;;-1:-1:-1;58123:3:0;;58073:526;;135044:539;135522:27;;135282:7;;135455:123;;135490:22;;-1:-1:-1;;;135522:27:0;;;;135559:11;135455:25;:123::i;:::-;114758:4;135311:113;135347:9;135366:15;135391:4;135405:11;135311:26;:113::i;:::-;:134;;;;:::i;:::-;135310:268;;;;:::i;67994:192::-;68051:7;-1:-1:-1;;;;;68078:26:0;;;68070:78;;;;-1:-1:-1;;;68070:78:0;;33127:2:1;68070:78:0;;;33109:21:1;33166:2;33146:18;;;33139:30;33205:34;33185:18;;;33178:62;-1:-1:-1;;;33256:18:1;;;33249:37;33303:19;;68070:78:0;32925:403:1;68070:78:0;-1:-1:-1;68173:5:0;67994:192::o;79389:187::-;79445:6;79480:16;79471:25;;;79463:76;;;;-1:-1:-1;;;79463:76:0;;33535:2:1;79463:76:0;;;33517:21:1;33574:2;33554:18;;;33547:30;33613:34;33593:18;;;33586:62;-1:-1:-1;;;33664:18:1;;;33657:36;33710:19;;79463:76:0;33333:402:1;128346:224:0;128431:15;-1:-1:-1;;;;;128431:20:0;128450:1;128431:20;128423:51;;;;-1:-1:-1;;;128423:51:0;;33942:2:1;128423:51:0;;;33924:21:1;33981:2;33961:18;;;33954:30;-1:-1:-1;;;34000:18:1;;;33993:48;34058:18;;128423:51:0;33740:342:1;128423:51:0;128480:20;:38;;-1:-1:-1;;;;;;128480:38:0;-1:-1:-1;;;;;128480:38:0;;;;;;;;128529:36;;4825:51:1;;;128529:36:0;;4813:2:1;4798:18;128529:36:0;4679:203:1;55990:786:0;56409:23;56435:103;56476:4;56435:103;;;;;;;;;;;;;;;;;56443:5;-1:-1:-1;;;;;56435:27:0;;;:103;;;;;:::i;:::-;56552:17;;56409:129;;-1:-1:-1;56552:21:0;56548:222;;56664:10;56653:30;;;;;;;;;;;;:::i;:::-;56628:131;;;;-1:-1:-1;;;56628:131:0;;34289:2:1;56628:131:0;;;34271:21:1;34328:2;34308:18;;;34301:30;34367:34;34347:18;;;34340:62;-1:-1:-1;;;34418:18:1;;;34411:40;34468:19;;56628:131:0;34087:406:1;110009:560:0;110138:7;110153:22;110178:103;110210:4;110230;110243:11;110262:13;19407:12;;;19320:106;110178:103;-1:-1:-1;;;;;110314:26:0;;110287:24;110314:26;;;:20;:26;;;;;;110153:128;;-1:-1:-1;110287:24:0;110314:43;;110153:128;;110314:43;:::i;:::-;110287:70;-1:-1:-1;110368:19:0;;110364:171;;110401:13;110397:83;;;-1:-1:-1;;;;;110426:26:0;;;;;;:20;:26;;;;;:45;;;110397:83;110492:36;;;-1:-1:-1;;;;;21130:32:1;;21112:51;;21194:2;21179:18;;21172:34;;;110492:36:0;;21085:18:1;110492:36:0;;;;;;;110548:16;110009:560;-1:-1:-1;;;;;110009:560:0:o;25500:659::-;-1:-1:-1;;;;;25583:21:0;;25575:67;;;;-1:-1:-1;;;25575:67:0;;34700:2:1;25575:67:0;;;34682:21:1;34739:2;34719:18;;;34712:30;34778:34;34758:18;;;34751:62;-1:-1:-1;;;34829:18:1;;;34822:31;34870:19;;25575:67:0;34498:397:1;25575:67:0;25653:49;25674:7;25691:1;25695:6;25653:20;:49::i;:::-;-1:-1:-1;;;;;25738:18:0;;25713:22;25738:18;;;;;;;;;;;25774:24;;;;25766:71;;;;-1:-1:-1;;;25766:71:0;;35102:2:1;25766:71:0;;;35084:21:1;35141:2;35121:18;;;35114:30;35180:34;35160:18;;;35153:62;-1:-1:-1;;;35231:18:1;;;35224:32;35273:19;;25766:71:0;34900:398:1;25766:71:0;-1:-1:-1;;;;;25871:18:0;;:9;:18;;;;;;;;;;;25892:23;;;25871:44;;26008:12;:22;;;;;;;26056:37;668:25:1;;;25871:9:0;;:18;26056:37;;641:18:1;26056:37:0;;;;;;;119527:152;;;:::o;70078:192::-;70135:7;-1:-1:-1;;;;;70162:26:0;;;70154:78;;;;-1:-1:-1;;;70154:78:0;;35505:2:1;70154:78:0;;;35487:21:1;35544:2;35524:18;;;35517:30;35583:34;35563:18;;;35556:62;-1:-1:-1;;;35634:18:1;;;35627:37;35681:19;;70154:78:0;35303:403:1;23551:818:0;-1:-1:-1;;;;;23677:18:0;;23669:68;;;;-1:-1:-1;;;23669:68:0;;35913:2:1;23669:68:0;;;35895:21:1;35952:2;35932:18;;;35925:30;35991:34;35971:18;;;35964:62;-1:-1:-1;;;36042:18:1;;;36035:35;36087:19;;23669:68:0;35711:401:1;23669:68:0;-1:-1:-1;;;;;23755:16:0;;23747:64;;;;-1:-1:-1;;;23747:64:0;;36319:2:1;23747:64:0;;;36301:21:1;36358:2;36338:18;;;36331:30;36397:34;36377:18;;;36370:62;-1:-1:-1;;;36448:18:1;;;36441:33;36491:19;;23747:64:0;36117:399:1;23747:64:0;23822:38;23843:4;23849:2;23853:6;23822:20;:38::i;:::-;-1:-1:-1;;;;;23893:15:0;;23871:19;23893:15;;;;;;;;;;;23926:21;;;;23918:72;;;;-1:-1:-1;;;23918:72:0;;36723:2:1;23918:72:0;;;36705:21:1;36762:2;36742:18;;;36735:30;36801:34;36781:18;;;36774:62;-1:-1:-1;;;36852:18:1;;;36845:36;36898:19;;23918:72:0;36521:402:1;23918:72:0;-1:-1:-1;;;;;24024:15:0;;;:9;:15;;;;;;;;;;;24042:20;;;24024:38;;24239:13;;;;;;;;;;:23;;;;;;24288:26;;668:25:1;;;24239:13:0;;24288:26;;641:18:1;24288:26:0;;;;;;;24325:37;119527:152;36238:1378;36388:2;-1:-1:-1;;;;;36380:10:0;:4;-1:-1:-1;;;;;36380:10:0;;36376:37;36400:7;36376:37;36427:66;36501:51;36563:40;36588:14;36563:24;:40::i;:::-;-1:-1:-1;36419:184:0;;-1:-1:-1;36419:184:0;-1:-1:-1;;;;;;36614:18:0;;;36610:508;;-1:-1:-1;;;;;36699:21:0;;36642:16;36699:21;;;;;;;;;;;36733:23;;36729:155;;-1:-1:-1;;;;;36779:15:0;;;;;;;;;;;;;;36795:22;36816:1;36795:18;:22;:::i;:::-;36779:39;;;;;;;;;;;-1:-1:-1;36779:39:0;:45;-1:-1:-1;;;36779:45:0;;-1:-1:-1;;;;;36779:45:0;;-1:-1:-1;36729:155:0;;;36860:15;36870:4;36860:9;:15::i;:::-;36849:26;;36729:155;36892:143;36916:9;36935:15;36960:4;36982:8;37009:17;37020:6;36982:8;37009:17;:::i;:::-;36892:14;:143::i;:::-;-1:-1:-1;;;;;37049:62:0;;;37077:17;37088:6;37077:8;:17;:::i;:::-;37096:14;37049:62;;;;;;;:::i;:::-;;;;;;;;36634:484;;36610:508;-1:-1:-1;;;;;37127:16:0;;;37123:489;;-1:-1:-1;;;;;37208:19:0;;37153:16;37208:19;;;;;;;;;;;37239:21;;37235:147;;-1:-1:-1;;;;;37283:13:0;;;;;;;;;;;;;;37297:20;37316:1;37297:16;:20;:::i;:::-;37283:35;;;;;;;;;;;-1:-1:-1;37283:35:0;:41;-1:-1:-1;;;37283:41:0;;-1:-1:-1;;;;;37283:41:0;;-1:-1:-1;37235:147:0;;;37360:13;37370:2;37360:9;:13::i;:::-;37349:24;;37235:147;37390:141;37414:9;37433:15;37458:2;37478:8;37505:17;37516:6;37478:8;37505:17;:::i;37390:141::-;-1:-1:-1;;;;;37545:60:0;;;37571:17;37582:6;37571:8;:17;:::i;:::-;37590:14;37545:60;;;;;;;:::i;:::-;;;;;;;;37145:467;;36370:1246;;36238:1378;;;;:::o;60133:641::-;-1:-1:-1;;;;;60322:13:0;;;60277:7;60322:13;;;:6;:13;;;;;;;;60361:21;;;;;:15;;;:21;;;;;;60277:7;;60322:13;60277:7;;60440:56;60329:5;60322:13;60484:11;60440:25;:56::i;:::-;60421:75;;60520:8;60507:9;:21;60503:239;;60542:17;;60538:105;;60588:46;60600:12;60614:8;60624:9;60588:11;:46::i;:::-;60571:63;;60538:105;-1:-1:-1;;;;;60651:21:0;;;;;;;:15;;;:21;;;;;;;:32;;;60696:39;;;;;;;;;60675:8;668:25:1;;656:2;641:18;;522:177;60696:39:0;;;;;;;;60503:239;-1:-1:-1;60755:14:0;60133:641;-1:-1:-1;;;;;;;60133:641:0:o;24645:535::-;-1:-1:-1;;;;;24728:21:0;;24720:65;;;;-1:-1:-1;;;24720:65:0;;37424:2:1;24720:65:0;;;37406:21:1;37463:2;37443:18;;;37436:30;37502:33;37482:18;;;37475:61;37553:18;;24720:65:0;37222:355:1;24720:65:0;24796:49;24825:1;24829:7;24838:6;24796:20;:49::i;:::-;24872:6;24856:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;25024:18:0;;:9;:18;;;;;;;;;;;:28;;;;;;25077:37;668:25:1;;;25077:37:0;;641:18:1;25077:37:0;;;;;;;119345:145;;:::o;63545:682::-;63712:7;63738:22;;;:49;;-1:-1:-1;63770:17:0;;63738:49;:97;;;;63820:15;63797:19;-1:-1:-1;;;;;63797:38:0;;63738:97;:146;;;;63868:16;63845:19;-1:-1:-1;;;;;63845:39:0;;;63738:146;63727:198;;;-1:-1:-1;63906:12:0;63899:19;;63727:198;63931:24;63976:16;63958:15;:34;:83;;64026:15;63958:83;;;64001:16;63958:83;63931:110;-1:-1:-1;64047:17:0;64067:38;-1:-1:-1;;;;;64067:38:0;;63931:110;64067:38;:::i;:::-;64047:58;-1:-1:-1;64210:12:0;64194;64159:22;57342:2;64159;:22;:::i;:::-;64126:29;64146:9;64126:17;:29;:::i;:::-;:56;;;;:::i;:::-;64125:81;;;;:::i;:::-;64124:98;;;;:::i;:::-;64111:111;63545:682;-1:-1:-1;;;;;;;63545:682:0:o;62845:248::-;62976:7;63065:22;57342:2;63065;:22;:::i;:::-;63029:24;63044:9;63029:12;:24;:::i;:::-;63005:49;;:20;:49;:::i;:::-;63004:84;;;;:::i;113582:408::-;113654:9;113649:337;113673:10;:17;113669:1;:21;113649:337;;;113761:1;-1:-1:-1;;;;;113722:41:0;:7;:27;113730:10;113741:1;113730:13;;;;;;;;:::i;:::-;;;;;;;;;;;;:18;113722:27;;;;;;;;;;113730:18;113722:27;;-1:-1:-1;;;;;113722:27:0;:41;:88;;;;;113808:1;-1:-1:-1;;;;;113777:33:0;:10;113788:1;113777:13;;;;;;;;:::i;:::-;;;;;;;:19;;;-1:-1:-1;;;;;113777:33:0;;;113722:88;113705:152;;;;-1:-1:-1;;;113705:152:0;;39207:2:1;113705:152:0;;;39189:21:1;39246:2;39226:18;;;39219:30;39285:29;39265:18;;;39258:57;39332:18;;113705:152:0;39005:351:1;113705:152:0;113895:10;113906:1;113895:13;;;;;;;;:::i;:::-;;;;;;;:19;;;113865:7;:27;113873:10;113884:1;113873:13;;;;;;;;:::i;:::-;;;;;;;:18;;;113865:27;;;;;;;;;;;;:49;;;;;-1:-1:-1;;;;;113865:49:0;;;;;-1:-1:-1;;;;;113865:49:0;;;;;;113939:10;113950:1;113939:13;;;;;;;;:::i;:::-;;;;;;;:19;;;-1:-1:-1;;;;;113927:52:0;;113960:10;113971:1;113960:13;;;;;;;;:::i;:::-;;;;;;;:18;;;113927:52;;;;668:25:1;;656:2;641:18;;522:177;113927:52:0;;;;;;;;113692:3;;113649:337;;59016:713;59196:17;;;;59249:31;;59162:7;;59196:17;-1:-1:-1;;;59249:31:0;;-1:-1:-1;;;;;59249:31:0;59291:15;:38;;;59287:74;;-1:-1:-1;59346:8:0;-1:-1:-1;59339:15:0;;59287:74;59424:29;;59367:16;;59386:119;;59408:8;;-1:-1:-1;;;;;59424:29:0;59461:19;59488:11;59386:14;:119::i;:::-;59367:138;;59528:8;59516;:20;59512:126;;59546:17;;;:28;;;59587:44;;668:25:1;;;-1:-1:-1;;;;;59587:44:0;;;;;656:2:1;641:18;59587:44:0;;;;;;;59512:126;59644:58;;-1:-1:-1;;;;;59686:15:0;59644:58;;-1:-1:-1;;;59644:58:0;;;;;;59716:8;-1:-1:-1;;;59016:713:0;;;;;:::o;136017:900::-;-1:-1:-1;;136284:18:0;;136196:7;136274:29;;;;;;;;;;:41;;;:56;-1:-1:-1;136270:123:0;;-1:-1:-1;;;136359:18:0;;136349:29;;;;;;;;;;;:35;-1:-1:-1;;;136349:35:0;;-1:-1:-1;;;;;136349:35:0;136342:42;;136270:123;136401:13;-1:-1:-1;;136442:18:0;;136468:402;136483:5;136475;:13;136468:402;;;136543:1;136526:13;;;136525:19;136517:27;;136500:14;136620:17;;;;;;;;;;;;136581:56;;;;;;;;;;;;;;;-1:-1:-1;;;136581:56:0;;;-1:-1:-1;;;;;136581:56:0;;;;;;;;136651:35;;;136647:215;;136707:14;;;-1:-1:-1;;;;;136700:21:0;;-1:-1:-1;136700:21:0;;-1:-1:-1;;;136700:21:0;136647:215;136742:20;;:34;;;-1:-1:-1;136738:124:0;;;136798:6;136790:14;;136738:124;;;136850:1;136841:6;:10;136833:18;;136738:124;136490:380;;136468:402;;;-1:-1:-1;136884:16:0;;;;;;;;;-1:-1:-1;;136884:16:0;;;;:22;-1:-1:-1;;;136884:22:0;;-1:-1:-1;;;;;136884:22:0;;136017:900;-1:-1:-1;136017:900:0:o;37919:625::-;38156:7;38194:12;38179:11;:27;;38171:60;;;;-1:-1:-1;;;38171:60:0;;39563:2:1;38171:60:0;;;39545:21:1;39602:2;39582:18;;;39575:30;-1:-1:-1;;;39621:18:1;;;39614:50;39681:18;;38171:60:0;39361:344:1;38171:60:0;-1:-1:-1;;;;;38263:21:0;;38238:22;38263:21;;;;;;;;;;;;38295:19;;;38291:62;;38331:15;38341:4;38331:9;:15::i;:::-;38324:22;;;;;38291:62;-1:-1:-1;;;;;38398:15:0;;;;;;;;;;;;;;:18;;;;;;;;:30;-1:-1:-1;;;;;38398:30:0;:44;-1:-1:-1;38394:73:0;;;38459:1;38452:8;;;;;38394:73;-1:-1:-1;;;;;38494:15:0;;;;;;;;;;;;;38480:59;;38511:14;38527:11;38480:13;:59::i;47133:223::-;47266:12;47297:52;47319:6;47327:4;47333:1;47336:12;47297:21;:52::i;133603:1322::-;133770:12;;-1:-1:-1;;;;;133770:12:0;133792:41;;133788:261;;133855:18;-1:-1:-1;;;;;133855:45:0;;133912:4;133928:2;133942:15;133952:4;133942:9;:15::i;:::-;133969:13;133979:2;133969:9;:13::i;:::-;133855:155;;-1:-1:-1;;;;;;133855:155:0;;;;;;;-1:-1:-1;;;;;39987:32:1;;;133855:155:0;;;39969:51:1;40056:32;;;;40036:18;;;40029:60;40105:18;;;40098:34;40148:18;;;40141:34;40191:19;;;40184:35;;;39941:19;;133855:155:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;133843:200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;134020:23;133843:200;-1:-1:-1;;;;;134084:22:0;;;134054:27;134084:22;;;:16;:22;;;;;;;134140:20;;;;;;;;134084:22;;;;134140:20;134084:22;134167:80;;134236:4;134214:26;;134167:80;-1:-1:-1;;;;;134256:31:0;;134252:74;;-1:-1:-1;134317:2:0;134252:74;134332:127;134360:19;134387:17;134412:6;134426:27;134332:20;:127::i;:::-;-1:-1:-1;;;;;134499:32:0;;;134466:30;134499:32;;;:26;:32;;;;;;;134568:30;;;;;;;;134499:32;;;;134568:30;134499:32;134605:86;;134680:4;134655:29;;134605:86;-1:-1:-1;;;;;134700:34:0;;134696:80;;-1:-1:-1;134767:2:0;134696:80;134782:138;134810:22;134840:20;134868:6;134882:32;134782:20;:138::i;:::-;133709:1216;;;;;133603:1322;;;:::o;40440:813::-;-1:-1:-1;;;;;40756:22:0;;40675:20;40756:22;;;;;;;;;;;;40838:16;;;;;;;40706:12;;40756:22;40923:24;;;;;:101;;-1:-1:-1;;;;;;40957:67:0;;:14;:39;40972:23;40994:1;40972:19;:23;:::i;:::-;40957:39;;;;;;;;;;;-1:-1:-1;40957:39:0;:51;-1:-1:-1;;;;;40957:51:0;:67;40923:101;40912:337;;;41087:8;41039:14;:39;41054:23;41076:1;41054:19;:23;:::i;:::-;41039:39;;;;;;;;;;;-1:-1:-1;41039:39:0;:56;;-1:-1:-1;;;;;41039:56:0;;;-1:-1:-1;;;41039:56:0;;;;;;;;;40912:337;;;41154:32;;;;;;;;-1:-1:-1;;;;;41154:32:0;;;;;;;;;;;;;;;-1:-1:-1;41116:35:0;;;;;;;;;;;:70;;;;;;-1:-1:-1;;;41116:70:0;;;;;;;;;41219:23;41131:19;41116:70;41219:23;:::i;:::-;-1:-1:-1;;;;;41194:22:0;;;;;;;;;;;;;:48;40669:584;;;40440:813;;;;;:::o;38548:848::-;-1:-1:-1;;38775:18:0;;38687:7;38765:29;;;;;;;;;;:41;-1:-1:-1;;;;;38765:41:0;:56;-1:-1:-1;38761:123:0;;-1:-1:-1;;;38850:18:0;;38840:29;;;;;;;;;;;:35;-1:-1:-1;;;38840:35:0;;-1:-1:-1;;;;;38840:35:0;38833:42;;38761:123;38892:13;-1:-1:-1;;38933:18:0;;38959:390;38974:5;38966;:13;38959:390;;;39034:1;39017:13;;;39016:19;39008:27;;38991:14;39099:17;;;;;;;;;;;;39072:44;;;;;;;;;-1:-1:-1;;;;;39072:44:0;;;;;;-1:-1:-1;;;39072:44:0;;;;;;;;;;;39130:35;;;39126:215;;39186:14;;;-1:-1:-1;;;;;39179:21:0;;-1:-1:-1;39179:21:0;;-1:-1:-1;;;39179:21:0;39126:215;39221:20;;-1:-1:-1;;;;;39221:34:0;;-1:-1:-1;39217:124:0;;;39277:6;39269:14;;39217:124;;;39329:1;39320:6;:10;39312:18;;39217:124;38981:368;;38959:390;;;-1:-1:-1;39363:16:0;;;;;;;;;-1:-1:-1;;39363:16:0;;;;:22;-1:-1:-1;;;39363:22:0;;-1:-1:-1;;;;;39363:22:0;;38548:848;-1:-1:-1;38548:848:0:o;48220:446::-;48385:12;48442:5;48417:21;:30;;48409:81;;;;-1:-1:-1;;;48409:81:0;;40432:2:1;48409:81:0;;;40414:21:1;40471:2;40451:18;;;40444:30;40510:34;40490:18;;;40483:62;-1:-1:-1;;;40561:18:1;;;40554:36;40607:19;;48409:81:0;40230:402:1;48409:81:0;48501:12;48515:23;48542:6;-1:-1:-1;;;;;48542:11:0;48561:5;48568:4;48542:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48500:73;;;;48590:69;48617:6;48625:7;48634:10;48646:12;50906;50934:7;50930:418;;;50961:10;:17;50982:1;50961:22;50957:286;;-1:-1:-1;;;;;44726:19:0;;;51168:60;;;;-1:-1:-1;;;51168:60:0;;41131:2:1;51168:60:0;;;41113:21:1;41170:2;41150:18;;;41143:30;41209:31;41189:18;;;41182:59;41258:18;;51168:60:0;40929:353:1;51168:60:0;-1:-1:-1;51263:10:0;51256:17;;50930:418;51304:33;51312:10;51324:12;52035:17;;:21;52031:379;;52263:10;52257:17;52319:15;52306:10;52302:2;52298:19;52291:44;52031:379;52386:12;52379:20;;-1:-1:-1;;;52379:20:0;;;;;;;;:::i;14:131:1:-;-1:-1:-1;;;;;89:31:1;;79:42;;69:70;;135:1;132;125:12;150:367;218:6;226;279:2;267:9;258:7;254:23;250:32;247:52;;;295:1;292;285:12;247:52;334:9;321:23;353:31;378:5;353:31;:::i;:::-;403:5;481:2;466:18;;;;453:32;;-1:-1:-1;;;150:367:1:o;704:250::-;789:1;799:113;813:6;810:1;807:13;799:113;;;889:11;;;883:18;870:11;;;863:39;835:2;828:10;799:113;;;-1:-1:-1;;946:1:1;928:16;;921:27;704:250::o;959:271::-;1001:3;1039:5;1033:12;1066:6;1061:3;1054:19;1082:76;1151:6;1144:4;1139:3;1135:14;1128:4;1121:5;1117:16;1082:76;:::i;:::-;1212:2;1191:15;-1:-1:-1;;1187:29:1;1178:39;;;;1219:4;1174:50;;959:271;-1:-1:-1;;959:271:1:o;1235:220::-;1384:2;1373:9;1366:21;1347:4;1404:45;1445:2;1434:9;1430:18;1422:6;1404:45;:::i;1460:247::-;1519:6;1572:2;1560:9;1551:7;1547:23;1543:32;1540:52;;;1588:1;1585;1578:12;1540:52;1627:9;1614:23;1646:31;1671:5;1646:31;:::i;2200:226::-;2259:6;2312:2;2300:9;2291:7;2287:23;2283:32;2280:52;;;2328:1;2325;2318:12;2280:52;-1:-1:-1;2373:23:1;;2200:226;-1:-1:-1;2200:226:1:o;2639:508::-;2716:6;2724;2732;2785:2;2773:9;2764:7;2760:23;2756:32;2753:52;;;2801:1;2798;2791:12;2753:52;2840:9;2827:23;2859:31;2884:5;2859:31;:::i;:::-;2909:5;-1:-1:-1;2966:2:1;2951:18;;2938:32;2979:33;2938:32;2979:33;:::i;:::-;2639:508;;3031:7;;-1:-1:-1;;;3111:2:1;3096:18;;;;3083:32;;2639:508::o;3993:388::-;4061:6;4069;4122:2;4110:9;4101:7;4097:23;4093:32;4090:52;;;4138:1;4135;4128:12;4090:52;4177:9;4164:23;4196:31;4221:5;4196:31;:::i;:::-;4246:5;-1:-1:-1;4303:2:1;4288:18;;4275:32;4316:33;4275:32;4316:33;:::i;:::-;4368:7;4358:17;;;3993:388;;;;;:::o;5419:155::-;5499:20;;5548:1;5538:12;;5528:40;;5564:1;5561;5554:12;5528:40;5419:155;;;:::o;5579:352::-;5666:6;5674;5727:2;5715:9;5706:7;5702:23;5698:32;5695:52;;;5743:1;5740;5733:12;5695:52;5782:9;5769:23;5801:31;5826:5;5801:31;:::i;:::-;5851:5;-1:-1:-1;5875:50:1;5921:2;5906:18;;5875:50;:::i;:::-;5865:60;;5579:352;;;;;:::o;5936:156::-;6002:20;;6062:4;6051:16;;6041:27;;6031:55;;6082:1;6079;6072:12;6097:800;6199:6;6207;6215;6223;6231;6239;6292:3;6280:9;6271:7;6267:23;6263:33;6260:53;;;6309:1;6306;6299:12;6260:53;6348:9;6335:23;6367:31;6392:5;6367:31;:::i;:::-;6417:5;-1:-1:-1;6495:2:1;6480:18;;6467:32;;-1:-1:-1;6598:2:1;6583:18;;6570:32;;-1:-1:-1;6647:36:1;6679:2;6664:18;;6647:36;:::i;:::-;6097:800;;;;-1:-1:-1;6097:800:1;;6756:3;6741:19;;6728:33;;6860:3;6845:19;;;6832:33;;-1:-1:-1;6097:800:1;-1:-1:-1;;6097:800:1:o;7125:276::-;7183:6;7236:2;7224:9;7215:7;7211:23;7207:32;7204:52;;;7252:1;7249;7242:12;7204:52;7291:9;7278:23;7341:10;7334:5;7330:22;7323:5;7320:33;7310:61;;7367:1;7364;7357:12;7777:629;7863:6;7871;7879;7887;7940:3;7928:9;7919:7;7915:23;7911:33;7908:53;;;7957:1;7954;7947:12;7908:53;7996:9;7983:23;8015:31;8040:5;8015:31;:::i;:::-;8065:5;-1:-1:-1;8122:2:1;8107:18;;8094:32;8135:33;8094:32;8135:33;:::i;:::-;7777:629;;8187:7;;-1:-1:-1;;;;8267:2:1;8252:18;;8239:32;;8370:2;8355:18;8342:32;;7777:629::o;8411:771::-;8506:6;8514;8522;8530;8538;8591:3;8579:9;8570:7;8566:23;8562:33;8559:53;;;8608:1;8605;8598:12;8559:53;8647:9;8634:23;8666:31;8691:5;8666:31;:::i;:::-;8716:5;-1:-1:-1;8773:2:1;8758:18;;8745:32;8786:33;8745:32;8786:33;:::i;:::-;8838:7;-1:-1:-1;8897:2:1;8882:18;;8869:32;8910:33;8869:32;8910:33;:::i;:::-;8411:771;;;;-1:-1:-1;8962:7:1;;9042:2;9027:18;;9014:32;;-1:-1:-1;9145:3:1;9130:19;9117:33;;8411:771;-1:-1:-1;;8411:771:1:o;9187:367::-;9255:6;9263;9316:2;9304:9;9295:7;9291:23;9287:32;9284:52;;;9332:1;9329;9322:12;9284:52;9377:23;;;-1:-1:-1;9476:2:1;9461:18;;9448:32;9489:33;9448:32;9489:33;:::i;9559:127::-;9620:10;9615:3;9611:20;9608:1;9601:31;9651:4;9648:1;9641:15;9675:4;9672:1;9665:15;9691:253;9763:2;9757:9;9805:4;9793:17;;9840:18;9825:34;;9861:22;;;9822:62;9819:88;;;9887:18;;:::i;:::-;9923:2;9916:22;9691:253;:::o;9949:275::-;10020:2;10014:9;10085:2;10066:13;;-1:-1:-1;;10062:27:1;10050:40;;10120:18;10105:34;;10141:22;;;10102:62;10099:88;;;10167:18;;:::i;:::-;10203:2;10196:22;9949:275;;-1:-1:-1;9949:275:1:o;10229:1511::-;10346:6;10399:2;10387:9;10378:7;10374:23;10370:32;10367:52;;;10415:1;10412;10405:12;10367:52;10455:9;10442:23;10488:18;10480:6;10477:30;10474:50;;;10520:1;10517;10510:12;10474:50;10543:22;;10596:4;10588:13;;10584:27;-1:-1:-1;10574:55:1;;10625:1;10622;10615:12;10574:55;10665:2;10652:16;10691:18;10683:6;10680:30;10677:56;;;10713:18;;:::i;:::-;10753:40;10789:2;10780:6;10777:1;10773:14;10769:23;10753:40;:::i;:::-;10815:3;10839:6;10834:3;10827:19;10871:2;10866:3;10862:12;10855:19;;10929:2;10921:4;10913:6;10909:17;10905:2;10901:26;10897:35;10883:49;;10955:7;10947:6;10944:19;10941:39;;;10976:1;10973;10966:12;10941:39;11008:2;11004;11000:11;10989:22;;11020:690;11036:6;11031:3;11028:15;11020:690;;;11118:4;11112:3;11103:7;11099:17;11095:28;11092:48;;;11136:1;11133;11126:12;11092:48;11166:22;;:::i;:::-;11229:3;11216:17;-1:-1:-1;;;;;11272:7:1;11268:48;11259:7;11256:61;11246:89;;11331:1;11328;11321:12;11246:89;11348:22;;11445:2;11436:12;;;11423:26;11469:14;;;11462:31;11543:2;11534:12;;11521:26;11560:33;11521:26;11560:33;:::i;:::-;11624:2;11613:14;;11606:31;11650:18;;11062:4;11053:14;;;;;11697:2;11688:12;;;;11020:690;;11745:472;11841:6;11849;11857;11910:2;11898:9;11889:7;11885:23;11881:32;11878:52;;;11926:1;11923;11916:12;11878:52;11965:9;11952:23;11984:31;12009:5;11984:31;:::i;:::-;12034:5;-1:-1:-1;12112:2:1;12097:18;;12084:32;;-1:-1:-1;12161:50:1;12207:2;12192:18;;12161:50;:::i;:::-;12151:60;;11745:472;;;;;:::o;12452:942::-;12563:6;12571;12579;12587;12595;12603;12611;12664:3;12652:9;12643:7;12639:23;12635:33;12632:53;;;12681:1;12678;12671:12;12632:53;12720:9;12707:23;12739:31;12764:5;12739:31;:::i;:::-;12789:5;-1:-1:-1;12846:2:1;12831:18;;12818:32;12859:33;12818:32;12859:33;:::i;:::-;12911:7;-1:-1:-1;12991:2:1;12976:18;;12963:32;;-1:-1:-1;13094:2:1;13079:18;;13066:32;;-1:-1:-1;13143:37:1;13175:3;13160:19;;13143:37;:::i;:::-;12452:942;;;;-1:-1:-1;12452:942:1;;;;13133:47;13253:3;13238:19;;13225:33;;-1:-1:-1;13357:3:1;13342:19;;;13329:33;;12452:942;-1:-1:-1;;12452:942:1:o;13399:487::-;13476:6;13484;13492;13545:2;13533:9;13524:7;13520:23;13516:32;13513:52;;;13561:1;13558;13551:12;13513:52;13600:9;13587:23;13619:31;13644:5;13619:31;:::i;:::-;13669:5;13747:2;13732:18;;13719:32;;-1:-1:-1;13850:2:1;13835:18;;;13822:32;;13399:487;-1:-1:-1;;;13399:487:1:o;14297:906::-;14427:6;14435;14443;14451;14459;14467;14475;14528:3;14516:9;14507:7;14503:23;14499:33;14496:53;;;14545:1;14542;14535:12;14496:53;14584:9;14571:23;14603:31;14628:5;14603:31;:::i;:::-;14653:5;-1:-1:-1;14677:50:1;14723:2;14708:18;;14677:50;:::i;15208:349::-;15410:2;15392:21;;;15449:2;15429:18;;;15422:30;15488:27;15483:2;15468:18;;15461:55;15548:2;15533:18;;15208:349::o;16260:127::-;16321:10;16316:3;16312:20;16309:1;16302:31;16352:4;16349:1;16342:15;16376:4;16373:1;16366:15;16392:128;16459:9;;;16480:11;;;16477:37;;;16494:18;;:::i;16874:380::-;16953:1;16949:12;;;;16996;;;17017:61;;17071:4;17063:6;17059:17;17049:27;;17017:61;17124:2;17116:6;17113:14;17093:18;17090:38;17087:161;;17170:10;17165:3;17161:20;17158:1;17151:31;17205:4;17202:1;17195:15;17233:4;17230:1;17223:15;17087:161;;16874:380;;;:::o;17259:347::-;17461:2;17443:21;;;17500:2;17480:18;;;17473:30;17539:25;17534:2;17519:18;;17512:53;17597:2;17582:18;;17259:347::o;17611:125::-;17676:9;;;17697:10;;;17694:36;;;17710:18;;:::i;18433:168::-;18506:9;;;18537;;18554:15;;;18548:22;;18534:37;18524:71;;18575:18;;:::i;18738:217::-;18778:1;18804;18794:132;;18848:10;18843:3;18839:20;18836:1;18829:31;18883:4;18880:1;18873:15;18911:4;18908:1;18901:15;18794:132;-1:-1:-1;18940:9:1;;18738:217::o;19985:127::-;20046:10;20041:3;20037:20;20034:1;20027:31;20077:4;20074:1;20067:15;20101:4;20098:1;20091:15;21217:277;21284:6;21337:2;21325:9;21316:7;21312:23;21308:32;21305:52;;;21353:1;21350;21343:12;21305:52;21385:9;21379:16;21438:5;21431:13;21424:21;21417:5;21414:32;21404:60;;21460:1;21457;21450:12;22621:392;-1:-1:-1;;;22879:27:1;;22931:1;22922:11;;22915:27;;;;22967:2;22958:12;;22951:28;23004:2;22995:12;;22621:392::o;23421:341::-;23623:2;23605:21;;;23662:2;23642:18;;;23635:30;-1:-1:-1;;;23696:2:1;23681:18;;23674:47;23753:2;23738:18;;23421:341::o;23767:135::-;23806:3;23827:17;;;23824:43;;23847:18;;:::i;:::-;-1:-1:-1;23894:1:1;23883:13;;23767:135::o;24249:342::-;24451:2;24433:21;;;24490:2;24470:18;;;24463:30;-1:-1:-1;;;24524:2:1;24509:18;;24502:48;24582:2;24567:18;;24249:342::o;25530:127::-;25591:10;25586:3;25582:20;25579:1;25572:31;25622:4;25619:1;25612:15;25646:4;25643:1;25636:15;26871:188;26909:3;26953:10;26946:5;26942:22;26988:10;26979:7;26976:23;26973:49;;27002:18;;:::i;:::-;27051:1;27038:15;;26871:188;-1:-1:-1;;26871:188:1:o;27872:343::-;28074:2;28056:21;;;28113:2;28093:18;;;28086:30;-1:-1:-1;;;28147:2:1;28132:18;;28125:49;28206:2;28191:18;;27872:343::o;29278:198::-;-1:-1:-1;;;;;29378:27:1;;;29349;;;29345:61;;29418:29;;29415:55;;;29450:18;;:::i;31170:242::-;31256:1;31249:5;31246:12;31236:143;;31301:10;31296:3;31292:20;31289:1;31282:31;31336:4;31333:1;31326:15;31364:4;31361:1;31354:15;31236:143;31388:18;;31170:242::o;31417:218::-;31568:2;31553:18;;31580:49;31557:9;31611:6;31580:49;:::i;36928:289::-;37119:25;;;37107:2;37092:18;;37153:58;37207:2;37192:18;;37184:6;37153:58;:::i;37582:375::-;37670:1;37688:5;37702:249;37723:1;37713:8;37710:15;37702:249;;;37773:4;37768:3;37764:14;37758:4;37755:24;37752:50;;;37782:18;;:::i;:::-;37832:1;37822:8;37818:16;37815:49;;;37846:16;;;;37815:49;37929:1;37925:16;;;;;37885:15;;37702:249;;;37582:375;;;;;;:::o;37962:902::-;38011:5;38041:8;38031:80;;-1:-1:-1;38082:1:1;38096:5;;38031:80;38130:4;38120:76;;-1:-1:-1;38167:1:1;38181:5;;38120:76;38212:4;38230:1;38225:59;;;;38298:1;38293:174;;;;38205:262;;38225:59;38255:1;38246:10;;38269:5;;;38293:174;38330:3;38320:8;38317:17;38314:43;;;38337:18;;:::i;:::-;-1:-1:-1;;38393:1:1;38379:16;;38452:5;;38205:262;;38551:2;38541:8;38538:16;38532:3;38526:4;38523:13;38519:36;38513:2;38503:8;38500:16;38495:2;38489:4;38486:12;38482:35;38479:77;38476:203;;;-1:-1:-1;38588:19:1;;;38664:5;;38476:203;38711:42;-1:-1:-1;;38736:8:1;38730:4;38711:42;:::i;:::-;38789:6;38785:1;38781:6;38777:19;38768:7;38765:32;38762:58;;;38800:18;;:::i;:::-;38838:20;;37962:902;-1:-1:-1;;;37962:902:1:o;38869:131::-;38929:5;38958:36;38985:8;38979:4;38958:36;:::i;40637:287::-;40766:3;40804:6;40798:13;40820:66;40879:6;40874:3;40867:4;40859:6;40855:17;40820:66;:::i;:::-;40902:16;;;;;40637:287;-1:-1:-1;;40637:287:1:o"},"methodIdentifiers":{"CLAIM_HELPER_ROLE()":"dbc0ed8a","COOLDOWN_ADMIN_ROLE()":"9e3ffce0","COOLDOWN_SECONDS()":"72b49d63","DELEGATE_BY_TYPE_TYPEHASH()":"aa9fbe02","DELEGATE_TYPEHASH()":"41cbf54a","DISTRIBUTION_END()":"919cd40f","DOMAIN_SEPARATOR()":"3644e515","EIP712_REVISION()":"78160376","EMISSION_MANAGER()":"cbcbb507","EXCHANGE_RATE_UNIT()":"8e9b2ca4","INITIAL_EXCHANGE_RATE()":"58146d17","LOWER_BOUND()":"6198e135","PERMIT_TYPEHASH()":"30adf81f","PRECISION()":"aaf5eb68","REVISION()":"dde43cba","REWARDS_VAULT()":"946776cd","REWARD_TOKEN()":"99248ea7","SLASH_ADMIN_ROLE()":"8c9a281d","STAKED_TOKEN()":"312f6b83","UNSTAKE_WINDOW()":"359c4a96","_aaveGovernance()":"c3863ada","_nonces(address)":"b9844d8d","_votingSnapshots(address,uint256)":"5b3cc0cf","_votingSnapshotsCounts(address)":"7bb73c97","allowance(address,address)":"dd62ed3e","approve(address,uint256)":"095ea7b3","assets(address)":"f11b8188","balanceOf(address)":"70a08231","claimRewards(address,uint256)":"9a99b4f0","claimRewardsAndRedeem(address,uint256,uint256)":"eab52318","claimRewardsAndRedeemOnBehalf(address,address,uint256,uint256)":"9c9b5154","claimRewardsAndStake(address,uint256)":"955e18af","claimRewardsAndStakeOnBehalf(address,address,uint256)":"c18f539a","claimRewardsOnBehalf(address,address,uint256)":"20fb80b5","claimRoleAdmin(uint256)":"fde9eb69","configureAssets((uint128,uint256,address)[])":"b2a5dbfa","cooldown()":"787a08a6","cooldownOnBehalfOf(address)":"250201db","decimals()":"313ce567","decreaseAllowance(address,uint256)":"a457c2d7","delegate(address)":"5c19a95c","delegateBySig(address,uint256,uint256,uint8,bytes32,bytes32)":"c3cda520","delegateByType(address,uint8)":"dc937e1c","delegateByTypeBySig(address,uint8,uint256,uint256,uint8,bytes32,bytes32)":"f713d8a8","getAdmin(uint256)":"111fd88b","getCooldownSeconds()":"616e0bf9","getDelegateeByType(address,uint8)":"6f50458d","getExchangeRate()":"e6aa216c","getExchangeRateSnapshot(uint32)":"8ef98e0e","getExchangeRateSnapshotsCount()":"60ba192b","getMaxSlashablePercentage()":"f34d96da","getPendingAdmin(uint256)":"4575e69b","getPowerAtBlock(address,uint256,uint8)":"c2ffbb91","getPowerCurrent(address,uint8)":"b2f4201d","getTotalRewardsBalance(address)":"8dbefee2","getUserAssetData(address,address)":"3373ee4c","ghoDebtToken()":"174ed542","inPostSlashingPeriod()":"f036bc68","increaseAllowance(address,uint256)":"39509351","initialize(address,address,address,uint256,uint256)":"a6b63eb8","name()":"06fdde03","permit(address,address,uint256,uint256,uint8,bytes32,bytes32)":"d505accf","previewRedeem(uint256)":"4cdad506","previewStake(uint256)":"727a5d57","redeem(address,uint256)":"1e9a6950","redeemOnBehalf(address,address,uint256)":"112d037c","returnFunds(uint256)":"45755dd6","setCooldownSeconds(uint256)":"7b5b1157","setGHODebtToken(address)":"4998fffd","setMaxSlashablePercentage(uint256)":"74011f56","setPendingAdmin(uint256,address)":"ab406fe6","settleSlashing()":"aff05aa9","slash(address,uint256)":"02fb4d85","stake(address,uint256)":"adc9772e","stakeWithPermit(address,uint256,uint256,uint8,bytes32,bytes32)":"73d6a889","stakerRewardsToClaim(address)":"7e90d7ef","stakersCooldowns(address)":"091030c3","symbol()":"95d89b41","totalSupply()":"18160ddd","totalSupplyAt(uint256)":"981b24d0","transfer(address,uint256)":"a9059cbb","transferFrom(address,address,uint256)":"23b872dd"}},"metadata":"{\"compiler\":{\"version\":\"0.8.27+commit.40a35a09\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"contract IERC20\",\"name\":\"stakedToken\",\"type\":\"address\"},{\"internalType\":\"contract IERC20\",\"name\":\"rewardToken\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"unstakeWindow\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"rewardsVault\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"emissionManager\",\"type\":\"address\"},{\"internalType\":\"uint128\",\"name\":\"distributionDuration\",\"type\":\"uint128\"}],\"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\":\"asset\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"emission\",\"type\":\"uint256\"}],\"name\":\"AssetConfigUpdated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"asset\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"index\",\"type\":\"uint256\"}],\"name\":\"AssetIndexUpdated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"Cooldown\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"cooldownSeconds\",\"type\":\"uint256\"}],\"name\":\"CooldownSecondsChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"delegator\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"delegatee\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"enum IGovernancePowerDelegationToken.DelegationType\",\"name\":\"delegationType\",\"type\":\"uint8\"}],\"name\":\"DelegateChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"enum IGovernancePowerDelegationToken.DelegationType\",\"name\":\"delegationType\",\"type\":\"uint8\"}],\"name\":\"DelegatedPowerChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint216\",\"name\":\"exchangeRate\",\"type\":\"uint216\"}],\"name\":\"ExchangeRateChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"FundsReturned\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newDebtToken\",\"type\":\"address\"}],\"name\":\"GHODebtTokenChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"newPercentage\",\"type\":\"uint256\"}],\"name\":\"MaxSlashablePercentageChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newPendingAdmin\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"role\",\"type\":\"uint256\"}],\"name\":\"PendingAdminChanged\",\"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\":\"assets\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"}],\"name\":\"Redeem\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"RewardsAccrued\",\"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\":\"amount\",\"type\":\"uint256\"}],\"name\":\"RewardsClaimed\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newAdmin\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"role\",\"type\":\"uint256\"}],\"name\":\"RoleClaimed\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"destination\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"Slashed\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"windowSeconds\",\"type\":\"uint256\"}],\"name\":\"SlashingExitWindowDurationChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[],\"name\":\"SlashingSettled\",\"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\":\"assets\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"}],\"name\":\"Staked\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Transfer\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"asset\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"index\",\"type\":\"uint256\"}],\"name\":\"UserIndexUpdated\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"CLAIM_HELPER_ROLE\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"COOLDOWN_ADMIN_ROLE\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"COOLDOWN_SECONDS\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"DELEGATE_BY_TYPE_TYPEHASH\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"DELEGATE_TYPEHASH\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"DISTRIBUTION_END\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"DOMAIN_SEPARATOR\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"EIP712_REVISION\",\"outputs\":[{\"internalType\":\"bytes\",\"name\":\"\",\"type\":\"bytes\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"EMISSION_MANAGER\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"EXCHANGE_RATE_UNIT\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"INITIAL_EXCHANGE_RATE\",\"outputs\":[{\"internalType\":\"uint216\",\"name\":\"\",\"type\":\"uint216\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"LOWER_BOUND\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"PERMIT_TYPEHASH\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"PRECISION\",\"outputs\":[{\"internalType\":\"uint8\",\"name\":\"\",\"type\":\"uint8\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"REVISION\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"REWARDS_VAULT\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"REWARD_TOKEN\",\"outputs\":[{\"internalType\":\"contract IERC20\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"SLASH_ADMIN_ROLE\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"STAKED_TOKEN\",\"outputs\":[{\"internalType\":\"contract IERC20\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"UNSTAKE_WINDOW\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"_aaveGovernance\",\"outputs\":[{\"internalType\":\"contract ITransferHook\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"name\":\"_nonces\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"name\":\"_votingSnapshots\",\"outputs\":[{\"internalType\":\"uint128\",\"name\":\"blockNumber\",\"type\":\"uint128\"},{\"internalType\":\"uint128\",\"name\":\"value\",\"type\":\"uint128\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"name\":\"_votingSnapshotsCounts\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"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\":\"\",\"type\":\"address\"}],\"name\":\"assets\",\"outputs\":[{\"internalType\":\"uint128\",\"name\":\"emissionPerSecond\",\"type\":\"uint128\"},{\"internalType\":\"uint128\",\"name\":\"lastUpdateTimestamp\",\"type\":\"uint128\"},{\"internalType\":\"uint256\",\"name\":\"index\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"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\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"claimRewards\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"claimAmount\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"redeemAmount\",\"type\":\"uint256\"}],\"name\":\"claimRewardsAndRedeem\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"claimAmount\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"redeemAmount\",\"type\":\"uint256\"}],\"name\":\"claimRewardsAndRedeemOnBehalf\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"claimRewardsAndStake\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"claimRewardsAndStakeOnBehalf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"claimRewardsOnBehalf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"role\",\"type\":\"uint256\"}],\"name\":\"claimRoleAdmin\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"uint128\",\"name\":\"emissionPerSecond\",\"type\":\"uint128\"},{\"internalType\":\"uint256\",\"name\":\"totalStaked\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"underlyingAsset\",\"type\":\"address\"}],\"internalType\":\"struct DistributionTypes.AssetConfigInput[]\",\"name\":\"assetsConfigInput\",\"type\":\"tuple[]\"}],\"name\":\"configureAssets\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"cooldown\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"}],\"name\":\"cooldownOnBehalfOf\",\"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\":\"delegatee\",\"type\":\"address\"}],\"name\":\"delegate\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"delegatee\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"nonce\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"expiry\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"v\",\"type\":\"uint8\"},{\"internalType\":\"bytes32\",\"name\":\"r\",\"type\":\"bytes32\"},{\"internalType\":\"bytes32\",\"name\":\"s\",\"type\":\"bytes32\"}],\"name\":\"delegateBySig\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"delegatee\",\"type\":\"address\"},{\"internalType\":\"enum IGovernancePowerDelegationToken.DelegationType\",\"name\":\"delegationType\",\"type\":\"uint8\"}],\"name\":\"delegateByType\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"delegatee\",\"type\":\"address\"},{\"internalType\":\"enum IGovernancePowerDelegationToken.DelegationType\",\"name\":\"delegationType\",\"type\":\"uint8\"},{\"internalType\":\"uint256\",\"name\":\"nonce\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"expiry\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"v\",\"type\":\"uint8\"},{\"internalType\":\"bytes32\",\"name\":\"r\",\"type\":\"bytes32\"},{\"internalType\":\"bytes32\",\"name\":\"s\",\"type\":\"bytes32\"}],\"name\":\"delegateByTypeBySig\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"role\",\"type\":\"uint256\"}],\"name\":\"getAdmin\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getCooldownSeconds\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"delegator\",\"type\":\"address\"},{\"internalType\":\"enum IGovernancePowerDelegationToken.DelegationType\",\"name\":\"delegationType\",\"type\":\"uint8\"}],\"name\":\"getDelegateeByType\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getExchangeRate\",\"outputs\":[{\"internalType\":\"uint216\",\"name\":\"\",\"type\":\"uint216\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint32\",\"name\":\"index\",\"type\":\"uint32\"}],\"name\":\"getExchangeRateSnapshot\",\"outputs\":[{\"components\":[{\"internalType\":\"uint40\",\"name\":\"blockNumber\",\"type\":\"uint40\"},{\"internalType\":\"uint216\",\"name\":\"value\",\"type\":\"uint216\"}],\"internalType\":\"struct IStakedPSYSV3.ExchangeRateSnapshot\",\"name\":\"\",\"type\":\"tuple\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getExchangeRateSnapshotsCount\",\"outputs\":[{\"internalType\":\"uint32\",\"name\":\"\",\"type\":\"uint32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getMaxSlashablePercentage\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"role\",\"type\":\"uint256\"}],\"name\":\"getPendingAdmin\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"blockNumber\",\"type\":\"uint256\"},{\"internalType\":\"enum IGovernancePowerDelegationToken.DelegationType\",\"name\":\"delegationType\",\"type\":\"uint8\"}],\"name\":\"getPowerAtBlock\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"internalType\":\"enum IGovernancePowerDelegationToken.DelegationType\",\"name\":\"delegationType\",\"type\":\"uint8\"}],\"name\":\"getPowerCurrent\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"staker\",\"type\":\"address\"}],\"name\":\"getTotalRewardsBalance\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"asset\",\"type\":\"address\"}],\"name\":\"getUserAssetData\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"ghoDebtToken\",\"outputs\":[{\"internalType\":\"contract IGhoVariableDebtTokenTransferHook\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"inPostSlashingPeriod\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"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\":\"slashingAdmin\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"cooldownPauseAdmin\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"claimHelper\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"maxSlashablePercentage\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"cooldownSeconds\",\"type\":\"uint256\"}],\"name\":\"initialize\",\"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\"},{\"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\":[{\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"}],\"name\":\"previewRedeem\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"}],\"name\":\"previewStake\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"redeem\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"redeemOnBehalf\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"returnFunds\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"cooldownSeconds\",\"type\":\"uint256\"}],\"name\":\"setCooldownSeconds\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"contract IGhoVariableDebtTokenTransferHook\",\"name\":\"newGHODebtToken\",\"type\":\"address\"}],\"name\":\"setGHODebtToken\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"percentage\",\"type\":\"uint256\"}],\"name\":\"setMaxSlashablePercentage\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"role\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"newPendingAdmin\",\"type\":\"address\"}],\"name\":\"setPendingAdmin\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"settleSlashing\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"destination\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"slash\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"stake\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"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\":\"stakeWithPermit\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"name\":\"stakerRewardsToClaim\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"name\":\"stakersCooldowns\",\"outputs\":[{\"internalType\":\"uint40\",\"name\":\"timestamp\",\"type\":\"uint40\"},{\"internalType\":\"uint216\",\"name\":\"amount\",\"type\":\"uint216\"}],\"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\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"name\":\"totalSupplyAt\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"transfer\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"transferFrom\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"author\":\"BGD Labs, modified by Pegasys\",\"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.\"},\"DelegateChanged(address,address,uint8)\":{\"details\":\"emitted when a user delegates to another\",\"params\":{\"delegatee\":\"the delegatee\",\"delegationType\":\"the type of delegation (VOTING_POWER, PROPOSITION_POWER)*\",\"delegator\":\"the delegator\"}},\"DelegatedPowerChanged(address,uint256,uint8)\":{\"details\":\"emitted when an action changes the delegated power of a user\",\"params\":{\"amount\":\"the amount of delegated power for the user\",\"delegationType\":\"the type of delegation (VOTING_POWER, PROPOSITION_POWER)*\",\"user\":\"the user which delegated power has changed\"}},\"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\":{\"COOLDOWN_SECONDS()\":{\"details\":\"Getter of the cooldown seconds\",\"returns\":{\"_0\":\"cooldownSeconds the amount of seconds between starting the cooldown and being able to redeem\"}},\"REVISION()\":{\"details\":\"returns the revision of the implementation contract\",\"returns\":{\"_0\":\"The revision\"}},\"allowance(address,address)\":{\"details\":\"See {IERC20-allowance}.\"},\"approve(address,uint256)\":{\"details\":\"See {IERC20-approve}. NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on `transferFrom`. This is semantically equivalent to an infinite approval. Requirements: - `spender` cannot be the zero address.\"},\"balanceOf(address)\":{\"details\":\"See {IERC20-balanceOf}.\"},\"claimRewards(address,uint256)\":{\"details\":\"Claims an `amount` of `REWARD_TOKEN` to the address `to`\",\"params\":{\"amount\":\"Amount to stake\",\"to\":\"Address to send the claimed rewards\"}},\"claimRewardsAndRedeem(address,uint256,uint256)\":{\"details\":\"Claims an `amount` of `REWARD_TOKEN` and redeems to the provided address\",\"params\":{\"claimAmount\":\"Amount to claim\",\"redeemAmount\":\"Amount to redeem\",\"to\":\"Address to claim and redeem to\"}},\"claimRewardsAndRedeemOnBehalf(address,address,uint256,uint256)\":{\"details\":\"Claims an `amount` of `REWARD_TOKEN` and redeems the `redeemAmount` to an address. Only the claim helper contract is allowed to call this function\",\"params\":{\"claimAmount\":\"Amount to claim\",\"from\":\"The address of the from\",\"redeemAmount\":\"Amount to redeem\",\"to\":\"Address to claim and redeem to\"}},\"claimRewardsAndStake(address,uint256)\":{\"details\":\"Claims an `amount` of `REWARD_TOKEN` and stakes.\",\"params\":{\"amount\":\"Amount to claim\",\"to\":\"Address to stake to\"}},\"claimRewardsAndStakeOnBehalf(address,address,uint256)\":{\"details\":\"Claims an `amount` of `REWARD_TOKEN` and stakes. Only the claim helper contract is allowed to call this function\",\"params\":{\"amount\":\"Amount to claim\",\"from\":\"The address of the from from which to claim\",\"to\":\"Address to stake to\"}},\"claimRewardsOnBehalf(address,address,uint256)\":{\"details\":\"Claims an `amount` of `REWARD_TOKEN` to the address `to` on behalf of the user. Only the claim helper contract is allowed to call this function\",\"params\":{\"amount\":\"Amount to claim\",\"from\":\"The address of the user from to claim\",\"to\":\"Address to send the claimed rewards\"}},\"claimRoleAdmin(uint256)\":{\"details\":\"allows the caller to become a specific role admin\",\"params\":{\"role\":\"the role associated with the admin claiming the new role*\"}},\"cooldown()\":{\"details\":\"Activates the cooldown period to unstake - It can't be called if the user is not staking\"},\"cooldownOnBehalfOf(address)\":{\"details\":\"Activates the cooldown period to unstake - It can't be called if the user is not staking\"},\"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`.\"},\"delegate(address)\":{\"details\":\"delegates all the powers to a specific user\",\"params\":{\"delegatee\":\"the user to which the power will be delegated*\"}},\"delegateBySig(address,uint256,uint256,uint8,bytes32,bytes32)\":{\"details\":\"Delegates power from signatory to `delegatee`\",\"params\":{\"delegatee\":\"The address to delegate votes to\",\"expiry\":\"The time at which to expire the signature\",\"nonce\":\"The contract state required to match the signature\",\"r\":\"Half of the ECDSA signature pair\",\"s\":\"Half of the ECDSA signature pair\",\"v\":\"The recovery byte of the signature\"}},\"delegateByType(address,uint8)\":{\"details\":\"delegates one specific power to a delegatee\",\"params\":{\"delegatee\":\"the user which delegated power has changed\",\"delegationType\":\"the type of delegation (VOTING_POWER, PROPOSITION_POWER)*\"}},\"delegateByTypeBySig(address,uint8,uint256,uint256,uint8,bytes32,bytes32)\":{\"details\":\"Delegates power from signatory to `delegatee`\",\"params\":{\"delegatee\":\"The address to delegate votes to\",\"delegationType\":\"the type of delegation (VOTING_POWER, PROPOSITION_POWER)\",\"expiry\":\"The time at which to expire the signature\",\"nonce\":\"The contract state required to match the signature\",\"r\":\"Half of the ECDSA signature pair\",\"s\":\"Half of the ECDSA signature pair\",\"v\":\"The recovery byte of the signature\"}},\"getAdmin(uint256)\":{\"details\":\"returns the admin associated with the specific role\",\"params\":{\"role\":\"the role associated with the admin being returned*\"}},\"getCooldownSeconds()\":{\"details\":\"Getter of the cooldown seconds\",\"returns\":{\"_0\":\"cooldownSeconds the amount of seconds between starting the cooldown and being able to redeem\"}},\"getDelegateeByType(address,uint8)\":{\"details\":\"returns the delegatee of an user\",\"params\":{\"delegator\":\"the address of the delegator*\"}},\"getExchangeRate()\":{\"details\":\"Returns the current exchange rate\",\"returns\":{\"_0\":\"exchangeRate as 18 decimal precision uint216\"}},\"getExchangeRateSnapshot(uint32)\":{\"details\":\"Returns the exchangeRate for a specified index\",\"params\":{\"index\":\"Index of the exchangeRate\"}},\"getExchangeRateSnapshotsCount()\":{\"details\":\"Returnes the number of excahngeRate snapshots\"},\"getMaxSlashablePercentage()\":{\"details\":\"Getter of the max slashable percentage of the total staked amount.\",\"returns\":{\"_0\":\"percentage the maximum slashable percentage\"}},\"getPendingAdmin(uint256)\":{\"details\":\"returns the pending admin associated with the specific role\",\"params\":{\"role\":\"the role associated with the pending admin being returned*\"}},\"getPowerAtBlock(address,uint256,uint8)\":{\"details\":\"returns the delegated power of a user at a certain block\",\"params\":{\"user\":\"the user*\"}},\"getPowerCurrent(address,uint8)\":{\"details\":\"returns the current delegated power of a user. The current power is the power delegated at the time of the last snapshot\",\"params\":{\"user\":\"the user*\"}},\"getTotalRewardsBalance(address)\":{\"details\":\"Return the total rewards pending to claim by an staker\",\"params\":{\"staker\":\"The staker address\"},\"returns\":{\"_0\":\"The rewards\"}},\"getUserAssetData(address,address)\":{\"details\":\"Returns the data of an user on a distribution\",\"params\":{\"asset\":\"The address of the reference asset of the distribution\",\"user\":\"Address of the user\"},\"returns\":{\"_0\":\"The new index\"}},\"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.\"},\"initialize(address,address,address,uint256,uint256)\":{\"details\":\"Called by the proxy contract\"},\"name()\":{\"details\":\"Returns the name of the token.\"},\"permit(address,address,uint256,uint256,uint8,bytes32,bytes32)\":{\"details\":\"implements the permit function as for https://github.com/ethereum/EIPs/blob/8a34d644aacf0f9f8f00815307fd7dd5da07655f/EIPS/eip-2612.md\",\"params\":{\"deadline\":\"the deadline timestamp, type(uint256).max for no deadline\",\"owner\":\"the owner of the funds\",\"r\":\"signature param\",\"s\":\"signature param\",\"spender\":\"the spender\",\"v\":\"signature param\",\"value\":\"the amount\"}},\"previewRedeem(uint256)\":{\"details\":\"returns the exact amount of assets that would be redeemed for the provided number of shares\",\"params\":{\"shares\":\"the number of shares to redeem\"},\"returns\":{\"_0\":\"uint256 assets the number of assets that would be redeemed\"}},\"previewStake(uint256)\":{\"details\":\"returns the exact amount of shares that would be received for the provided number of assets\",\"params\":{\"assets\":\"the number of assets to stake\"},\"returns\":{\"_0\":\"uint256 shares the number of shares that would be received\"}},\"redeem(address,uint256)\":{\"details\":\"Redeems shares, and stop earning rewards\",\"params\":{\"amount\":\"Amount of shares to redeem\",\"to\":\"Address to redeem to\"}},\"redeemOnBehalf(address,address,uint256)\":{\"details\":\"Redeems shares for a user. Only the claim helper contract is allowed to call this function\",\"params\":{\"amount\":\"Amount of shares to redeem\",\"from\":\"Address to redeem from\",\"to\":\"Address to redeem to\"}},\"returnFunds(uint256)\":{\"details\":\"Pulls STAKE_TOKEN and distributes them amongst current stakers by altering the exchange rate. This method is permissionless and intended to be used after a slashing event to return potential excess funds.\",\"params\":{\"amount\":\"amount of STAKE_TOKEN to pull.\"}},\"setCooldownSeconds(uint256)\":{\"details\":\"Setter of cooldown seconds Can only be called by the cooldown admin\",\"params\":{\"cooldownSeconds\":\"the new amount of seconds you have to wait between starting the cooldown and being able to redeem\"}},\"setGHODebtToken(address)\":{\"details\":\"Sets the GHO debt token (only callable by SHORT_EXECUTOR)\",\"params\":{\"newGHODebtToken\":\"Address to GHO debt token\"}},\"setMaxSlashablePercentage(uint256)\":{\"details\":\"Setter of max slashable percentage of the total staked amount. Can only be called by the slashing admin\",\"params\":{\"percentage\":\"the new maximum slashable percentage\"}},\"setPendingAdmin(uint256,address)\":{\"details\":\"sets the pending admin for a specific role\",\"params\":{\"newPendingAdmin\":\"the address of the new pending admin*\",\"role\":\"the role associated with the new pending admin being set\"}},\"settleSlashing()\":{\"details\":\"Settles an ongoing slashing event\"},\"slash(address,uint256)\":{\"details\":\"Executes a slashing of the underlying of a certain amount, transferring the seized funds to destination. Decreasing the amount of underlying will automatically adjust the exchange rate. A call to `slash` will start a slashing event which has to be settled via `settleSlashing`. As long as the slashing event is ongoing, stake and slash are deactivated. - MUST NOT be called when a previous slashing is still ongoing\",\"params\":{\"amount\":\"the amount to be slashed - if the amount bigger than maximum allowed, the maximum will be slashed instead.\",\"destination\":\"the address where seized funds will be transferred\"},\"returns\":{\"_0\":\"amount the amount slashed\"}},\"stake(address,uint256)\":{\"details\":\"Allows staking a specified amount of STAKED_TOKEN\",\"params\":{\"amount\":\"The amount of assets to be staked\",\"to\":\"The address to receiving the shares\"}},\"stakeWithPermit(address,uint256,uint256,uint8,bytes32,bytes32)\":{\"details\":\"Allows staking a certain amount of STAKED_TOKEN with gasless approvals (permit)\",\"params\":{\"amount\":\"The amount to be staked\",\"deadline\":\"The permit execution deadline\",\"from\":\"The address staking the token\",\"r\":\"The r component of the signed message\",\"s\":\"The s component of the signed message\",\"v\":\"The v component of the signed message\"}},\"symbol()\":{\"details\":\"Returns the symbol of the token, usually a shorter version of the name.\"},\"totalSupply()\":{\"details\":\"See {IERC20-totalSupply}.\"},\"totalSupplyAt(uint256)\":{\"details\":\"returns the total supply at a certain block number used by the voting strategy contracts to calculate the total votes needed for threshold/quorum In this initial implementation with no AAVE minting, simply returns the current supply A snapshots mapping will need to be added in case a mint function is added to the AAVE token in the future*\"},\"transfer(address,uint256)\":{\"details\":\"See {IERC20-transfer}. Requirements: - `to` cannot be the zero address. - the caller must have a balance of at least `amount`.\"},\"transferFrom(address,address,uint256)\":{\"details\":\"See {IERC20-transferFrom}. Emits an {Approval} event indicating the updated allowance. This is not required by the EIP. See the note at the beginning of {ERC20}. NOTE: Does not update the allowance if the current allowance is the maximum `uint256`. Requirements: - `from` and `to` cannot be the zero address. - `from` must have a balance of at least `amount`. - the caller must have allowance for ``from``'s tokens of at least `amount`.\"}},\"title\":\"StakedPsysV3\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{\"DELEGATE_BY_TYPE_TYPEHASH()\":{\"notice\":\"The EIP-712 typehash for the delegation struct used by the contract\"},\"LOWER_BOUND()\":{\"notice\":\"lower bound to prevent spam & avoid exchangeRate issues\"},\"REWARDS_VAULT()\":{\"notice\":\"Address to pull from the rewards, needs to have approved this contract\"},\"UNSTAKE_WINDOW()\":{\"notice\":\"Seconds available to redeem once the cooldown period is fulfilled\"},\"ghoDebtToken()\":{\"notice\":\"GHO debt token to be used in the _beforeTokenTransfer hook\"},\"inPostSlashingPeriod()\":{\"notice\":\"Flag determining if there's an ongoing slashing event that needs to be settled\"}},\"notice\":\"StakedTokenV3 with WPSYS token as staked token\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/flatten/StakedPSYSV3-flatten.sol\":\"StakedPSYSV3\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"contracts/flatten/StakedPSYSV3-flatten.sol\":{\"keccak256\":\"0x1288e9f8db9b4a153854a518648153da8175d48775832dc88c82af682197fc0c\",\"license\":\"MIT AND agpl-3.0\",\"urls\":[\"bzz-raw://c0b3c1c232cadc3e9d3315b983bfae0d842041778a8a557240729676d1b143cb\",\"dweb:/ipfs/QmWLxw9LFwrVNftCUwD8koRmWKVrcaEHemcZJY7mAjoBRN\"]}},\"version\":1}"},"StakedTokenV2":{"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":"asset","type":"address"},{"indexed":false,"internalType":"uint256","name":"emission","type":"uint256"}],"name":"AssetConfigUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"asset","type":"address"},{"indexed":false,"internalType":"uint256","name":"index","type":"uint256"}],"name":"AssetIndexUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Cooldown","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegator","type":"address"},{"indexed":true,"internalType":"address","name":"delegatee","type":"address"},{"indexed":false,"internalType":"enum IGovernancePowerDelegationToken.DelegationType","name":"delegationType","type":"uint8"}],"name":"DelegateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"enum IGovernancePowerDelegationToken.DelegationType","name":"delegationType","type":"uint8"}],"name":"DelegatedPowerChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"RewardsAccrued","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":"amount","type":"uint256"}],"name":"RewardsClaimed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"address","name":"asset","type":"address"},{"indexed":false,"internalType":"uint256","name":"index","type":"uint256"}],"name":"UserIndexUpdated","type":"event"},{"inputs":[],"name":"DELEGATE_BY_TYPE_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DELEGATE_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DISTRIBUTION_END","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"EIP712_REVISION","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"EMISSION_MANAGER","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PERMIT_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRECISION","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"REWARDS_VAULT","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"REWARD_TOKEN","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"STAKED_TOKEN","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"UNSTAKE_WINDOW","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_aaveGovernance","outputs":[{"internalType":"contract ITransferHook","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"_votingSnapshots","outputs":[{"internalType":"uint128","name":"blockNumber","type":"uint128"},{"internalType":"uint128","name":"value","type":"uint128"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_votingSnapshotsCounts","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"","type":"address"}],"name":"assets","outputs":[{"internalType":"uint128","name":"emissionPerSecond","type":"uint128"},{"internalType":"uint128","name":"lastUpdateTimestamp","type":"uint128"},{"internalType":"uint256","name":"index","type":"uint256"}],"stateMutability":"view","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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"claimRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cooldown","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":"delegatee","type":"address"}],"name":"delegate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256","name":"expiry","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"delegateBySig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"},{"internalType":"enum IGovernancePowerDelegationToken.DelegationType","name":"delegationType","type":"uint8"}],"name":"delegateByType","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"},{"internalType":"enum IGovernancePowerDelegationToken.DelegationType","name":"delegationType","type":"uint8"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256","name":"expiry","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"delegateByTypeBySig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"delegator","type":"address"},{"internalType":"enum IGovernancePowerDelegationToken.DelegationType","name":"delegationType","type":"uint8"}],"name":"getDelegateeByType","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"uint256","name":"blockNumber","type":"uint256"},{"internalType":"enum IGovernancePowerDelegationToken.DelegationType","name":"delegationType","type":"uint8"}],"name":"getPowerAtBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"enum IGovernancePowerDelegationToken.DelegationType","name":"delegationType","type":"uint8"}],"name":"getPowerCurrent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"staker","type":"address"}],"name":"getTotalRewardsBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"address","name":"asset","type":"address"}],"name":"getUserAssetData","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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"},{"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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"redeem","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"onBehalfOf","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"stake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"stakerRewardsToClaim","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"stakersCooldowns","outputs":[{"internalType":"uint40","name":"timestamp","type":"uint40"},{"internalType":"uint216","name":"amount","type":"uint216"}],"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":"uint256","name":"","type":"uint256"}],"name":"totalSupplyAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{"DELEGATE_BY_TYPE_TYPEHASH()":"aa9fbe02","DELEGATE_TYPEHASH()":"41cbf54a","DISTRIBUTION_END()":"919cd40f","DOMAIN_SEPARATOR()":"3644e515","EIP712_REVISION()":"78160376","EMISSION_MANAGER()":"cbcbb507","PERMIT_TYPEHASH()":"30adf81f","PRECISION()":"aaf5eb68","REWARDS_VAULT()":"946776cd","REWARD_TOKEN()":"99248ea7","STAKED_TOKEN()":"312f6b83","UNSTAKE_WINDOW()":"359c4a96","_aaveGovernance()":"c3863ada","_nonces(address)":"b9844d8d","_votingSnapshots(address,uint256)":"5b3cc0cf","_votingSnapshotsCounts(address)":"7bb73c97","allowance(address,address)":"dd62ed3e","approve(address,uint256)":"095ea7b3","assets(address)":"f11b8188","balanceOf(address)":"70a08231","claimRewards(address,uint256)":"9a99b4f0","cooldown()":"787a08a6","decimals()":"313ce567","decreaseAllowance(address,uint256)":"a457c2d7","delegate(address)":"5c19a95c","delegateBySig(address,uint256,uint256,uint8,bytes32,bytes32)":"c3cda520","delegateByType(address,uint8)":"dc937e1c","delegateByTypeBySig(address,uint8,uint256,uint256,uint8,bytes32,bytes32)":"f713d8a8","getDelegateeByType(address,uint8)":"6f50458d","getPowerAtBlock(address,uint256,uint8)":"c2ffbb91","getPowerCurrent(address,uint8)":"b2f4201d","getTotalRewardsBalance(address)":"8dbefee2","getUserAssetData(address,address)":"3373ee4c","increaseAllowance(address,uint256)":"39509351","name()":"06fdde03","permit(address,address,uint256,uint256,uint8,bytes32,bytes32)":"d505accf","redeem(address,uint256)":"1e9a6950","stake(address,uint256)":"adc9772e","stakerRewardsToClaim(address)":"7e90d7ef","stakersCooldowns(address)":"091030c3","symbol()":"95d89b41","totalSupply()":"18160ddd","totalSupplyAt(uint256)":"981b24d0","transfer(address,uint256)":"a9059cbb","transferFrom(address,address,uint256)":"23b872dd"}},"metadata":"{\"compiler\":{\"version\":\"0.8.27+commit.40a35a09\"},\"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\":\"asset\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"emission\",\"type\":\"uint256\"}],\"name\":\"AssetConfigUpdated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"asset\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"index\",\"type\":\"uint256\"}],\"name\":\"AssetIndexUpdated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"Cooldown\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"delegator\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"delegatee\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"enum IGovernancePowerDelegationToken.DelegationType\",\"name\":\"delegationType\",\"type\":\"uint8\"}],\"name\":\"DelegateChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"enum IGovernancePowerDelegationToken.DelegationType\",\"name\":\"delegationType\",\"type\":\"uint8\"}],\"name\":\"DelegatedPowerChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"RewardsAccrued\",\"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\":\"amount\",\"type\":\"uint256\"}],\"name\":\"RewardsClaimed\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Transfer\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"asset\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"index\",\"type\":\"uint256\"}],\"name\":\"UserIndexUpdated\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"DELEGATE_BY_TYPE_TYPEHASH\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"DELEGATE_TYPEHASH\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"DISTRIBUTION_END\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"DOMAIN_SEPARATOR\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"EIP712_REVISION\",\"outputs\":[{\"internalType\":\"bytes\",\"name\":\"\",\"type\":\"bytes\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"EMISSION_MANAGER\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"PERMIT_TYPEHASH\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"PRECISION\",\"outputs\":[{\"internalType\":\"uint8\",\"name\":\"\",\"type\":\"uint8\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"REWARDS_VAULT\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"REWARD_TOKEN\",\"outputs\":[{\"internalType\":\"contract IERC20\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"STAKED_TOKEN\",\"outputs\":[{\"internalType\":\"contract IERC20\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"UNSTAKE_WINDOW\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"_aaveGovernance\",\"outputs\":[{\"internalType\":\"contract ITransferHook\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"name\":\"_nonces\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"name\":\"_votingSnapshots\",\"outputs\":[{\"internalType\":\"uint128\",\"name\":\"blockNumber\",\"type\":\"uint128\"},{\"internalType\":\"uint128\",\"name\":\"value\",\"type\":\"uint128\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"name\":\"_votingSnapshotsCounts\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"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\":\"\",\"type\":\"address\"}],\"name\":\"assets\",\"outputs\":[{\"internalType\":\"uint128\",\"name\":\"emissionPerSecond\",\"type\":\"uint128\"},{\"internalType\":\"uint128\",\"name\":\"lastUpdateTimestamp\",\"type\":\"uint128\"},{\"internalType\":\"uint256\",\"name\":\"index\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"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\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"claimRewards\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"cooldown\",\"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\":\"delegatee\",\"type\":\"address\"}],\"name\":\"delegate\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"delegatee\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"nonce\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"expiry\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"v\",\"type\":\"uint8\"},{\"internalType\":\"bytes32\",\"name\":\"r\",\"type\":\"bytes32\"},{\"internalType\":\"bytes32\",\"name\":\"s\",\"type\":\"bytes32\"}],\"name\":\"delegateBySig\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"delegatee\",\"type\":\"address\"},{\"internalType\":\"enum IGovernancePowerDelegationToken.DelegationType\",\"name\":\"delegationType\",\"type\":\"uint8\"}],\"name\":\"delegateByType\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"delegatee\",\"type\":\"address\"},{\"internalType\":\"enum IGovernancePowerDelegationToken.DelegationType\",\"name\":\"delegationType\",\"type\":\"uint8\"},{\"internalType\":\"uint256\",\"name\":\"nonce\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"expiry\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"v\",\"type\":\"uint8\"},{\"internalType\":\"bytes32\",\"name\":\"r\",\"type\":\"bytes32\"},{\"internalType\":\"bytes32\",\"name\":\"s\",\"type\":\"bytes32\"}],\"name\":\"delegateByTypeBySig\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"delegator\",\"type\":\"address\"},{\"internalType\":\"enum IGovernancePowerDelegationToken.DelegationType\",\"name\":\"delegationType\",\"type\":\"uint8\"}],\"name\":\"getDelegateeByType\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"blockNumber\",\"type\":\"uint256\"},{\"internalType\":\"enum IGovernancePowerDelegationToken.DelegationType\",\"name\":\"delegationType\",\"type\":\"uint8\"}],\"name\":\"getPowerAtBlock\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"internalType\":\"enum IGovernancePowerDelegationToken.DelegationType\",\"name\":\"delegationType\",\"type\":\"uint8\"}],\"name\":\"getPowerCurrent\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"staker\",\"type\":\"address\"}],\"name\":\"getTotalRewardsBalance\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"asset\",\"type\":\"address\"}],\"name\":\"getUserAssetData\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"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\"},{\"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\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"redeem\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"onBehalfOf\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"stake\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"name\":\"stakerRewardsToClaim\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"name\":\"stakersCooldowns\",\"outputs\":[{\"internalType\":\"uint40\",\"name\":\"timestamp\",\"type\":\"uint40\"},{\"internalType\":\"uint216\",\"name\":\"amount\",\"type\":\"uint216\"}],\"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\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"name\":\"totalSupplyAt\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"transfer\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"transferFrom\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"author\":\"BGD Labs\",\"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.\"},\"DelegateChanged(address,address,uint8)\":{\"details\":\"emitted when a user delegates to another\",\"params\":{\"delegatee\":\"the delegatee\",\"delegationType\":\"the type of delegation (VOTING_POWER, PROPOSITION_POWER)*\",\"delegator\":\"the delegator\"}},\"DelegatedPowerChanged(address,uint256,uint8)\":{\"details\":\"emitted when an action changes the delegated power of a user\",\"params\":{\"amount\":\"the amount of delegated power for the user\",\"delegationType\":\"the type of delegation (VOTING_POWER, PROPOSITION_POWER)*\",\"user\":\"the user which delegated power has changed\"}},\"Transfer(address,address,uint256)\":{\"details\":\"Emitted when `value` tokens are moved from one account (`from`) to another (`to`). Note that `value` may be zero.\"}},\"kind\":\"dev\",\"methods\":{\"allowance(address,address)\":{\"details\":\"See {IERC20-allowance}.\"},\"approve(address,uint256)\":{\"details\":\"See {IERC20-approve}. NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on `transferFrom`. This is semantically equivalent to an infinite approval. Requirements: - `spender` cannot be the zero address.\"},\"balanceOf(address)\":{\"details\":\"See {IERC20-balanceOf}.\"},\"claimRewards(address,uint256)\":{\"details\":\"Claims an `amount` of `REWARD_TOKEN` to the address `to`\",\"params\":{\"amount\":\"Amount to stake\",\"to\":\"Address to send the claimed rewards\"}},\"cooldown()\":{\"details\":\"Activates the cooldown period to unstake - It can't be called if the user is not staking\"},\"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`.\"},\"delegate(address)\":{\"details\":\"delegates all the powers to a specific user\",\"params\":{\"delegatee\":\"the user to which the power will be delegated*\"}},\"delegateBySig(address,uint256,uint256,uint8,bytes32,bytes32)\":{\"details\":\"Delegates power from signatory to `delegatee`\",\"params\":{\"delegatee\":\"The address to delegate votes to\",\"expiry\":\"The time at which to expire the signature\",\"nonce\":\"The contract state required to match the signature\",\"r\":\"Half of the ECDSA signature pair\",\"s\":\"Half of the ECDSA signature pair\",\"v\":\"The recovery byte of the signature\"}},\"delegateByType(address,uint8)\":{\"details\":\"delegates one specific power to a delegatee\",\"params\":{\"delegatee\":\"the user which delegated power has changed\",\"delegationType\":\"the type of delegation (VOTING_POWER, PROPOSITION_POWER)*\"}},\"delegateByTypeBySig(address,uint8,uint256,uint256,uint8,bytes32,bytes32)\":{\"details\":\"Delegates power from signatory to `delegatee`\",\"params\":{\"delegatee\":\"The address to delegate votes to\",\"delegationType\":\"the type of delegation (VOTING_POWER, PROPOSITION_POWER)\",\"expiry\":\"The time at which to expire the signature\",\"nonce\":\"The contract state required to match the signature\",\"r\":\"Half of the ECDSA signature pair\",\"s\":\"Half of the ECDSA signature pair\",\"v\":\"The recovery byte of the signature\"}},\"getDelegateeByType(address,uint8)\":{\"details\":\"returns the delegatee of an user\",\"params\":{\"delegator\":\"the address of the delegator*\"}},\"getPowerAtBlock(address,uint256,uint8)\":{\"details\":\"returns the delegated power of a user at a certain block\",\"params\":{\"user\":\"the user*\"}},\"getPowerCurrent(address,uint8)\":{\"details\":\"returns the current delegated power of a user. The current power is the power delegated at the time of the last snapshot\",\"params\":{\"user\":\"the user*\"}},\"getTotalRewardsBalance(address)\":{\"details\":\"Return the total rewards pending to claim by an staker\",\"params\":{\"staker\":\"The staker address\"},\"returns\":{\"_0\":\"The rewards\"}},\"getUserAssetData(address,address)\":{\"details\":\"Returns the data of an user on a distribution\",\"params\":{\"asset\":\"The address of the reference asset of the distribution\",\"user\":\"Address of the user\"},\"returns\":{\"_0\":\"The new index\"}},\"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.\"},\"permit(address,address,uint256,uint256,uint8,bytes32,bytes32)\":{\"details\":\"implements the permit function as for https://github.com/ethereum/EIPs/blob/8a34d644aacf0f9f8f00815307fd7dd5da07655f/EIPS/eip-2612.md\",\"params\":{\"deadline\":\"the deadline timestamp, type(uint256).max for no deadline\",\"owner\":\"the owner of the funds\",\"r\":\"signature param\",\"s\":\"signature param\",\"spender\":\"the spender\",\"v\":\"signature param\",\"value\":\"the amount\"}},\"redeem(address,uint256)\":{\"details\":\"Redeems shares, and stop earning rewards\",\"params\":{\"amount\":\"Amount of shares to redeem\",\"to\":\"Address to redeem to\"}},\"stake(address,uint256)\":{\"details\":\"Allows staking a specified amount of STAKED_TOKEN\",\"params\":{\"amount\":\"The amount of assets to be staked\",\"to\":\"The address to receiving the shares\"}},\"symbol()\":{\"details\":\"Returns the symbol of the token, usually a shorter version of the name.\"},\"totalSupply()\":{\"details\":\"See {IERC20-totalSupply}.\"},\"totalSupplyAt(uint256)\":{\"details\":\"returns the total supply at a certain block number used by the voting strategy contracts to calculate the total votes needed for threshold/quorum In this initial implementation with no AAVE minting, simply returns the current supply A snapshots mapping will need to be added in case a mint function is added to the AAVE token in the future*\"},\"transfer(address,uint256)\":{\"details\":\"See {IERC20-transfer}. Requirements: - `to` cannot be the zero address. - the caller must have a balance of at least `amount`.\"},\"transferFrom(address,address,uint256)\":{\"details\":\"See {IERC20-transferFrom}. Emits an {Approval} event indicating the updated allowance. This is not required by the EIP. See the note at the beginning of {ERC20}. NOTE: Does not update the allowance if the current allowance is the maximum `uint256`. Requirements: - `from` and `to` cannot be the zero address. - `from` must have a balance of at least `amount`. - the caller must have allowance for ``from``'s tokens of at least `amount`.\"}},\"stateVariables\":{\"_nonces\":{\"details\":\"owner => next valid nonce to submit with permit()\"},\"_votingDelegates\":{\"details\":\"To see the voting mappings, go to GovernancePowerWithSnapshot.sol\"}},\"title\":\"StakedTokenV2\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{\"DELEGATE_BY_TYPE_TYPEHASH()\":{\"notice\":\"The EIP-712 typehash for the delegation struct used by the contract\"},\"REWARDS_VAULT()\":{\"notice\":\"Address to pull from the rewards, needs to have approved this contract\"},\"UNSTAKE_WINDOW()\":{\"notice\":\"Seconds available to redeem once the cooldown period is fulfilled\"}},\"notice\":\"Contract to stake Aave token, tokenize the position and get rewards, inheriting from a distribution manager contract\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/flatten/StakedPSYSV3-flatten.sol\":\"StakedTokenV2\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"contracts/flatten/StakedPSYSV3-flatten.sol\":{\"keccak256\":\"0x1288e9f8db9b4a153854a518648153da8175d48775832dc88c82af682197fc0c\",\"license\":\"MIT AND agpl-3.0\",\"urls\":[\"bzz-raw://c0b3c1c232cadc3e9d3315b983bfae0d842041778a8a557240729676d1b143cb\",\"dweb:/ipfs/QmWLxw9LFwrVNftCUwD8koRmWKVrcaEHemcZJY7mAjoBRN\"]}},\"version\":1}"},"StakedTokenV3":{"abi":[{"inputs":[{"internalType":"contract IERC20","name":"stakedToken","type":"address"},{"internalType":"contract IERC20","name":"rewardToken","type":"address"},{"internalType":"uint256","name":"unstakeWindow","type":"uint256"},{"internalType":"address","name":"rewardsVault","type":"address"},{"internalType":"address","name":"emissionManager","type":"address"},{"internalType":"uint128","name":"distributionDuration","type":"uint128"}],"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":"asset","type":"address"},{"indexed":false,"internalType":"uint256","name":"emission","type":"uint256"}],"name":"AssetConfigUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"asset","type":"address"},{"indexed":false,"internalType":"uint256","name":"index","type":"uint256"}],"name":"AssetIndexUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Cooldown","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"cooldownSeconds","type":"uint256"}],"name":"CooldownSecondsChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegator","type":"address"},{"indexed":true,"internalType":"address","name":"delegatee","type":"address"},{"indexed":false,"internalType":"enum IGovernancePowerDelegationToken.DelegationType","name":"delegationType","type":"uint8"}],"name":"DelegateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"enum IGovernancePowerDelegationToken.DelegationType","name":"delegationType","type":"uint8"}],"name":"DelegatedPowerChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint216","name":"exchangeRate","type":"uint216"}],"name":"ExchangeRateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"FundsReturned","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newPercentage","type":"uint256"}],"name":"MaxSlashablePercentageChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newPendingAdmin","type":"address"},{"indexed":false,"internalType":"uint256","name":"role","type":"uint256"}],"name":"PendingAdminChanged","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":"assets","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"Redeem","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"RewardsAccrued","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":"amount","type":"uint256"}],"name":"RewardsClaimed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAdmin","type":"address"},{"indexed":false,"internalType":"uint256","name":"role","type":"uint256"}],"name":"RoleClaimed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"destination","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Slashed","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"windowSeconds","type":"uint256"}],"name":"SlashingExitWindowDurationChanged","type":"event"},{"anonymous":false,"inputs":[],"name":"SlashingSettled","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":"assets","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"Staked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"address","name":"asset","type":"address"},{"indexed":false,"internalType":"uint256","name":"index","type":"uint256"}],"name":"UserIndexUpdated","type":"event"},{"inputs":[],"name":"CLAIM_HELPER_ROLE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"COOLDOWN_ADMIN_ROLE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"COOLDOWN_SECONDS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DELEGATE_BY_TYPE_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DELEGATE_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DISTRIBUTION_END","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"EIP712_REVISION","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"EMISSION_MANAGER","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"EXCHANGE_RATE_UNIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"INITIAL_EXCHANGE_RATE","outputs":[{"internalType":"uint216","name":"","type":"uint216"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LOWER_BOUND","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PERMIT_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRECISION","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"REVISION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"REWARDS_VAULT","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"REWARD_TOKEN","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SLASH_ADMIN_ROLE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"STAKED_TOKEN","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"UNSTAKE_WINDOW","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_aaveGovernance","outputs":[{"internalType":"contract ITransferHook","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"_votingSnapshots","outputs":[{"internalType":"uint128","name":"blockNumber","type":"uint128"},{"internalType":"uint128","name":"value","type":"uint128"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_votingSnapshotsCounts","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"","type":"address"}],"name":"assets","outputs":[{"internalType":"uint128","name":"emissionPerSecond","type":"uint128"},{"internalType":"uint128","name":"lastUpdateTimestamp","type":"uint128"},{"internalType":"uint256","name":"index","type":"uint256"}],"stateMutability":"view","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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"claimRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"claimAmount","type":"uint256"},{"internalType":"uint256","name":"redeemAmount","type":"uint256"}],"name":"claimRewardsAndRedeem","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"claimAmount","type":"uint256"},{"internalType":"uint256","name":"redeemAmount","type":"uint256"}],"name":"claimRewardsAndRedeemOnBehalf","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"claimRewardsOnBehalf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"role","type":"uint256"}],"name":"claimRoleAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"uint128","name":"emissionPerSecond","type":"uint128"},{"internalType":"uint256","name":"totalStaked","type":"uint256"},{"internalType":"address","name":"underlyingAsset","type":"address"}],"internalType":"struct DistributionTypes.AssetConfigInput[]","name":"assetsConfigInput","type":"tuple[]"}],"name":"configureAssets","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cooldown","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"}],"name":"cooldownOnBehalfOf","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":"delegatee","type":"address"}],"name":"delegate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256","name":"expiry","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"delegateBySig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"},{"internalType":"enum IGovernancePowerDelegationToken.DelegationType","name":"delegationType","type":"uint8"}],"name":"delegateByType","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"},{"internalType":"enum IGovernancePowerDelegationToken.DelegationType","name":"delegationType","type":"uint8"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256","name":"expiry","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"delegateByTypeBySig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"role","type":"uint256"}],"name":"getAdmin","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCooldownSeconds","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"delegator","type":"address"},{"internalType":"enum IGovernancePowerDelegationToken.DelegationType","name":"delegationType","type":"uint8"}],"name":"getDelegateeByType","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getExchangeRate","outputs":[{"internalType":"uint216","name":"","type":"uint216"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMaxSlashablePercentage","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"role","type":"uint256"}],"name":"getPendingAdmin","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"uint256","name":"blockNumber","type":"uint256"},{"internalType":"enum IGovernancePowerDelegationToken.DelegationType","name":"delegationType","type":"uint8"}],"name":"getPowerAtBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"enum IGovernancePowerDelegationToken.DelegationType","name":"delegationType","type":"uint8"}],"name":"getPowerCurrent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"staker","type":"address"}],"name":"getTotalRewardsBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"address","name":"asset","type":"address"}],"name":"getUserAssetData","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"inPostSlashingPeriod","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"slashingAdmin","type":"address"},{"internalType":"address","name":"cooldownPauseAdmin","type":"address"},{"internalType":"address","name":"claimHelper","type":"address"},{"internalType":"uint256","name":"maxSlashablePercentage","type":"uint256"},{"internalType":"uint256","name":"cooldownSeconds","type":"uint256"}],"name":"initialize","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"},{"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":[{"internalType":"uint256","name":"shares","type":"uint256"}],"name":"previewRedeem","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"assets","type":"uint256"}],"name":"previewStake","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"redeem","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"redeemOnBehalf","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"returnFunds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"cooldownSeconds","type":"uint256"}],"name":"setCooldownSeconds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"percentage","type":"uint256"}],"name":"setMaxSlashablePercentage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"role","type":"uint256"},{"internalType":"address","name":"newPendingAdmin","type":"address"}],"name":"setPendingAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"settleSlashing","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"destination","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"slash","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"stake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"stakerRewardsToClaim","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"stakersCooldowns","outputs":[{"internalType":"uint40","name":"timestamp","type":"uint40"},{"internalType":"uint216","name":"amount","type":"uint216"}],"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":"uint256","name":"","type":"uint256"}],"name":"totalSupplyAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}],"evm":{"bytecode":{"functionDebugData":{"@REVISION_5572":{"entryPoint":null,"id":5572,"parameterSlots":0,"returnSlots":1},"@_2520":{"entryPoint":null,"id":2520,"parameterSlots":2,"returnSlots":0},"@_4760":{"entryPoint":null,"id":4760,"parameterSlots":6,"returnSlots":0},"@_542":{"entryPoint":null,"id":542,"parameterSlots":0,"returnSlots":0},"@_5563":{"entryPoint":null,"id":5563,"parameterSlots":6,"returnSlots":0},"abi_decode_tuple_t_contract$_IERC20_$77t_contract$_IERC20_$77t_uint256t_addresst_addresst_uint128_fromMemory":{"entryPoint":286,"id":null,"parameterSlots":2,"returnSlots":6},"abi_decode_tuple_t_uint8_fromMemory":{"entryPoint":470,"id":null,"parameterSlots":2,"returnSlots":1},"checked_add_t_uint256":{"entryPoint":445,"id":null,"parameterSlots":2,"returnSlots":1},"checked_exp_helper":{"entryPoint":512,"id":null,"parameterSlots":3,"returnSlots":2},"checked_exp_t_uint256_t_uint256":{"entryPoint":743,"id":null,"parameterSlots":2,"returnSlots":1},"checked_exp_unsigned":{"entryPoint":579,"id":null,"parameterSlots":2,"returnSlots":1},"panic_error_0x11":{"entryPoint":423,"id":null,"parameterSlots":0,"returnSlots":0},"validator_revert_contract_IERC20":{"entryPoint":262,"id":null,"parameterSlots":1,"returnSlots":0}},"generatedSources":[{"ast":{"nativeSrc":"0:3073:1","nodeType":"YulBlock","src":"0:3073:1","statements":[{"nativeSrc":"6:3:1","nodeType":"YulBlock","src":"6:3:1","statements":[]},{"body":{"nativeSrc":"67:86:1","nodeType":"YulBlock","src":"67:86:1","statements":[{"body":{"nativeSrc":"131:16:1","nodeType":"YulBlock","src":"131:16:1","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"140:1:1","nodeType":"YulLiteral","src":"140:1:1","type":"","value":"0"},{"kind":"number","nativeSrc":"143:1:1","nodeType":"YulLiteral","src":"143:1:1","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"133:6:1","nodeType":"YulIdentifier","src":"133:6:1"},"nativeSrc":"133:12:1","nodeType":"YulFunctionCall","src":"133:12:1"},"nativeSrc":"133:12:1","nodeType":"YulExpressionStatement","src":"133:12:1"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"90:5:1","nodeType":"YulIdentifier","src":"90:5:1"},{"arguments":[{"name":"value","nativeSrc":"101:5:1","nodeType":"YulIdentifier","src":"101:5:1"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"116:3:1","nodeType":"YulLiteral","src":"116:3:1","type":"","value":"160"},{"kind":"number","nativeSrc":"121:1:1","nodeType":"YulLiteral","src":"121:1:1","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"112:3:1","nodeType":"YulIdentifier","src":"112:3:1"},"nativeSrc":"112:11:1","nodeType":"YulFunctionCall","src":"112:11:1"},{"kind":"number","nativeSrc":"125:1:1","nodeType":"YulLiteral","src":"125:1:1","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"108:3:1","nodeType":"YulIdentifier","src":"108:3:1"},"nativeSrc":"108:19:1","nodeType":"YulFunctionCall","src":"108:19:1"}],"functionName":{"name":"and","nativeSrc":"97:3:1","nodeType":"YulIdentifier","src":"97:3:1"},"nativeSrc":"97:31:1","nodeType":"YulFunctionCall","src":"97:31:1"}],"functionName":{"name":"eq","nativeSrc":"87:2:1","nodeType":"YulIdentifier","src":"87:2:1"},"nativeSrc":"87:42:1","nodeType":"YulFunctionCall","src":"87:42:1"}],"functionName":{"name":"iszero","nativeSrc":"80:6:1","nodeType":"YulIdentifier","src":"80:6:1"},"nativeSrc":"80:50:1","nodeType":"YulFunctionCall","src":"80:50:1"},"nativeSrc":"77:70:1","nodeType":"YulIf","src":"77:70:1"}]},"name":"validator_revert_contract_IERC20","nativeSrc":"14:139:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"56:5:1","nodeType":"YulTypedName","src":"56:5:1","type":""}],"src":"14:139:1"},{"body":{"nativeSrc":"350:758:1","nodeType":"YulBlock","src":"350:758:1","statements":[{"body":{"nativeSrc":"397:16:1","nodeType":"YulBlock","src":"397:16:1","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"406:1:1","nodeType":"YulLiteral","src":"406:1:1","type":"","value":"0"},{"kind":"number","nativeSrc":"409:1:1","nodeType":"YulLiteral","src":"409:1:1","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"399:6:1","nodeType":"YulIdentifier","src":"399:6:1"},"nativeSrc":"399:12:1","nodeType":"YulFunctionCall","src":"399:12:1"},"nativeSrc":"399:12:1","nodeType":"YulExpressionStatement","src":"399:12:1"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"371:7:1","nodeType":"YulIdentifier","src":"371:7:1"},{"name":"headStart","nativeSrc":"380:9:1","nodeType":"YulIdentifier","src":"380:9:1"}],"functionName":{"name":"sub","nativeSrc":"367:3:1","nodeType":"YulIdentifier","src":"367:3:1"},"nativeSrc":"367:23:1","nodeType":"YulFunctionCall","src":"367:23:1"},{"kind":"number","nativeSrc":"392:3:1","nodeType":"YulLiteral","src":"392:3:1","type":"","value":"192"}],"functionName":{"name":"slt","nativeSrc":"363:3:1","nodeType":"YulIdentifier","src":"363:3:1"},"nativeSrc":"363:33:1","nodeType":"YulFunctionCall","src":"363:33:1"},"nativeSrc":"360:53:1","nodeType":"YulIf","src":"360:53:1"},{"nativeSrc":"422:29:1","nodeType":"YulVariableDeclaration","src":"422:29:1","value":{"arguments":[{"name":"headStart","nativeSrc":"441:9:1","nodeType":"YulIdentifier","src":"441:9:1"}],"functionName":{"name":"mload","nativeSrc":"435:5:1","nodeType":"YulIdentifier","src":"435:5:1"},"nativeSrc":"435:16:1","nodeType":"YulFunctionCall","src":"435:16:1"},"variables":[{"name":"value","nativeSrc":"426:5:1","nodeType":"YulTypedName","src":"426:5:1","type":""}]},{"expression":{"arguments":[{"name":"value","nativeSrc":"493:5:1","nodeType":"YulIdentifier","src":"493:5:1"}],"functionName":{"name":"validator_revert_contract_IERC20","nativeSrc":"460:32:1","nodeType":"YulIdentifier","src":"460:32:1"},"nativeSrc":"460:39:1","nodeType":"YulFunctionCall","src":"460:39:1"},"nativeSrc":"460:39:1","nodeType":"YulExpressionStatement","src":"460:39:1"},{"nativeSrc":"508:15:1","nodeType":"YulAssignment","src":"508:15:1","value":{"name":"value","nativeSrc":"518:5:1","nodeType":"YulIdentifier","src":"518:5:1"},"variableNames":[{"name":"value0","nativeSrc":"508:6:1","nodeType":"YulIdentifier","src":"508:6:1"}]},{"nativeSrc":"532:40:1","nodeType":"YulVariableDeclaration","src":"532:40:1","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"557:9:1","nodeType":"YulIdentifier","src":"557:9:1"},{"kind":"number","nativeSrc":"568:2:1","nodeType":"YulLiteral","src":"568:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"553:3:1","nodeType":"YulIdentifier","src":"553:3:1"},"nativeSrc":"553:18:1","nodeType":"YulFunctionCall","src":"553:18:1"}],"functionName":{"name":"mload","nativeSrc":"547:5:1","nodeType":"YulIdentifier","src":"547:5:1"},"nativeSrc":"547:25:1","nodeType":"YulFunctionCall","src":"547:25:1"},"variables":[{"name":"value_1","nativeSrc":"536:7:1","nodeType":"YulTypedName","src":"536:7:1","type":""}]},{"expression":{"arguments":[{"name":"value_1","nativeSrc":"614:7:1","nodeType":"YulIdentifier","src":"614:7:1"}],"functionName":{"name":"validator_revert_contract_IERC20","nativeSrc":"581:32:1","nodeType":"YulIdentifier","src":"581:32:1"},"nativeSrc":"581:41:1","nodeType":"YulFunctionCall","src":"581:41:1"},"nativeSrc":"581:41:1","nodeType":"YulExpressionStatement","src":"581:41:1"},{"nativeSrc":"631:17:1","nodeType":"YulAssignment","src":"631:17:1","value":{"name":"value_1","nativeSrc":"641:7:1","nodeType":"YulIdentifier","src":"641:7:1"},"variableNames":[{"name":"value1","nativeSrc":"631:6:1","nodeType":"YulIdentifier","src":"631:6:1"}]},{"nativeSrc":"657:35:1","nodeType":"YulAssignment","src":"657:35:1","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"677:9:1","nodeType":"YulIdentifier","src":"677:9:1"},{"kind":"number","nativeSrc":"688:2:1","nodeType":"YulLiteral","src":"688:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"673:3:1","nodeType":"YulIdentifier","src":"673:3:1"},"nativeSrc":"673:18:1","nodeType":"YulFunctionCall","src":"673:18:1"}],"functionName":{"name":"mload","nativeSrc":"667:5:1","nodeType":"YulIdentifier","src":"667:5:1"},"nativeSrc":"667:25:1","nodeType":"YulFunctionCall","src":"667:25:1"},"variableNames":[{"name":"value2","nativeSrc":"657:6:1","nodeType":"YulIdentifier","src":"657:6:1"}]},{"nativeSrc":"701:40:1","nodeType":"YulVariableDeclaration","src":"701:40:1","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"726:9:1","nodeType":"YulIdentifier","src":"726:9:1"},{"kind":"number","nativeSrc":"737:2:1","nodeType":"YulLiteral","src":"737:2:1","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"722:3:1","nodeType":"YulIdentifier","src":"722:3:1"},"nativeSrc":"722:18:1","nodeType":"YulFunctionCall","src":"722:18:1"}],"functionName":{"name":"mload","nativeSrc":"716:5:1","nodeType":"YulIdentifier","src":"716:5:1"},"nativeSrc":"716:25:1","nodeType":"YulFunctionCall","src":"716:25:1"},"variables":[{"name":"value_2","nativeSrc":"705:7:1","nodeType":"YulTypedName","src":"705:7:1","type":""}]},{"expression":{"arguments":[{"name":"value_2","nativeSrc":"783:7:1","nodeType":"YulIdentifier","src":"783:7:1"}],"functionName":{"name":"validator_revert_contract_IERC20","nativeSrc":"750:32:1","nodeType":"YulIdentifier","src":"750:32:1"},"nativeSrc":"750:41:1","nodeType":"YulFunctionCall","src":"750:41:1"},"nativeSrc":"750:41:1","nodeType":"YulExpressionStatement","src":"750:41:1"},{"nativeSrc":"800:17:1","nodeType":"YulAssignment","src":"800:17:1","value":{"name":"value_2","nativeSrc":"810:7:1","nodeType":"YulIdentifier","src":"810:7:1"},"variableNames":[{"name":"value3","nativeSrc":"800:6:1","nodeType":"YulIdentifier","src":"800:6:1"}]},{"nativeSrc":"826:41:1","nodeType":"YulVariableDeclaration","src":"826:41:1","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"851:9:1","nodeType":"YulIdentifier","src":"851:9:1"},{"kind":"number","nativeSrc":"862:3:1","nodeType":"YulLiteral","src":"862:3:1","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"847:3:1","nodeType":"YulIdentifier","src":"847:3:1"},"nativeSrc":"847:19:1","nodeType":"YulFunctionCall","src":"847:19:1"}],"functionName":{"name":"mload","nativeSrc":"841:5:1","nodeType":"YulIdentifier","src":"841:5:1"},"nativeSrc":"841:26:1","nodeType":"YulFunctionCall","src":"841:26:1"},"variables":[{"name":"value_3","nativeSrc":"830:7:1","nodeType":"YulTypedName","src":"830:7:1","type":""}]},{"expression":{"arguments":[{"name":"value_3","nativeSrc":"909:7:1","nodeType":"YulIdentifier","src":"909:7:1"}],"functionName":{"name":"validator_revert_contract_IERC20","nativeSrc":"876:32:1","nodeType":"YulIdentifier","src":"876:32:1"},"nativeSrc":"876:41:1","nodeType":"YulFunctionCall","src":"876:41:1"},"nativeSrc":"876:41:1","nodeType":"YulExpressionStatement","src":"876:41:1"},{"nativeSrc":"926:17:1","nodeType":"YulAssignment","src":"926:17:1","value":{"name":"value_3","nativeSrc":"936:7:1","nodeType":"YulIdentifier","src":"936:7:1"},"variableNames":[{"name":"value4","nativeSrc":"926:6:1","nodeType":"YulIdentifier","src":"926:6:1"}]},{"nativeSrc":"952:41:1","nodeType":"YulVariableDeclaration","src":"952:41:1","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"977:9:1","nodeType":"YulIdentifier","src":"977:9:1"},{"kind":"number","nativeSrc":"988:3:1","nodeType":"YulLiteral","src":"988:3:1","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"973:3:1","nodeType":"YulIdentifier","src":"973:3:1"},"nativeSrc":"973:19:1","nodeType":"YulFunctionCall","src":"973:19:1"}],"functionName":{"name":"mload","nativeSrc":"967:5:1","nodeType":"YulIdentifier","src":"967:5:1"},"nativeSrc":"967:26:1","nodeType":"YulFunctionCall","src":"967:26:1"},"variables":[{"name":"value_4","nativeSrc":"956:7:1","nodeType":"YulTypedName","src":"956:7:1","type":""}]},{"body":{"nativeSrc":"1060:16:1","nodeType":"YulBlock","src":"1060:16:1","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1069:1:1","nodeType":"YulLiteral","src":"1069:1:1","type":"","value":"0"},{"kind":"number","nativeSrc":"1072:1:1","nodeType":"YulLiteral","src":"1072:1:1","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1062:6:1","nodeType":"YulIdentifier","src":"1062:6:1"},"nativeSrc":"1062:12:1","nodeType":"YulFunctionCall","src":"1062:12:1"},"nativeSrc":"1062:12:1","nodeType":"YulExpressionStatement","src":"1062:12:1"}]},"condition":{"arguments":[{"arguments":[{"name":"value_4","nativeSrc":"1015:7:1","nodeType":"YulIdentifier","src":"1015:7:1"},{"arguments":[{"name":"value_4","nativeSrc":"1028:7:1","nodeType":"YulIdentifier","src":"1028:7:1"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"1045:3:1","nodeType":"YulLiteral","src":"1045:3:1","type":"","value":"128"},{"kind":"number","nativeSrc":"1050:1:1","nodeType":"YulLiteral","src":"1050:1:1","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"1041:3:1","nodeType":"YulIdentifier","src":"1041:3:1"},"nativeSrc":"1041:11:1","nodeType":"YulFunctionCall","src":"1041:11:1"},{"kind":"number","nativeSrc":"1054:1:1","nodeType":"YulLiteral","src":"1054:1:1","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"1037:3:1","nodeType":"YulIdentifier","src":"1037:3:1"},"nativeSrc":"1037:19:1","nodeType":"YulFunctionCall","src":"1037:19:1"}],"functionName":{"name":"and","nativeSrc":"1024:3:1","nodeType":"YulIdentifier","src":"1024:3:1"},"nativeSrc":"1024:33:1","nodeType":"YulFunctionCall","src":"1024:33:1"}],"functionName":{"name":"eq","nativeSrc":"1012:2:1","nodeType":"YulIdentifier","src":"1012:2:1"},"nativeSrc":"1012:46:1","nodeType":"YulFunctionCall","src":"1012:46:1"}],"functionName":{"name":"iszero","nativeSrc":"1005:6:1","nodeType":"YulIdentifier","src":"1005:6:1"},"nativeSrc":"1005:54:1","nodeType":"YulFunctionCall","src":"1005:54:1"},"nativeSrc":"1002:74:1","nodeType":"YulIf","src":"1002:74:1"},{"nativeSrc":"1085:17:1","nodeType":"YulAssignment","src":"1085:17:1","value":{"name":"value_4","nativeSrc":"1095:7:1","nodeType":"YulIdentifier","src":"1095:7:1"},"variableNames":[{"name":"value5","nativeSrc":"1085:6:1","nodeType":"YulIdentifier","src":"1085:6:1"}]}]},"name":"abi_decode_tuple_t_contract$_IERC20_$77t_contract$_IERC20_$77t_uint256t_addresst_addresst_uint128_fromMemory","nativeSrc":"158:950:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"276:9:1","nodeType":"YulTypedName","src":"276:9:1","type":""},{"name":"dataEnd","nativeSrc":"287:7:1","nodeType":"YulTypedName","src":"287:7:1","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"299:6:1","nodeType":"YulTypedName","src":"299:6:1","type":""},{"name":"value1","nativeSrc":"307:6:1","nodeType":"YulTypedName","src":"307:6:1","type":""},{"name":"value2","nativeSrc":"315:6:1","nodeType":"YulTypedName","src":"315:6:1","type":""},{"name":"value3","nativeSrc":"323:6:1","nodeType":"YulTypedName","src":"323:6:1","type":""},{"name":"value4","nativeSrc":"331:6:1","nodeType":"YulTypedName","src":"331:6:1","type":""},{"name":"value5","nativeSrc":"339:6:1","nodeType":"YulTypedName","src":"339:6:1","type":""}],"src":"158:950:1"},{"body":{"nativeSrc":"1145:95:1","nodeType":"YulBlock","src":"1145:95:1","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1162:1:1","nodeType":"YulLiteral","src":"1162:1:1","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"1169:3:1","nodeType":"YulLiteral","src":"1169:3:1","type":"","value":"224"},{"kind":"number","nativeSrc":"1174:10:1","nodeType":"YulLiteral","src":"1174:10:1","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"1165:3:1","nodeType":"YulIdentifier","src":"1165:3:1"},"nativeSrc":"1165:20:1","nodeType":"YulFunctionCall","src":"1165:20:1"}],"functionName":{"name":"mstore","nativeSrc":"1155:6:1","nodeType":"YulIdentifier","src":"1155:6:1"},"nativeSrc":"1155:31:1","nodeType":"YulFunctionCall","src":"1155:31:1"},"nativeSrc":"1155:31:1","nodeType":"YulExpressionStatement","src":"1155:31:1"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"1202:1:1","nodeType":"YulLiteral","src":"1202:1:1","type":"","value":"4"},{"kind":"number","nativeSrc":"1205:4:1","nodeType":"YulLiteral","src":"1205:4:1","type":"","value":"0x11"}],"functionName":{"name":"mstore","nativeSrc":"1195:6:1","nodeType":"YulIdentifier","src":"1195:6:1"},"nativeSrc":"1195:15:1","nodeType":"YulFunctionCall","src":"1195:15:1"},"nativeSrc":"1195:15:1","nodeType":"YulExpressionStatement","src":"1195:15:1"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"1226:1:1","nodeType":"YulLiteral","src":"1226:1:1","type":"","value":"0"},{"kind":"number","nativeSrc":"1229:4:1","nodeType":"YulLiteral","src":"1229:4:1","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"1219:6:1","nodeType":"YulIdentifier","src":"1219:6:1"},"nativeSrc":"1219:15:1","nodeType":"YulFunctionCall","src":"1219:15:1"},"nativeSrc":"1219:15:1","nodeType":"YulExpressionStatement","src":"1219:15:1"}]},"name":"panic_error_0x11","nativeSrc":"1113:127:1","nodeType":"YulFunctionDefinition","src":"1113:127:1"},{"body":{"nativeSrc":"1293:77:1","nodeType":"YulBlock","src":"1293:77:1","statements":[{"nativeSrc":"1303:16:1","nodeType":"YulAssignment","src":"1303:16:1","value":{"arguments":[{"name":"x","nativeSrc":"1314:1:1","nodeType":"YulIdentifier","src":"1314:1:1"},{"name":"y","nativeSrc":"1317:1:1","nodeType":"YulIdentifier","src":"1317:1:1"}],"functionName":{"name":"add","nativeSrc":"1310:3:1","nodeType":"YulIdentifier","src":"1310:3:1"},"nativeSrc":"1310:9:1","nodeType":"YulFunctionCall","src":"1310:9:1"},"variableNames":[{"name":"sum","nativeSrc":"1303:3:1","nodeType":"YulIdentifier","src":"1303:3:1"}]},{"body":{"nativeSrc":"1342:22:1","nodeType":"YulBlock","src":"1342:22:1","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"1344:16:1","nodeType":"YulIdentifier","src":"1344:16:1"},"nativeSrc":"1344:18:1","nodeType":"YulFunctionCall","src":"1344:18:1"},"nativeSrc":"1344:18:1","nodeType":"YulExpressionStatement","src":"1344:18:1"}]},"condition":{"arguments":[{"name":"x","nativeSrc":"1334:1:1","nodeType":"YulIdentifier","src":"1334:1:1"},{"name":"sum","nativeSrc":"1337:3:1","nodeType":"YulIdentifier","src":"1337:3:1"}],"functionName":{"name":"gt","nativeSrc":"1331:2:1","nodeType":"YulIdentifier","src":"1331:2:1"},"nativeSrc":"1331:10:1","nodeType":"YulFunctionCall","src":"1331:10:1"},"nativeSrc":"1328:36:1","nodeType":"YulIf","src":"1328:36:1"}]},"name":"checked_add_t_uint256","nativeSrc":"1245:125:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"1276:1:1","nodeType":"YulTypedName","src":"1276:1:1","type":""},{"name":"y","nativeSrc":"1279:1:1","nodeType":"YulTypedName","src":"1279:1:1","type":""}],"returnVariables":[{"name":"sum","nativeSrc":"1285:3:1","nodeType":"YulTypedName","src":"1285:3:1","type":""}],"src":"1245:125:1"},{"body":{"nativeSrc":"1454:194:1","nodeType":"YulBlock","src":"1454:194:1","statements":[{"body":{"nativeSrc":"1500:16:1","nodeType":"YulBlock","src":"1500:16:1","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1509:1:1","nodeType":"YulLiteral","src":"1509:1:1","type":"","value":"0"},{"kind":"number","nativeSrc":"1512:1:1","nodeType":"YulLiteral","src":"1512:1:1","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1502:6:1","nodeType":"YulIdentifier","src":"1502:6:1"},"nativeSrc":"1502:12:1","nodeType":"YulFunctionCall","src":"1502:12:1"},"nativeSrc":"1502:12:1","nodeType":"YulExpressionStatement","src":"1502:12:1"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"1475:7:1","nodeType":"YulIdentifier","src":"1475:7:1"},{"name":"headStart","nativeSrc":"1484:9:1","nodeType":"YulIdentifier","src":"1484:9:1"}],"functionName":{"name":"sub","nativeSrc":"1471:3:1","nodeType":"YulIdentifier","src":"1471:3:1"},"nativeSrc":"1471:23:1","nodeType":"YulFunctionCall","src":"1471:23:1"},{"kind":"number","nativeSrc":"1496:2:1","nodeType":"YulLiteral","src":"1496:2:1","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"1467:3:1","nodeType":"YulIdentifier","src":"1467:3:1"},"nativeSrc":"1467:32:1","nodeType":"YulFunctionCall","src":"1467:32:1"},"nativeSrc":"1464:52:1","nodeType":"YulIf","src":"1464:52:1"},{"nativeSrc":"1525:29:1","nodeType":"YulVariableDeclaration","src":"1525:29:1","value":{"arguments":[{"name":"headStart","nativeSrc":"1544:9:1","nodeType":"YulIdentifier","src":"1544:9:1"}],"functionName":{"name":"mload","nativeSrc":"1538:5:1","nodeType":"YulIdentifier","src":"1538:5:1"},"nativeSrc":"1538:16:1","nodeType":"YulFunctionCall","src":"1538:16:1"},"variables":[{"name":"value","nativeSrc":"1529:5:1","nodeType":"YulTypedName","src":"1529:5:1","type":""}]},{"body":{"nativeSrc":"1602:16:1","nodeType":"YulBlock","src":"1602:16:1","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1611:1:1","nodeType":"YulLiteral","src":"1611:1:1","type":"","value":"0"},{"kind":"number","nativeSrc":"1614:1:1","nodeType":"YulLiteral","src":"1614:1:1","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1604:6:1","nodeType":"YulIdentifier","src":"1604:6:1"},"nativeSrc":"1604:12:1","nodeType":"YulFunctionCall","src":"1604:12:1"},"nativeSrc":"1604:12:1","nodeType":"YulExpressionStatement","src":"1604:12:1"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"1576:5:1","nodeType":"YulIdentifier","src":"1576:5:1"},{"arguments":[{"name":"value","nativeSrc":"1587:5:1","nodeType":"YulIdentifier","src":"1587:5:1"},{"kind":"number","nativeSrc":"1594:4:1","nodeType":"YulLiteral","src":"1594:4:1","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"1583:3:1","nodeType":"YulIdentifier","src":"1583:3:1"},"nativeSrc":"1583:16:1","nodeType":"YulFunctionCall","src":"1583:16:1"}],"functionName":{"name":"eq","nativeSrc":"1573:2:1","nodeType":"YulIdentifier","src":"1573:2:1"},"nativeSrc":"1573:27:1","nodeType":"YulFunctionCall","src":"1573:27:1"}],"functionName":{"name":"iszero","nativeSrc":"1566:6:1","nodeType":"YulIdentifier","src":"1566:6:1"},"nativeSrc":"1566:35:1","nodeType":"YulFunctionCall","src":"1566:35:1"},"nativeSrc":"1563:55:1","nodeType":"YulIf","src":"1563:55:1"},{"nativeSrc":"1627:15:1","nodeType":"YulAssignment","src":"1627:15:1","value":{"name":"value","nativeSrc":"1637:5:1","nodeType":"YulIdentifier","src":"1637:5:1"},"variableNames":[{"name":"value0","nativeSrc":"1627:6:1","nodeType":"YulIdentifier","src":"1627:6:1"}]}]},"name":"abi_decode_tuple_t_uint8_fromMemory","nativeSrc":"1375:273:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1420:9:1","nodeType":"YulTypedName","src":"1420:9:1","type":""},{"name":"dataEnd","nativeSrc":"1431:7:1","nodeType":"YulTypedName","src":"1431:7:1","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"1443:6:1","nodeType":"YulTypedName","src":"1443:6:1","type":""}],"src":"1375:273:1"},{"body":{"nativeSrc":"1722:306:1","nodeType":"YulBlock","src":"1722:306:1","statements":[{"nativeSrc":"1732:10:1","nodeType":"YulAssignment","src":"1732:10:1","value":{"kind":"number","nativeSrc":"1741:1:1","nodeType":"YulLiteral","src":"1741:1:1","type":"","value":"1"},"variableNames":[{"name":"power","nativeSrc":"1732:5:1","nodeType":"YulIdentifier","src":"1732:5:1"}]},{"nativeSrc":"1751:13:1","nodeType":"YulAssignment","src":"1751:13:1","value":{"name":"_base","nativeSrc":"1759:5:1","nodeType":"YulIdentifier","src":"1759:5:1"},"variableNames":[{"name":"base","nativeSrc":"1751:4:1","nodeType":"YulIdentifier","src":"1751:4:1"}]},{"body":{"nativeSrc":"1809:213:1","nodeType":"YulBlock","src":"1809:213:1","statements":[{"body":{"nativeSrc":"1851:22:1","nodeType":"YulBlock","src":"1851:22:1","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"1853:16:1","nodeType":"YulIdentifier","src":"1853:16:1"},"nativeSrc":"1853:18:1","nodeType":"YulFunctionCall","src":"1853:18:1"},"nativeSrc":"1853:18:1","nodeType":"YulExpressionStatement","src":"1853:18:1"}]},"condition":{"arguments":[{"name":"base","nativeSrc":"1829:4:1","nodeType":"YulIdentifier","src":"1829:4:1"},{"arguments":[{"name":"max","nativeSrc":"1839:3:1","nodeType":"YulIdentifier","src":"1839:3:1"},{"name":"base","nativeSrc":"1844:4:1","nodeType":"YulIdentifier","src":"1844:4:1"}],"functionName":{"name":"div","nativeSrc":"1835:3:1","nodeType":"YulIdentifier","src":"1835:3:1"},"nativeSrc":"1835:14:1","nodeType":"YulFunctionCall","src":"1835:14:1"}],"functionName":{"name":"gt","nativeSrc":"1826:2:1","nodeType":"YulIdentifier","src":"1826:2:1"},"nativeSrc":"1826:24:1","nodeType":"YulFunctionCall","src":"1826:24:1"},"nativeSrc":"1823:50:1","nodeType":"YulIf","src":"1823:50:1"},{"body":{"nativeSrc":"1906:29:1","nodeType":"YulBlock","src":"1906:29:1","statements":[{"nativeSrc":"1908:25:1","nodeType":"YulAssignment","src":"1908:25:1","value":{"arguments":[{"name":"power","nativeSrc":"1921:5:1","nodeType":"YulIdentifier","src":"1921:5:1"},{"name":"base","nativeSrc":"1928:4:1","nodeType":"YulIdentifier","src":"1928:4:1"}],"functionName":{"name":"mul","nativeSrc":"1917:3:1","nodeType":"YulIdentifier","src":"1917:3:1"},"nativeSrc":"1917:16:1","nodeType":"YulFunctionCall","src":"1917:16:1"},"variableNames":[{"name":"power","nativeSrc":"1908:5:1","nodeType":"YulIdentifier","src":"1908:5:1"}]}]},"condition":{"arguments":[{"name":"exponent","nativeSrc":"1893:8:1","nodeType":"YulIdentifier","src":"1893:8:1"},{"kind":"number","nativeSrc":"1903:1:1","nodeType":"YulLiteral","src":"1903:1:1","type":"","value":"1"}],"functionName":{"name":"and","nativeSrc":"1889:3:1","nodeType":"YulIdentifier","src":"1889:3:1"},"nativeSrc":"1889:16:1","nodeType":"YulFunctionCall","src":"1889:16:1"},"nativeSrc":"1886:49:1","nodeType":"YulIf","src":"1886:49:1"},{"nativeSrc":"1948:23:1","nodeType":"YulAssignment","src":"1948:23:1","value":{"arguments":[{"name":"base","nativeSrc":"1960:4:1","nodeType":"YulIdentifier","src":"1960:4:1"},{"name":"base","nativeSrc":"1966:4:1","nodeType":"YulIdentifier","src":"1966:4:1"}],"functionName":{"name":"mul","nativeSrc":"1956:3:1","nodeType":"YulIdentifier","src":"1956:3:1"},"nativeSrc":"1956:15:1","nodeType":"YulFunctionCall","src":"1956:15:1"},"variableNames":[{"name":"base","nativeSrc":"1948:4:1","nodeType":"YulIdentifier","src":"1948:4:1"}]},{"nativeSrc":"1984:28:1","nodeType":"YulAssignment","src":"1984:28:1","value":{"arguments":[{"kind":"number","nativeSrc":"2000:1:1","nodeType":"YulLiteral","src":"2000:1:1","type":"","value":"1"},{"name":"exponent","nativeSrc":"2003:8:1","nodeType":"YulIdentifier","src":"2003:8:1"}],"functionName":{"name":"shr","nativeSrc":"1996:3:1","nodeType":"YulIdentifier","src":"1996:3:1"},"nativeSrc":"1996:16:1","nodeType":"YulFunctionCall","src":"1996:16:1"},"variableNames":[{"name":"exponent","nativeSrc":"1984:8:1","nodeType":"YulIdentifier","src":"1984:8:1"}]}]},"condition":{"arguments":[{"name":"exponent","nativeSrc":"1784:8:1","nodeType":"YulIdentifier","src":"1784:8:1"},{"kind":"number","nativeSrc":"1794:1:1","nodeType":"YulLiteral","src":"1794:1:1","type":"","value":"1"}],"functionName":{"name":"gt","nativeSrc":"1781:2:1","nodeType":"YulIdentifier","src":"1781:2:1"},"nativeSrc":"1781:15:1","nodeType":"YulFunctionCall","src":"1781:15:1"},"nativeSrc":"1773:249:1","nodeType":"YulForLoop","post":{"nativeSrc":"1797:3:1","nodeType":"YulBlock","src":"1797:3:1","statements":[]},"pre":{"nativeSrc":"1777:3:1","nodeType":"YulBlock","src":"1777:3:1","statements":[]},"src":"1773:249:1"}]},"name":"checked_exp_helper","nativeSrc":"1653:375:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"_base","nativeSrc":"1681:5:1","nodeType":"YulTypedName","src":"1681:5:1","type":""},{"name":"exponent","nativeSrc":"1688:8:1","nodeType":"YulTypedName","src":"1688:8:1","type":""},{"name":"max","nativeSrc":"1698:3:1","nodeType":"YulTypedName","src":"1698:3:1","type":""}],"returnVariables":[{"name":"power","nativeSrc":"1706:5:1","nodeType":"YulTypedName","src":"1706:5:1","type":""},{"name":"base","nativeSrc":"1713:4:1","nodeType":"YulTypedName","src":"1713:4:1","type":""}],"src":"1653:375:1"},{"body":{"nativeSrc":"2092:843:1","nodeType":"YulBlock","src":"2092:843:1","statements":[{"body":{"nativeSrc":"2130:52:1","nodeType":"YulBlock","src":"2130:52:1","statements":[{"nativeSrc":"2144:10:1","nodeType":"YulAssignment","src":"2144:10:1","value":{"kind":"number","nativeSrc":"2153:1:1","nodeType":"YulLiteral","src":"2153:1:1","type":"","value":"1"},"variableNames":[{"name":"power","nativeSrc":"2144:5:1","nodeType":"YulIdentifier","src":"2144:5:1"}]},{"nativeSrc":"2167:5:1","nodeType":"YulLeave","src":"2167:5:1"}]},"condition":{"arguments":[{"name":"exponent","nativeSrc":"2112:8:1","nodeType":"YulIdentifier","src":"2112:8:1"}],"functionName":{"name":"iszero","nativeSrc":"2105:6:1","nodeType":"YulIdentifier","src":"2105:6:1"},"nativeSrc":"2105:16:1","nodeType":"YulFunctionCall","src":"2105:16:1"},"nativeSrc":"2102:80:1","nodeType":"YulIf","src":"2102:80:1"},{"body":{"nativeSrc":"2215:52:1","nodeType":"YulBlock","src":"2215:52:1","statements":[{"nativeSrc":"2229:10:1","nodeType":"YulAssignment","src":"2229:10:1","value":{"kind":"number","nativeSrc":"2238:1:1","nodeType":"YulLiteral","src":"2238:1:1","type":"","value":"0"},"variableNames":[{"name":"power","nativeSrc":"2229:5:1","nodeType":"YulIdentifier","src":"2229:5:1"}]},{"nativeSrc":"2252:5:1","nodeType":"YulLeave","src":"2252:5:1"}]},"condition":{"arguments":[{"name":"base","nativeSrc":"2201:4:1","nodeType":"YulIdentifier","src":"2201:4:1"}],"functionName":{"name":"iszero","nativeSrc":"2194:6:1","nodeType":"YulIdentifier","src":"2194:6:1"},"nativeSrc":"2194:12:1","nodeType":"YulFunctionCall","src":"2194:12:1"},"nativeSrc":"2191:76:1","nodeType":"YulIf","src":"2191:76:1"},{"cases":[{"body":{"nativeSrc":"2303:52:1","nodeType":"YulBlock","src":"2303:52:1","statements":[{"nativeSrc":"2317:10:1","nodeType":"YulAssignment","src":"2317:10:1","value":{"kind":"number","nativeSrc":"2326:1:1","nodeType":"YulLiteral","src":"2326:1:1","type":"","value":"1"},"variableNames":[{"name":"power","nativeSrc":"2317:5:1","nodeType":"YulIdentifier","src":"2317:5:1"}]},{"nativeSrc":"2340:5:1","nodeType":"YulLeave","src":"2340:5:1"}]},"nativeSrc":"2296:59:1","nodeType":"YulCase","src":"2296:59:1","value":{"kind":"number","nativeSrc":"2301:1:1","nodeType":"YulLiteral","src":"2301:1:1","type":"","value":"1"}},{"body":{"nativeSrc":"2371:167:1","nodeType":"YulBlock","src":"2371:167:1","statements":[{"body":{"nativeSrc":"2406:22:1","nodeType":"YulBlock","src":"2406:22:1","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"2408:16:1","nodeType":"YulIdentifier","src":"2408:16:1"},"nativeSrc":"2408:18:1","nodeType":"YulFunctionCall","src":"2408:18:1"},"nativeSrc":"2408:18:1","nodeType":"YulExpressionStatement","src":"2408:18:1"}]},"condition":{"arguments":[{"name":"exponent","nativeSrc":"2391:8:1","nodeType":"YulIdentifier","src":"2391:8:1"},{"kind":"number","nativeSrc":"2401:3:1","nodeType":"YulLiteral","src":"2401:3:1","type":"","value":"255"}],"functionName":{"name":"gt","nativeSrc":"2388:2:1","nodeType":"YulIdentifier","src":"2388:2:1"},"nativeSrc":"2388:17:1","nodeType":"YulFunctionCall","src":"2388:17:1"},"nativeSrc":"2385:43:1","nodeType":"YulIf","src":"2385:43:1"},{"nativeSrc":"2441:25:1","nodeType":"YulAssignment","src":"2441:25:1","value":{"arguments":[{"name":"exponent","nativeSrc":"2454:8:1","nodeType":"YulIdentifier","src":"2454:8:1"},{"kind":"number","nativeSrc":"2464:1:1","nodeType":"YulLiteral","src":"2464:1:1","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"2450:3:1","nodeType":"YulIdentifier","src":"2450:3:1"},"nativeSrc":"2450:16:1","nodeType":"YulFunctionCall","src":"2450:16:1"},"variableNames":[{"name":"power","nativeSrc":"2441:5:1","nodeType":"YulIdentifier","src":"2441:5:1"}]},{"nativeSrc":"2479:11:1","nodeType":"YulVariableDeclaration","src":"2479:11:1","value":{"kind":"number","nativeSrc":"2489:1:1","nodeType":"YulLiteral","src":"2489:1:1","type":"","value":"0"},"variables":[{"name":"_1","nativeSrc":"2483:2:1","nodeType":"YulTypedName","src":"2483:2:1","type":""}]},{"nativeSrc":"2503:7:1","nodeType":"YulAssignment","src":"2503:7:1","value":{"kind":"number","nativeSrc":"2509:1:1","nodeType":"YulLiteral","src":"2509:1:1","type":"","value":"0"},"variableNames":[{"name":"_1","nativeSrc":"2503:2:1","nodeType":"YulIdentifier","src":"2503:2:1"}]},{"nativeSrc":"2523:5:1","nodeType":"YulLeave","src":"2523:5:1"}]},"nativeSrc":"2364:174:1","nodeType":"YulCase","src":"2364:174:1","value":{"kind":"number","nativeSrc":"2369:1:1","nodeType":"YulLiteral","src":"2369:1:1","type":"","value":"2"}}],"expression":{"name":"base","nativeSrc":"2283:4:1","nodeType":"YulIdentifier","src":"2283:4:1"},"nativeSrc":"2276:262:1","nodeType":"YulSwitch","src":"2276:262:1"},{"body":{"nativeSrc":"2636:114:1","nodeType":"YulBlock","src":"2636:114:1","statements":[{"nativeSrc":"2650:28:1","nodeType":"YulAssignment","src":"2650:28:1","value":{"arguments":[{"name":"base","nativeSrc":"2663:4:1","nodeType":"YulIdentifier","src":"2663:4:1"},{"name":"exponent","nativeSrc":"2669:8:1","nodeType":"YulIdentifier","src":"2669:8:1"}],"functionName":{"name":"exp","nativeSrc":"2659:3:1","nodeType":"YulIdentifier","src":"2659:3:1"},"nativeSrc":"2659:19:1","nodeType":"YulFunctionCall","src":"2659:19:1"},"variableNames":[{"name":"power","nativeSrc":"2650:5:1","nodeType":"YulIdentifier","src":"2650:5:1"}]},{"nativeSrc":"2691:11:1","nodeType":"YulVariableDeclaration","src":"2691:11:1","value":{"kind":"number","nativeSrc":"2701:1:1","nodeType":"YulLiteral","src":"2701:1:1","type":"","value":"0"},"variables":[{"name":"_2","nativeSrc":"2695:2:1","nodeType":"YulTypedName","src":"2695:2:1","type":""}]},{"nativeSrc":"2715:7:1","nodeType":"YulAssignment","src":"2715:7:1","value":{"kind":"number","nativeSrc":"2721:1:1","nodeType":"YulLiteral","src":"2721:1:1","type":"","value":"0"},"variableNames":[{"name":"_2","nativeSrc":"2715:2:1","nodeType":"YulIdentifier","src":"2715:2:1"}]},{"nativeSrc":"2735:5:1","nodeType":"YulLeave","src":"2735:5:1"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"base","nativeSrc":"2560:4:1","nodeType":"YulIdentifier","src":"2560:4:1"},{"kind":"number","nativeSrc":"2566:2:1","nodeType":"YulLiteral","src":"2566:2:1","type":"","value":"11"}],"functionName":{"name":"lt","nativeSrc":"2557:2:1","nodeType":"YulIdentifier","src":"2557:2:1"},"nativeSrc":"2557:12:1","nodeType":"YulFunctionCall","src":"2557:12:1"},{"arguments":[{"name":"exponent","nativeSrc":"2574:8:1","nodeType":"YulIdentifier","src":"2574:8:1"},{"kind":"number","nativeSrc":"2584:2:1","nodeType":"YulLiteral","src":"2584:2:1","type":"","value":"78"}],"functionName":{"name":"lt","nativeSrc":"2571:2:1","nodeType":"YulIdentifier","src":"2571:2:1"},"nativeSrc":"2571:16:1","nodeType":"YulFunctionCall","src":"2571:16:1"}],"functionName":{"name":"and","nativeSrc":"2553:3:1","nodeType":"YulIdentifier","src":"2553:3:1"},"nativeSrc":"2553:35:1","nodeType":"YulFunctionCall","src":"2553:35:1"},{"arguments":[{"arguments":[{"name":"base","nativeSrc":"2597:4:1","nodeType":"YulIdentifier","src":"2597:4:1"},{"kind":"number","nativeSrc":"2603:3:1","nodeType":"YulLiteral","src":"2603:3:1","type":"","value":"307"}],"functionName":{"name":"lt","nativeSrc":"2594:2:1","nodeType":"YulIdentifier","src":"2594:2:1"},"nativeSrc":"2594:13:1","nodeType":"YulFunctionCall","src":"2594:13:1"},{"arguments":[{"name":"exponent","nativeSrc":"2612:8:1","nodeType":"YulIdentifier","src":"2612:8:1"},{"kind":"number","nativeSrc":"2622:2:1","nodeType":"YulLiteral","src":"2622:2:1","type":"","value":"32"}],"functionName":{"name":"lt","nativeSrc":"2609:2:1","nodeType":"YulIdentifier","src":"2609:2:1"},"nativeSrc":"2609:16:1","nodeType":"YulFunctionCall","src":"2609:16:1"}],"functionName":{"name":"and","nativeSrc":"2590:3:1","nodeType":"YulIdentifier","src":"2590:3:1"},"nativeSrc":"2590:36:1","nodeType":"YulFunctionCall","src":"2590:36:1"}],"functionName":{"name":"or","nativeSrc":"2550:2:1","nodeType":"YulIdentifier","src":"2550:2:1"},"nativeSrc":"2550:77:1","nodeType":"YulFunctionCall","src":"2550:77:1"},"nativeSrc":"2547:203:1","nodeType":"YulIf","src":"2547:203:1"},{"nativeSrc":"2759:65:1","nodeType":"YulVariableDeclaration","src":"2759:65:1","value":{"arguments":[{"name":"base","nativeSrc":"2801:4:1","nodeType":"YulIdentifier","src":"2801:4:1"},{"name":"exponent","nativeSrc":"2807:8:1","nodeType":"YulIdentifier","src":"2807:8:1"},{"arguments":[{"kind":"number","nativeSrc":"2821:1:1","nodeType":"YulLiteral","src":"2821:1:1","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"2817:3:1","nodeType":"YulIdentifier","src":"2817:3:1"},"nativeSrc":"2817:6:1","nodeType":"YulFunctionCall","src":"2817:6:1"}],"functionName":{"name":"checked_exp_helper","nativeSrc":"2782:18:1","nodeType":"YulIdentifier","src":"2782:18:1"},"nativeSrc":"2782:42:1","nodeType":"YulFunctionCall","src":"2782:42:1"},"variables":[{"name":"power_1","nativeSrc":"2763:7:1","nodeType":"YulTypedName","src":"2763:7:1","type":""},{"name":"base_1","nativeSrc":"2772:6:1","nodeType":"YulTypedName","src":"2772:6:1","type":""}]},{"body":{"nativeSrc":"2869:22:1","nodeType":"YulBlock","src":"2869:22:1","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"2871:16:1","nodeType":"YulIdentifier","src":"2871:16:1"},"nativeSrc":"2871:18:1","nodeType":"YulFunctionCall","src":"2871:18:1"},"nativeSrc":"2871:18:1","nodeType":"YulExpressionStatement","src":"2871:18:1"}]},"condition":{"arguments":[{"name":"power_1","nativeSrc":"2839:7:1","nodeType":"YulIdentifier","src":"2839:7:1"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"2856:1:1","nodeType":"YulLiteral","src":"2856:1:1","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"2852:3:1","nodeType":"YulIdentifier","src":"2852:3:1"},"nativeSrc":"2852:6:1","nodeType":"YulFunctionCall","src":"2852:6:1"},{"name":"base_1","nativeSrc":"2860:6:1","nodeType":"YulIdentifier","src":"2860:6:1"}],"functionName":{"name":"div","nativeSrc":"2848:3:1","nodeType":"YulIdentifier","src":"2848:3:1"},"nativeSrc":"2848:19:1","nodeType":"YulFunctionCall","src":"2848:19:1"}],"functionName":{"name":"gt","nativeSrc":"2836:2:1","nodeType":"YulIdentifier","src":"2836:2:1"},"nativeSrc":"2836:32:1","nodeType":"YulFunctionCall","src":"2836:32:1"},"nativeSrc":"2833:58:1","nodeType":"YulIf","src":"2833:58:1"},{"nativeSrc":"2900:29:1","nodeType":"YulAssignment","src":"2900:29:1","value":{"arguments":[{"name":"power_1","nativeSrc":"2913:7:1","nodeType":"YulIdentifier","src":"2913:7:1"},{"name":"base_1","nativeSrc":"2922:6:1","nodeType":"YulIdentifier","src":"2922:6:1"}],"functionName":{"name":"mul","nativeSrc":"2909:3:1","nodeType":"YulIdentifier","src":"2909:3:1"},"nativeSrc":"2909:20:1","nodeType":"YulFunctionCall","src":"2909:20:1"},"variableNames":[{"name":"power","nativeSrc":"2900:5:1","nodeType":"YulIdentifier","src":"2900:5:1"}]}]},"name":"checked_exp_unsigned","nativeSrc":"2033:902:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"base","nativeSrc":"2063:4:1","nodeType":"YulTypedName","src":"2063:4:1","type":""},{"name":"exponent","nativeSrc":"2069:8:1","nodeType":"YulTypedName","src":"2069:8:1","type":""}],"returnVariables":[{"name":"power","nativeSrc":"2082:5:1","nodeType":"YulTypedName","src":"2082:5:1","type":""}],"src":"2033:902:1"},{"body":{"nativeSrc":"3010:61:1","nodeType":"YulBlock","src":"3010:61:1","statements":[{"nativeSrc":"3020:45:1","nodeType":"YulAssignment","src":"3020:45:1","value":{"arguments":[{"name":"base","nativeSrc":"3050:4:1","nodeType":"YulIdentifier","src":"3050:4:1"},{"name":"exponent","nativeSrc":"3056:8:1","nodeType":"YulIdentifier","src":"3056:8:1"}],"functionName":{"name":"checked_exp_unsigned","nativeSrc":"3029:20:1","nodeType":"YulIdentifier","src":"3029:20:1"},"nativeSrc":"3029:36:1","nodeType":"YulFunctionCall","src":"3029:36:1"},"variableNames":[{"name":"power","nativeSrc":"3020:5:1","nodeType":"YulIdentifier","src":"3020:5:1"}]}]},"name":"checked_exp_t_uint256_t_uint256","nativeSrc":"2940:131:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"base","nativeSrc":"2981:4:1","nodeType":"YulTypedName","src":"2981:4:1","type":""},{"name":"exponent","nativeSrc":"2987:8:1","nodeType":"YulTypedName","src":"2987:8:1","type":""}],"returnVariables":[{"name":"power","nativeSrc":"3000:5:1","nodeType":"YulTypedName","src":"3000:5:1","type":""}],"src":"2940:131:1"}]},"contents":"{\n    { }\n    function validator_revert_contract_IERC20(value)\n    {\n        if iszero(eq(value, and(value, sub(shl(160, 1), 1)))) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_contract$_IERC20_$77t_contract$_IERC20_$77t_uint256t_addresst_addresst_uint128_fromMemory(headStart, dataEnd) -> value0, value1, value2, value3, value4, value5\n    {\n        if slt(sub(dataEnd, headStart), 192) { revert(0, 0) }\n        let value := mload(headStart)\n        validator_revert_contract_IERC20(value)\n        value0 := value\n        let value_1 := mload(add(headStart, 32))\n        validator_revert_contract_IERC20(value_1)\n        value1 := value_1\n        value2 := mload(add(headStart, 64))\n        let value_2 := mload(add(headStart, 96))\n        validator_revert_contract_IERC20(value_2)\n        value3 := value_2\n        let value_3 := mload(add(headStart, 128))\n        validator_revert_contract_IERC20(value_3)\n        value4 := value_3\n        let value_4 := mload(add(headStart, 160))\n        if iszero(eq(value_4, and(value_4, sub(shl(128, 1), 1)))) { revert(0, 0) }\n        value5 := value_4\n    }\n    function panic_error_0x11()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x11)\n        revert(0, 0x24)\n    }\n    function checked_add_t_uint256(x, y) -> sum\n    {\n        sum := add(x, y)\n        if gt(x, sum) { panic_error_0x11() }\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    function checked_exp_helper(_base, exponent, max) -> power, base\n    {\n        power := 1\n        base := _base\n        for { } gt(exponent, 1) { }\n        {\n            if gt(base, div(max, base)) { panic_error_0x11() }\n            if and(exponent, 1) { power := mul(power, base) }\n            base := mul(base, base)\n            exponent := shr(1, exponent)\n        }\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            let _1 := 0\n            _1 := 0\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            let _2 := 0\n            _2 := 0\n            leave\n        }\n        let power_1, base_1 := checked_exp_helper(base, exponent, not(0))\n        if gt(power_1, div(not(0), base_1)) { panic_error_0x11() }\n        power := mul(power_1, base_1)\n    }\n    function checked_exp_t_uint256_t_uint256(base, exponent) -> power\n    {\n        power := checked_exp_unsigned(base, exponent)\n    }\n}","id":1,"language":"Yul","name":"#utility.yul"}],"linkReferences":{},"object":"610160604052600060095534801561001657600080fd5b50604051614d28380380614d288339810160408190526100359161011e565b858585858585816001600160801b03821661005081426101bd565b608052506001600160a01b0390811660a05295861660c052505091831660e05261010052166101205260036009819055506000866001600160a01b031663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa1580156100c1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906100e591906101d6565b60ff1690506100f581600a6102e7565b61014052506102f395505050505050565b6001600160a01b038116811461011b57600080fd5b50565b60008060008060008060c0878903121561013757600080fd5b865161014281610106565b602088015190965061015381610106565b60408801516060890151919650945061016b81610106565b608088015190935061017c81610106565b60a08801519092506001600160801b038116811461019957600080fd5b809150509295509295509295565b634e487b7160e01b600052601160045260246000fd5b808201808211156101d0576101d06101a7565b92915050565b6000602082840312156101e857600080fd5b815160ff811681146101f957600080fd5b9392505050565b6001815b600184111561023b5780850481111561021f5761021f6101a7565b600184161561022d57908102905b60019390931c928002610204565b935093915050565b600082610252575060016101d0565b8161025f575060006101d0565b8160018114610275576002811461027f5761029b565b60019150506101d0565b60ff841115610290576102906101a7565b50506001821b6101d0565b5060208310610133831016604e8410600b84101617156102be575081810a6101d0565b6102cb6000198484610200565b80600019048211156102df576102df6101a7565b029392505050565b60006101f98383610243565b60805160a05160c05160e0516101005161012051610140516149796103af6000396000818161079e01528181610cd901528181610ff601526110670152600081816108dd015261251401526000818161064401526121af01526000818161091f01526124f20152600081816105ca01528181610d82015281816110f9015281816123d10152612dca015260008181610a89015261166d0152600081816108b6015281816137e10152818161381d015261384a01526149796000f3fe608060405234801561001057600080fd5b50600436106104495760003560e01c80638c9a281d11610241578063b2a5dbfa1161013b578063dc937e1c116100c3578063f036bc6811610087578063f036bc6814610b17578063f11b818814610b2b578063f34d96da14610b8d578063f713d8a814610b95578063fde9eb6914610ba857600080fd5b8063dc937e1c14610ac6578063dd62ed3e14610ad9578063dde43cba14610aec578063e6aa216c14610af3578063eab5231814610b0457600080fd5b8063c3863ada1161010a578063c3863ada14610a5e578063c3cda52014610a71578063cbcbb50714610a84578063d505accf14610aab578063dbc0ed8a14610abe57600080fd5b8063b2a5dbfa14610a05578063b2f4201d14610a18578063b9844d8d14610a2b578063c2ffbb9114610a4b57600080fd5b80639c9b5154116101c9578063aa9fbe021161018d578063aa9fbe02146109a8578063aaf5eb68146109cf578063ab406fe6146109d7578063adc9772e146109ea578063aff05aa9146109fd57600080fd5b80639c9b5154146109545780639e3ffce014610967578063a457c2d71461096f578063a6b63eb814610982578063a9059cbb1461099557600080fd5b8063946776cd11610210578063946776cd146108d857806395d89b41146108ff578063981b24d01461090757806399248ea71461091a5780639a99b4f01461094157600080fd5b80638c9a281d146108875780638dbefee21461088f5780638e9b2ca4146108a2578063919cd40f146108b157600080fd5b806341cbf54a116103525780636f50458d116102da578063781603761161029e578063781603761461080c578063787a08a61461082c5780637b5b1157146108345780637bb73c97146108475780637e90d7ef1461086757600080fd5b80636f50458d146107c057806370a08231146107d3578063727a5d57146107e657806372b49d631461079157806374011f56146107f957600080fd5b806358146d171161032157806358146d17146106f85780635b3cc0cf1461071f5780635c19a95c1461077e578063616e0bf9146107915780636198e1351461079957600080fd5b806341cbf54a1461068257806345755dd6146106a95780634575e69b146106bc5780634cdad506146106e557600080fd5b806323b872dd116103d5578063313ce567116103a4578063313ce567146105ec5780633373ee4c14610601578063359c4a961461063f5780633644e51514610666578063395093511461066f57600080fd5b806323b872dd14610578578063250201db1461058b57806330adf81f1461059e578063312f6b83146105c557600080fd5b8063111fd88b1161041c578063111fd88b1461050a578063112d037c1461053557806318160ddd1461054a5780631e9a69501461055257806320fb80b51461056557600080fd5b806302fb4d851461044e57806306fdde0314610474578063091030c314610489578063095ea7b3146104e7575b600080fd5b61046161045c3660046140b1565b610bbb565b6040519081526020015b60405180910390f35b61047c610df9565b60405161046b919061412b565b6104c261049736600461413e565b603e6020526000908152604090205464ffffffffff811690600160281b90046001600160d81b031682565b6040805164ffffffffff90931683526001600160d81b0390911660208301520161046b565b6104fa6104f53660046140b1565b610e8b565b604051901515815260200161046b565b61051d610518366004614159565b610ea3565b6040516001600160a01b03909116815260200161046b565b610548610543366004614172565b610ebe565b005b600254610461565b6105486105603660046140b1565b610f08565b610461610573366004614172565b610f17565b6104fa610586366004614172565b610f68565b61054861059936600461413e565b610f8c565b6104617f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c981565b61051d7f000000000000000000000000000000000000000000000000000000000000000081565b60125b60405160ff909116815260200161046b565b61046161060f3660046141af565b6001600160a01b038082166000908152603c60209081526040808320938616835260029093019052205492915050565b6104617f000000000000000000000000000000000000000000000000000000000000000081565b61046160435481565b6104fa61067d3660046140b1565b610fd2565b6104617f9a9a49b990ba9bb39f8048c490a40ab25c18f55d208d5fbcf958261a9b48716d81565b6105486106b7366004614159565b610ff4565b61051d6106ca366004614159565b6000908152604660205260409020546001600160a01b031690565b6104616106f3366004614159565b611159565b610707670de0b6b3a764000081565b6040516001600160d81b03909116815260200161046b565b61075e61072d3660046140b1565b60066020908152600092835260408084209091529082529020546001600160801b0380821691600160801b90041682565b604080516001600160801b0393841681529290911660208301520161046b565b61054861078c36600461413e565b611184565b604f54610461565b6104617f000000000000000000000000000000000000000000000000000000000000000081565b61051d6107ce3660046141f1565b61119c565b6104616107e136600461413e565b6111be565b6104616107f4366004614159565b6111d9565b610548610807366004614159565b6111fc565b61047c604051806040016040528060018152602001603160f81b81525081565b61054861123f565b610548610842366004614159565b61124a565b61046161085536600461413e565b60076020526000908152604090205481565b61046161087536600461413e565b603d6020526000908152604090205481565b610461600081565b61046161089d36600461413e565b6112bd565b610461670de0b6b3a764000081565b6104617f000000000000000000000000000000000000000000000000000000000000000081565b61051d7f000000000000000000000000000000000000000000000000000000000000000081565b61047c611398565b610461610915366004614159565b6113a7565b61051d7f000000000000000000000000000000000000000000000000000000000000000081565b61054861094f3660046140b1565b6113b2565b61054861096236600461421b565b6113bd565b610461600181565b6104fa61097d3660046140b1565b611414565b61054861099036600461425d565b61148f565b6104fa6109a33660046140b1565b611514565b6104617f10d8d059343739efce7dad10d09f0806da52b252b3e6a7951920d2d6ec4102e581565b6105ef601281565b6105486109e53660046142b2565b611522565b6105486109f83660046140b1565b6115e5565b6105486115f0565b610548610a13366004614345565b611662565b610461610a263660046141f1565b611713565b610461610a3936600461413e565b60446020526000908152604090205481565b610461610a59366004614439565b61173b565b60085461051d906001600160a01b031681565b610548610a7f366004614486565b611764565b61051d7f000000000000000000000000000000000000000000000000000000000000000081565b610548610ab93660046144de565b611929565b610461600281565b610548610ad43660046141f1565b611af1565b610461610ae73660046141af565b611afc565b6003610461565b6051546001600160d81b0316610707565b610548610b12366004614549565b611b27565b6051546104fa90600160d81b900460ff1681565b610b67610b3936600461413e565b603c60205260009081526040902080546001909101546001600160801b0380831692600160801b9004169083565b604080516001600160801b0394851681529390921660208401529082015260600161046b565b605054610461565b610548610ba336600461457c565b611b3e565b610548610bb6366004614159565b611d12565b6000610bc76000610ea3565b6001600160a01b0316336001600160a01b031614610c005760405162461bcd60e51b8152600401610bf7906145ae565b60405180910390fd5b605154600160d81b900460ff1615610c5a5760405162461bcd60e51b815260206004820152601d60248201527f50524556494f55535f534c415348494e475f4e4f545f534554544c45440000006044820152606401610bf7565b60008211610c985760405162461bcd60e51b815260206004820152600b60248201526a16915493d7d05353d5539560aa1b6044820152606401610bf7565b6000610ca360025490565b90506000610cb082611159565b90506000610cc960505483611de390919063ffffffff16565b905080851115610cd7578094505b7f0000000000000000000000000000000000000000000000000000000000000000610d0286846145fb565b1015610d475760405162461bcd60e51b815260206004820152601460248201527352454d41494e494e475f4c545f4d494e494d554d60601b6044820152606401610bf7565b6051805460ff60d81b1916600160d81b179055610d75610d70610d6a87856145fb565b85611e6f565b611ead565b610da96001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000168787611f50565b856001600160a01b03167f4ed05e9673c26d2ed44f7ef6a7f2942df0ee3b5e1e17db4b99f9dcd261a339cd86604051610de491815260200190565b60405180910390a28493505050505b92915050565b606060038054610e089061460e565b80601f0160208091040260200160405190810160405280929190818152602001828054610e349061460e565b8015610e815780601f10610e5657610100808354040283529160200191610e81565b820191906000526020600020905b815481529060010190602001808311610e6457829003601f168201915b5050505050905090565b600033610e99818585611fb3565b5060019392505050565b6000908152604560205260409020546001600160a01b031690565b610ec86002610ea3565b6001600160a01b0316336001600160a01b031614610ef85760405162461bcd60e51b8152600401610bf790614648565b610f038383836120d7565b505050565b610f133383836120d7565b5050565b6000610f236002610ea3565b6001600160a01b0316336001600160a01b031614610f535760405162461bcd60e51b8152600401610bf790614648565b610f5e848484612458565b90505b9392505050565b600033610f76858285612590565b610f81858585612604565b506001949350505050565b610f966002610ea3565b6001600160a01b0316336001600160a01b031614610fc65760405162461bcd60e51b8152600401610bf790614648565b610fcf81612735565b50565b600033610e99818585610fe58383611afc565b610fef919061467f565b611fb3565b7f00000000000000000000000000000000000000000000000000000000000000008110156110585760405162461bcd60e51b8152602060048201526011602482015270414d4f554e545f4c545f4d494e494d554d60781b6044820152606401610bf7565b600061106360025490565b90507f00000000000000000000000000000000000000000000000000000000000000008110156110c95760405162461bcd60e51b81526020600482015260116024820152705348415245535f4c545f4d494e494d554d60781b6044820152606401610bf7565b60006110d482611159565b90506110ec610d706110e6858461467f565b84611e6f565b6111216001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016333086612818565b6040518381527f278e51d3323fbf18b9fb8df3f8b97e31b145bc1146c52e764cf4aa1bfc4ba17d9060200160405180910390a1505050565b6051546000906001600160d81b031661117a83670de0b6b3a7640000614692565b610df391906146a9565b61119033826000612850565b610fcf33826001612850565b6000806111a883612951565b925050506111b68482612990565b949350505050565b6001600160a01b031660009081526020819052604090205490565b605154600090670de0b6b3a76400009061117a906001600160d81b031684614692565b6112066000610ea3565b6001600160a01b0316336001600160a01b0316146112365760405162461bcd60e51b8152600401610bf7906145ae565b610fcf816129bb565b61124833612735565b565b6112546001610ea3565b6001600160a01b0316336001600160a01b0316146112b45760405162461bcd60e51b815260206004820152601960248201527f43414c4c45525f4e4f545f434f4f4c444f574e5f41444d494e000000000000006044820152606401610bf7565b610fcf81612a41565b604080516001808252818301909252600091829190816020015b611304604051806060016040528060006001600160a01b0316815260200160008152602001600081525090565b8152602001906001900390816112d75790505090506040518060600160405280306001600160a01b0316815260200161133c856111be565b815260200161134a60025490565b81525081600081518110611360576113606146cb565b60200260200101819052506113758382612a76565b6001600160a01b0384166000908152603d6020526040902054610f61919061467f565b606060048054610e089061460e565b6000610df360025490565b610f03338383612458565b6113c76002610ea3565b6001600160a01b0316336001600160a01b0316146113f75760405162461bcd60e51b8152600401610bf790614648565b611402848484612458565b5061140e8484836120d7565b50505050565b600033816114228286611afc565b9050838110156114825760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610bf7565b610f818286868403611fb3565b60095460039081116114fa5760405162461bcd60e51b815260206004820152602e60248201527f436f6e747261637420696e7374616e63652068617320616c726561647920626560448201526d195b881a5b9a5d1a585b1a5e995960921b6064820152608401610bf7565b600981905561150c8686868686612b79565b505050505050565b600033610e99818585612604565b60008281526045602052604090205482906001600160a01b031633146115825760405162461bcd60e51b815260206004820152601560248201527421a0a62622a92fa727aa2fa927a622afa0a226a4a760591b6044820152606401610bf7565b60008381526046602090815260409182902080546001600160a01b0319166001600160a01b03861690811790915591518581527fc3d1bf52795a20771ee6de3e59948fd83e10db956122d4709a3b86c512963855910160405180910390a2505050565b610f13338383612c9d565b6115fa6000610ea3565b6001600160a01b0316336001600160a01b03161461162a5760405162461bcd60e51b8152600401610bf7906145ae565b6051805460ff60d81b191690556040517fcdee157e87ba915be681d4fa3f3d511afe7348eca06448a3accd6ac227fa40af90600090a1565b336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146116d25760405162461bcd60e51b815260206004820152601560248201527427a7262cafa2a6a4a9a9a4a7a72fa6a0a720a3a2a960591b6044820152606401610bf7565b60005b8151811015611709576002548282815181106116f3576116f36146cb565b60209081029190910181015101526001016116d5565b50610fcf81612e4a565b600080600061172184612951565b509150915061173282828743612fae565b95945050505050565b600080600061174984612951565b509150915061175a82828888612fae565b9695505050505050565b604080517f9a9a49b990ba9bb39f8048c490a40ab25c18f55d208d5fbcf958261a9b48716d60208201526001600160a01b03881691810191909152606081018690526080810185905260009060a0016040516020818303038152906040528051906020012090506000604354826040516020016117e29291906146e1565b60408051601f198184030181528282528051602091820120600080855291840180845281905260ff89169284019290925260608301879052608083018690529092509060019060a0016020604051602081039080840390855afa15801561184d573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166118805760405162461bcd60e51b8152600401610bf7906146fc565b6001600160a01b03811660009081526044602052604081208054916118a483614727565b9190505588146118e65760405162461bcd60e51b815260206004820152600d60248201526c494e56414c49445f4e4f4e434560981b6044820152606401610bf7565b864211156119065760405162461bcd60e51b8152600401610bf790614740565b611912818a6000612850565b61191e818a6001612850565b505050505050505050565b6001600160a01b03871661196f5760405162461bcd60e51b815260206004820152600d60248201526c24a72b20a624a22fa7aba722a960991b6044820152606401610bf7565b8342111561198f5760405162461bcd60e51b8152600401610bf790614740565b6001600160a01b0387811660008181526044602090815260408083205460435482517f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98186015280840196909652958c166060860152608085018b905260a0850181905260c08086018b90528251808703909101815260e086019092528151919092012090939192611a26929190610100016146e1565b60408051601f1981840301815282825280516020918201206000845290830180835281905260ff8816918301919091526060820186905260808201859052915060019060a0016020604051602081039080840390855afa158015611a8e573d6000803e3d6000fd5b505050602060405103516001600160a01b0316896001600160a01b031614611ac85760405162461bcd60e51b8152600401610bf7906146fc565b6001600160a01b038916600090815260446020526040902060018301905561191e898989611fb3565b610f13338383612850565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b611b32338484612458565b50610f033384836120d7565b60007f10d8d059343739efce7dad10d09f0806da52b252b3e6a7951920d2d6ec4102e588886001811115611b7457611b7461476c565b6040805160208101949094526001600160a01b039092169183019190915260608201526080810187905260a0810186905260c001604051602081830303815290604052805190602001209050600060435482604051602001611bd79291906146e1565b60408051601f198184030181528282528051602091820120600080855291840180845281905260ff89169284019290925260608301879052608083018690529092509060019060a0016020604051602081039080840390855afa158015611c42573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116611c755760405162461bcd60e51b8152600401610bf7906146fc565b6001600160a01b0381166000908152604460205260408120805491611c9983614727565b919050558814611cdb5760405162461bcd60e51b815260206004820152600d60248201526c494e56414c49445f4e4f4e434560981b6044820152606401610bf7565b86421115611cfb5760405162461bcd60e51b8152600401610bf790614740565b611d06818b8b612850565b50505050505050505050565b60008181526046602052604090205481906001600160a01b03163314611d7a5760405162461bcd60e51b815260206004820152601d60248201527f43414c4c45525f4e4f545f50454e44494e475f524f4c455f41444d494e0000006044820152606401610bf7565b60008281526045602090815260408083208054336001600160a01b0319918216811790925560468452938290208054909416909355518481527f83a9ddad961dcb7c6894c9585a16ff7792c2ec8281256a3cc7303ae830152dcf91015b60405180910390a25050565b6000821580611df0575081155b15611dfd57506000610df3565b611e09826000196146a9565b831115611e585760405162461bcd60e51b815260206004820152601c60248201527f4d4154485f4d554c5449504c49434154494f4e5f4f564552464c4f57000000006044820152606401610bf7565b612710611e658385614692565b610f6191906146a9565b6000610f6183600181611e8a670de0b6b3a764000087614692565b611e94919061467f565b611e9e91906145fb565b611ea891906146a9565b613088565b806001600160d81b0316600003611efb5760405162461bcd60e51b81526020600482015260126024820152715a45524f5f45584348414e47455f5241544560701b6044820152606401610bf7565b605180546001600160d81b0319166001600160d81b0383169081179091556040519081527fa9c433f9734baa3cf48b209454bb0ace054e191f677ba50e74b696c0d35ef262906020015b60405180910390a150565b6040516001600160a01b038316602482015260448101829052610f0390849063a9059cbb60e01b906064015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b0319909316929092179091526130f5565b6001600160a01b0383166120155760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610bf7565b6001600160a01b0382166120765760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610bf7565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b806000036120f75760405162461bcd60e51b8152600401610bf790614782565b6001600160a01b0383166000908152603e602090815260409182902082518084019093525464ffffffffff81168352600160281b90046001600160d81b031690820152605154600160d81b900460ff1661223757604f548151612161919064ffffffffff1661467f565b4210156121a85760405162461bcd60e51b815260206004820152601560248201527424a729aaa32324a1a4a2a72a2fa1a7a7a62227aba760591b6044820152606401610bf7565b604f5481517f0000000000000000000000000000000000000000000000000000000000000000916121df9164ffffffffff1661467f565b6121e990426145fb565b11156122375760405162461bcd60e51b815260206004820152601760248201527f554e5354414b455f57494e444f575f46494e49534845440000000000000000006044820152606401610bf7565b6000612242856111be565b605154909150600090600160d81b900460ff1661226c5782602001516001600160d81b031661226e565b815b9050806000036122c05760405162461bcd60e51b815260206004820152601b60248201527f494e56414c49445f5a45524f5f4d41585f52454445454d41424c4500000000006044820152606401610bf7565b60008185116122cf57846122d1565b815b90506122df878460016131c7565b5060006122eb82611159565b90506122f78883613276565b845164ffffffffff16156123c4578185602001516001600160d81b031661231e91906145fb565b600003612343576001600160a01b0388166000908152603e60205260408120556123c4565b61234c826133a8565b6001600160a01b0389166000908152603e6020526040902054612388916001600160b81b031690600160281b90046001600160d81b03166147af565b6001600160a01b0389166000908152603e6020526040902080546001600160d81b0392909216600160281b0264ffffffffff9092169190911790555b6123f86001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000168883611f50565b866001600160a01b0316886001600160a01b03167f3f693fff038bb8a046aa76d9516190ac7444f7d69cf952c4cbdc086fdef2d6fc8385604051612446929190918252602082015260400190565b60405180910390a35050505050505050565b60008160000361247a5760405162461bcd60e51b8152600401610bf790614782565b600061249085612489876111be565b60006131c7565b905060008184116124a157836124a3565b815b9050806000036124c55760405162461bcd60e51b8152600401610bf790614782565b6124cf81836145fb565b6001600160a01b038088166000908152603d602052604090209190915561253a907f0000000000000000000000000000000000000000000000000000000000000000167f00000000000000000000000000000000000000000000000000000000000000008784612818565b846001600160a01b0316866001600160a01b03167f9310ccfcb8de723f578a9e4282ea9f521f05ae40dc08f3068dfad528a65ee3c78360405161257f91815260200190565b60405180910390a395945050505050565b600061259c8484611afc565b9050600019811461140e57818110156125f75760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610bf7565b61140e8484848403611fb3565b600061260f846111be565b905061261d848260016131c7565b50826001600160a01b0316846001600160a01b03161461272a576000612642846111be565b9050612650848260016131c7565b506001600160a01b0385166000908152603e602090815260409182902082518084019093525464ffffffffff8116808452600160281b9091046001600160d81b03169183019190915215612727578383036126c3576001600160a01b0386166000908152603e6020526040812055612727565b60208101516001600160d81b03166126db85856145fb565b1015612727576126eb84846145fb565b6001600160a01b0387166000908152603e6020526040902080546001600160d81b0392909216600160281b0264ffffffffff9092169190911790555b50505b61140e848484613411565b6000612740826111be565b9050806000036127925760405162461bcd60e51b815260206004820152601b60248201527f494e56414c49445f42414c414e43455f4f4e5f434f4f4c444f574e00000000006044820152606401610bf7565b60408051808201825264ffffffffff42811682526001600160d81b0380851660208085019182526001600160a01b0388166000818152603e9092529086902094519151909216600160281b0292169190911790915590517f8a05f911d8ab7fc50fec37ef4ba7f9bfcb1a3c191c81dcd824ad0946c4e20d6590611dd79084815260200190565b6040516001600160a01b038085166024830152831660448201526064810182905261140e9085906323b872dd60e01b90608401611f7c565b6001600160a01b03821661289a5760405162461bcd60e51b8152602060048201526011602482015270494e56414c49445f44454c45474154454560781b6044820152606401610bf7565b60006128a582612951565b9250505060006128b4856111be565b905060006128c28684612990565b6001600160a01b03878116600090815260208690526040902080546001600160a01b03191691881691909117905590506128fe818684876135b5565b846001600160a01b0316866001600160a01b03167fe8d51c8e11bd570db1734c8ec775785330e77007feed45c43b608ef33ff914bd8660405161294191906147f0565b60405180910390a3505050505050565b60008080808460018111156129685761296861476c565b0361297d57506006915060079050603f612989565b50604091506041905060425b9193909250565b6001600160a01b0380831660009081526020839052604081205490911680610f615783915050610df3565b6127108110612a0c5760405162461bcd60e51b815260206004820152601b60248201527f494e56414c49445f534c415348494e475f50455243454e5441474500000000006044820152606401610bf7565b60508190556040518181527fb79c2d6c7f5c95eec9dc05affc0ed002620a4ec6d72b7b0744cc8638168c600a90602001611f45565b604f8190556040518181527fbbf67247b5c97564e30ffc0a355e71c006836de7b9149e09e3d5d6054cb0335590602001611f45565b600080805b8351811015612b71576000603c6000868481518110612a9c57612a9c6146cb565b602090810291909101810151516001600160a01b031682528101919091526040016000908120600181015481548851929450612b0a926001600160801b0380831692600160801b900416908a9088908110612af957612af96146cb565b6020026020010151604001516137b9565b9050612b5b868481518110612b2157612b216146cb565b602002602001015160200151828460020160008b6001600160a01b03166001600160a01b03168152602001908152602001600020546138c4565b612b65908561467f565b93505050600101612a7b565b509392505050565b60408051600380825260808201909252600091816020015b6040805180820190915260008082526020820152815260200190600190039081612b91579050509050604051806040016040528060008152602001876001600160a01b031681525081600081518110612bec57612bec6146cb565b6020026020010181905250604051806040016040528060018152602001866001600160a01b031681525081600181518110612c2957612c296146cb565b6020026020010181905250604051806040016040528060028152602001856001600160a01b031681525081600281518110612c6657612c666146cb565b6020026020010181905250612c7a816138f0565b612c83836129bb565b612c8c82612a41565b61150c670de0b6b3a7640000611ead565b605154600160d81b900460ff1615612cea5760405162461bcd60e51b815260206004820152601060248201526f534c415348494e475f4f4e474f494e4760801b6044820152606401610bf7565b80600003612d0a5760405162461bcd60e51b8152600401610bf790614782565b6000612d15836111be565b90506000612d2d843084612d2860025490565b613ac2565b90508015612db0576001600160a01b0384166000908152603d6020526040902054612d5990829061467f565b6001600160a01b0385166000818152603d60209081526040918290209390935580519182529181018390527f2468f9268c60ad90e2d49edb0032c8a001e733ae888b3ab8e982edf535be1a76910160405180910390a15b6000612dbb846111d9565b9050612df26001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016873087612818565b612dfc8582613b83565b846001600160a01b0316866001600160a01b03167f6c86f3fd5118b3aa8bb4f389a617046de0a3d3d477de1a1673d227f802f616dc8684604051612941929190918252602082015260400190565b60005b8151811015610f13576000603c6000848481518110612e6e57612e6e6146cb565b6020026020010151604001516001600160a01b03166001600160a01b031681526020019081526020016000209050612ee1838381518110612eb157612eb16146cb565b60200260200101516040015182858581518110612ed057612ed06146cb565b602002602001015160200151613c42565b50828281518110612ef457612ef46146cb565b60209081029190910101515181546fffffffffffffffffffffffffffffffff19166001600160801b039091161781558251839083908110612f3757612f376146cb565b6020026020010151604001516001600160a01b03167f87fa03892a0556cb6b8f97e6d533a150d4d55fcbf275fff5fa003fa636bcc7fa848481518110612f7f57612f7f6146cb565b602090810291909101810151516040516001600160801b0390911681520160405180910390a250600101612e4d565b600043821115612ff75760405162461bcd60e51b815260206004820152601460248201527324a72b20a624a22fa12627a1a5afa72aa6a122a960611b6044820152606401610bf7565b6001600160a01b0383166000908152602085905260408120549081900361302957613021846111be565b9150506111b6565b6001600160a01b0384166000908152602087815260408083208380529091529020546001600160801b03168310156130655760009150506111b6565b6001600160a01b038416600090815260208790526040902061175a908285613cfa565b60006001600160d81b038211156130f15760405162461bcd60e51b815260206004820152602760248201527f53616665436173743a2076616c756520646f65736e27742066697420696e20326044820152663136206269747360c81b6064820152608401610bf7565b5090565b600061314a826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316613e069092919063ffffffff16565b805190915015610f03578080602001905181019061316891906147fe565b610f035760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610bf7565b6000806131d9853086612d2860025490565b6001600160a01b0386166000908152603d60205260408120549192509061320190839061467f565b9050811561173257831561322b576001600160a01b0386166000908152603d602052604090208190555b604080516001600160a01b0388168152602081018490527f2468f9268c60ad90e2d49edb0032c8a001e733ae888b3ab8e982edf535be1a76910160405180910390a195945050505050565b6001600160a01b0382166132d65760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610bf7565b6001600160a01b0382166000908152602081905260409020548181101561334a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610bf7565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b60006001600160b81b038211156130f15760405162461bcd60e51b815260206004820152602760248201527f53616665436173743a2076616c756520646f65736e27742066697420696e20316044820152663834206269747360c81b6064820152608401610bf7565b6001600160a01b0383166134755760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610bf7565b6001600160a01b0382166134d75760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610bf7565b6001600160a01b0383166000908152602081905260409020548181101561354f5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610bf7565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a361140e565b826001600160a01b0316846001600160a01b0316031561140e576000806135db83612951565b5090925090506001600160a01b038616156136cc576001600160a01b038616600090815260208290526040812054801561365b576001600160a01b0388166000908152602085905260408120906136336001846145fb565b8152602081019190915260400160002054600160801b90046001600160801b03169150613667565b613664886111be565b91505b61367d84848a856136788b826145fb565b613e15565b6001600160a01b0388167fa0a19463ee116110c9b282012d9b65cc5522dc38a9520340cbaf3142e550127f6136b288856145fb565b876040516136c1929190614820565b60405180910390a250505b6001600160a01b0385161561150c576001600160a01b0385166000908152602082905260408120548015613746576001600160a01b03871660009081526020859052604081209061371e6001846145fb565b8152602081019190915260400160002054600160801b90046001600160801b03169150613752565b61374f876111be565b91505b613763848489856136788b8261467f565b6001600160a01b0387167fa0a19463ee116110c9b282012d9b65cc5522dc38a9520340cbaf3142e550127f613798888561467f565b876040516137a7929190614820565b60405180910390a25050505050505050565b60008315806137c6575081155b806137d9575042836001600160801b0316145b8061380d57507f0000000000000000000000000000000000000000000000000000000000000000836001600160801b031610155b156138195750836111b6565b60007f00000000000000000000000000000000000000000000000000000000000000004211613848574261386a565b7f00000000000000000000000000000000000000000000000000000000000000005b905060006138816001600160801b038616836145fb565b905086846138916012600a61491b565b61389b848a614692565b6138a59190614692565b6138af91906146a9565b6138b9919061467f565b979650505050505050565b60006138d26012600a61491b565b6138dc83856145fb565b6138e69086614692565b610f5e91906146a9565b60005b8151811015610f135760006001600160a01b03166045600084848151811061391d5761391d6146cb565b602090810291909101810151518252810191909152604001600020546001600160a01b031614801561397f575060006001600160a01b0316828281518110613967576139676146cb565b6020026020010151602001516001600160a01b031614155b6139cb5760405162461bcd60e51b815260206004820152601b60248201527f41444d494e5f43414e4e4f545f42455f494e495449414c495a454400000000006044820152606401610bf7565b8181815181106139dd576139dd6146cb565b602002602001015160200151604560008484815181106139ff576139ff6146cb565b602002602001015160000151815260200190815260200160002060006101000a8154816001600160a01b0302191690836001600160a01b03160217905550818181518110613a4f57613a4f6146cb565b6020026020010151602001516001600160a01b03167f83a9ddad961dcb7c6894c9585a16ff7792c2ec8281256a3cc7303ae830152dcf838381518110613a9757613a976146cb565b602002602001015160000151604051613ab291815260200190565b60405180910390a26001016138f3565b6001600160a01b038084166000908152603c602090815260408083209388168352600284019091528120549091908280613afd888588613c42565b9050808314613b77578615613b1a57613b178782856138c4565b91505b6001600160a01b03808a1660008181526002870160205260409081902084905551918a16917fbb123b5c06d5408bbea3c4fef481578175cfb432e3b482c6186f02ed9086585b90613b6e9085815260200190565b60405180910390a35b50979650505050505050565b6001600160a01b038216613bd95760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610bf7565b8060026000828254613beb919061467f565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001820154825460009190600160801b90046001600160801b031642819003613c6d57509050610f61565b8454600090613c889084906001600160801b031684886137b9565b9050828114613cd757600186018190556040518181526001600160a01b038816907f5777ca300dfe5bead41006fbce4389794dbc0ed8d6cccebfaf94630aa04184bc9060200160405180910390a25b85546001600160801b03428116600160801b029116178655925050509392505050565b60001982016000908152602084905260408120546001600160801b03168210613d4757506000198201600090815260208490526040902054600160801b90046001600160801b0316610f61565b600060001984015b81811115613ddd576002828203048103600081815260208881526040918290208251808401909352546001600160801b03808216808552600160801b9092041691830191909152869003613db557602001516001600160801b03169350610f6192505050565b80516001600160801b0316861115613dcf57819350613dd6565b6001820392505b5050613d4f565b5060009081526020949094525050604090912054600160801b90046001600160801b0316919050565b6060610f5e8484600085613f2c565b6001600160a01b03831660009081526020858152604080832054918890529091204391908115801590613e7757506001600160801b038316816000613e5b6001866145fb565b81526020810191909152604001600020546001600160801b0316145b15613ebb5783816000613e8b6001866145fb565b8152602081019190915260400160002080546001600160801b03928316600160801b029216919091179055613f22565b6040805180820182526001600160801b038086168252868116602080840191825260008781529086905293909320915192518116600160801b029216919091179055613f0882600161467f565b6001600160a01b0387166000908152602089905260409020555b5050505050505050565b606082471015613f8d5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610bf7565b600080866001600160a01b03168587604051613fa99190614927565b60006040518083038185875af1925050503d8060008114613fe6576040519150601f19603f3d011682016040523d82523d6000602084013e613feb565b606091505b50915091506138b9878383876060831561406657825160000361405f576001600160a01b0385163b61405f5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610bf7565b50816111b6565b6111b6838381511561407b5781518083602001fd5b8060405162461bcd60e51b8152600401610bf7919061412b565b80356001600160a01b03811681146140ac57600080fd5b919050565b600080604083850312156140c457600080fd5b6140cd83614095565b946020939093013593505050565b60005b838110156140f65781810151838201526020016140de565b50506000910152565b600081518084526141178160208601602086016140db565b601f01601f19169290920160200192915050565b602081526000610f6160208301846140ff565b60006020828403121561415057600080fd5b610f6182614095565b60006020828403121561416b57600080fd5b5035919050565b60008060006060848603121561418757600080fd5b61419084614095565b925061419e60208501614095565b929592945050506040919091013590565b600080604083850312156141c257600080fd5b6141cb83614095565b91506141d960208401614095565b90509250929050565b8035600281106140ac57600080fd5b6000806040838503121561420457600080fd5b61420d83614095565b91506141d9602084016141e2565b6000806000806080858703121561423157600080fd5b61423a85614095565b935061424860208601614095565b93969395505050506040820135916060013590565b600080600080600060a0868803121561427557600080fd5b61427e86614095565b945061428c60208701614095565b935061429a60408701614095565b94979396509394606081013594506080013592915050565b600080604083850312156142c557600080fd5b823591506141d960208401614095565b634e487b7160e01b600052604160045260246000fd5b6040516060810167ffffffffffffffff8111828210171561430e5761430e6142d5565b60405290565b604051601f8201601f1916810167ffffffffffffffff8111828210171561433d5761433d6142d5565b604052919050565b60006020828403121561435757600080fd5b813567ffffffffffffffff81111561436e57600080fd5b8201601f8101841361437f57600080fd5b803567ffffffffffffffff811115614399576143996142d5565b6143a860208260051b01614314565b808282526020820191506020606084028501019250868311156143ca57600080fd5b6020840193505b8284101561175a57606084880312156143e957600080fd5b6143f16142eb565b84356001600160801b038116811461440857600080fd5b81526020858101359082015261442060408601614095565b60408201528252606093909301926020909101906143d1565b60008060006060848603121561444e57600080fd5b61445784614095565b92506020840135915061446c604085016141e2565b90509250925092565b803560ff811681146140ac57600080fd5b60008060008060008060c0878903121561449f57600080fd5b6144a887614095565b955060208701359450604087013593506144c460608801614475565b9598949750929560808101359460a0909101359350915050565b600080600080600080600060e0888a0312156144f957600080fd5b61450288614095565b965061451060208901614095565b9550604088013594506060880135935061452c60808901614475565b9699959850939692959460a0840135945060c09093013592915050565b60008060006060848603121561455e57600080fd5b61456784614095565b95602085013595506040909401359392505050565b600080600080600080600060e0888a03121561459757600080fd5b6145a088614095565b9650614510602089016141e2565b60208082526019908201527f43414c4c45525f4e4f545f534c415348494e475f41444d494e00000000000000604082015260600190565b634e487b7160e01b600052601160045260246000fd5b81810381811115610df357610df36145e5565b600181811c9082168061462257607f821691505b60208210810361464257634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526017908201527f43414c4c45525f4e4f545f434c41494d5f48454c504552000000000000000000604082015260600190565b80820180821115610df357610df36145e5565b8082028115828204841417610df357610df36145e5565b6000826146c657634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b61190160f01b81526002810192909252602282015260420190565b602080825260119082015270494e56414c49445f5349474e415455524560781b604082015260600190565b600060018201614739576147396145e5565b5060010190565b60208082526012908201527124a72b20a624a22fa2ac2824a920aa24a7a760711b604082015260600190565b634e487b7160e01b600052602160045260246000fd5b6020808252601390820152721253959053125117d6915493d7d05353d55395606a1b604082015260600190565b6001600160d81b038281168282160390811115610df357610df36145e5565b600281106147ec57634e487b7160e01b600052602160045260246000fd5b9052565b60208101610df382846147ce565b60006020828403121561481057600080fd5b81518015158114610f6157600080fd5b82815260408101610f6160208301846147ce565b6001815b600184111561486f57808504811115614853576148536145e5565b600184161561486157908102905b60019390931c928002614838565b935093915050565b60008261488657506001610df3565b8161489357506000610df3565b81600181146148a957600281146148b3576148cf565b6001915050610df3565b60ff8411156148c4576148c46145e5565b50506001821b610df3565b5060208310610133831016604e8410600b84101617156148f2575081810a610df3565b6148ff6000198484614834565b8060001904821115614913576149136145e5565b029392505050565b6000610f618383614877565b600082516149398184602087016140db565b919091019291505056fea2646970667358221220f11c3a784e62382c2f497b068ab353948d5b71f45a233267301678035d95f2b764736f6c634300081b0033","opcodes":"PUSH2 0x160 PUSH1 0x40 MSTORE PUSH1 0x0 PUSH1 0x9 SSTORE CALLVALUE DUP1 ISZERO PUSH2 0x16 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH2 0x4D28 CODESIZE SUB DUP1 PUSH2 0x4D28 DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH2 0x35 SWAP2 PUSH2 0x11E JUMP JUMPDEST DUP6 DUP6 DUP6 DUP6 DUP6 DUP6 DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB DUP3 AND PUSH2 0x50 DUP2 TIMESTAMP PUSH2 0x1BD JUMP JUMPDEST PUSH1 0x80 MSTORE POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 DUP2 AND PUSH1 0xA0 MSTORE SWAP6 DUP7 AND PUSH1 0xC0 MSTORE POP POP SWAP2 DUP4 AND PUSH1 0xE0 MSTORE PUSH2 0x100 MSTORE AND PUSH2 0x120 MSTORE PUSH1 0x3 PUSH1 0x9 DUP2 SWAP1 SSTORE POP PUSH1 0x0 DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x313CE567 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 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0xC1 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 0xE5 SWAP2 SWAP1 PUSH2 0x1D6 JUMP JUMPDEST PUSH1 0xFF AND SWAP1 POP PUSH2 0xF5 DUP2 PUSH1 0xA PUSH2 0x2E7 JUMP JUMPDEST PUSH2 0x140 MSTORE POP PUSH2 0x2F3 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x11B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0xC0 DUP8 DUP10 SUB SLT ISZERO PUSH2 0x137 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP7 MLOAD PUSH2 0x142 DUP2 PUSH2 0x106 JUMP JUMPDEST PUSH1 0x20 DUP9 ADD MLOAD SWAP1 SWAP7 POP PUSH2 0x153 DUP2 PUSH2 0x106 JUMP JUMPDEST PUSH1 0x40 DUP9 ADD MLOAD PUSH1 0x60 DUP10 ADD MLOAD SWAP2 SWAP7 POP SWAP5 POP PUSH2 0x16B DUP2 PUSH2 0x106 JUMP JUMPDEST PUSH1 0x80 DUP9 ADD MLOAD SWAP1 SWAP4 POP PUSH2 0x17C DUP2 PUSH2 0x106 JUMP JUMPDEST PUSH1 0xA0 DUP9 ADD MLOAD SWAP1 SWAP3 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x199 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP3 SWAP6 POP SWAP3 SWAP6 POP SWAP3 SWAP6 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST DUP1 DUP3 ADD DUP1 DUP3 GT ISZERO PUSH2 0x1D0 JUMPI PUSH2 0x1D0 PUSH2 0x1A7 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1E8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD PUSH1 0xFF DUP2 AND DUP2 EQ PUSH2 0x1F9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x1 DUP2 JUMPDEST PUSH1 0x1 DUP5 GT ISZERO PUSH2 0x23B JUMPI DUP1 DUP6 DIV DUP2 GT ISZERO PUSH2 0x21F JUMPI PUSH2 0x21F PUSH2 0x1A7 JUMP JUMPDEST PUSH1 0x1 DUP5 AND ISZERO PUSH2 0x22D JUMPI SWAP1 DUP2 MUL SWAP1 JUMPDEST PUSH1 0x1 SWAP4 SWAP1 SWAP4 SHR SWAP3 DUP1 MUL PUSH2 0x204 JUMP JUMPDEST SWAP4 POP SWAP4 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x252 JUMPI POP PUSH1 0x1 PUSH2 0x1D0 JUMP JUMPDEST DUP2 PUSH2 0x25F JUMPI POP PUSH1 0x0 PUSH2 0x1D0 JUMP JUMPDEST DUP2 PUSH1 0x1 DUP2 EQ PUSH2 0x275 JUMPI PUSH1 0x2 DUP2 EQ PUSH2 0x27F JUMPI PUSH2 0x29B JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP PUSH2 0x1D0 JUMP JUMPDEST PUSH1 0xFF DUP5 GT ISZERO PUSH2 0x290 JUMPI PUSH2 0x290 PUSH2 0x1A7 JUMP JUMPDEST POP POP PUSH1 0x1 DUP3 SHL PUSH2 0x1D0 JUMP JUMPDEST POP PUSH1 0x20 DUP4 LT PUSH2 0x133 DUP4 LT AND PUSH1 0x4E DUP5 LT PUSH1 0xB DUP5 LT AND OR ISZERO PUSH2 0x2BE JUMPI POP DUP2 DUP2 EXP PUSH2 0x1D0 JUMP JUMPDEST PUSH2 0x2CB PUSH1 0x0 NOT DUP5 DUP5 PUSH2 0x200 JUMP JUMPDEST DUP1 PUSH1 0x0 NOT DIV DUP3 GT ISZERO PUSH2 0x2DF JUMPI PUSH2 0x2DF PUSH2 0x1A7 JUMP JUMPDEST MUL SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1F9 DUP4 DUP4 PUSH2 0x243 JUMP JUMPDEST PUSH1 0x80 MLOAD PUSH1 0xA0 MLOAD PUSH1 0xC0 MLOAD PUSH1 0xE0 MLOAD PUSH2 0x100 MLOAD PUSH2 0x120 MLOAD PUSH2 0x140 MLOAD PUSH2 0x4979 PUSH2 0x3AF PUSH1 0x0 CODECOPY PUSH1 0x0 DUP2 DUP2 PUSH2 0x79E ADD MSTORE DUP2 DUP2 PUSH2 0xCD9 ADD MSTORE DUP2 DUP2 PUSH2 0xFF6 ADD MSTORE PUSH2 0x1067 ADD MSTORE PUSH1 0x0 DUP2 DUP2 PUSH2 0x8DD ADD MSTORE PUSH2 0x2514 ADD MSTORE PUSH1 0x0 DUP2 DUP2 PUSH2 0x644 ADD MSTORE PUSH2 0x21AF ADD MSTORE PUSH1 0x0 DUP2 DUP2 PUSH2 0x91F ADD MSTORE PUSH2 0x24F2 ADD MSTORE PUSH1 0x0 DUP2 DUP2 PUSH2 0x5CA ADD MSTORE DUP2 DUP2 PUSH2 0xD82 ADD MSTORE DUP2 DUP2 PUSH2 0x10F9 ADD MSTORE DUP2 DUP2 PUSH2 0x23D1 ADD MSTORE PUSH2 0x2DCA ADD MSTORE PUSH1 0x0 DUP2 DUP2 PUSH2 0xA89 ADD MSTORE PUSH2 0x166D ADD MSTORE PUSH1 0x0 DUP2 DUP2 PUSH2 0x8B6 ADD MSTORE DUP2 DUP2 PUSH2 0x37E1 ADD MSTORE DUP2 DUP2 PUSH2 0x381D ADD MSTORE PUSH2 0x384A ADD MSTORE PUSH2 0x4979 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 0x449 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x8C9A281D GT PUSH2 0x241 JUMPI DUP1 PUSH4 0xB2A5DBFA GT PUSH2 0x13B JUMPI DUP1 PUSH4 0xDC937E1C GT PUSH2 0xC3 JUMPI DUP1 PUSH4 0xF036BC68 GT PUSH2 0x87 JUMPI DUP1 PUSH4 0xF036BC68 EQ PUSH2 0xB17 JUMPI DUP1 PUSH4 0xF11B8188 EQ PUSH2 0xB2B JUMPI DUP1 PUSH4 0xF34D96DA EQ PUSH2 0xB8D JUMPI DUP1 PUSH4 0xF713D8A8 EQ PUSH2 0xB95 JUMPI DUP1 PUSH4 0xFDE9EB69 EQ PUSH2 0xBA8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0xDC937E1C EQ PUSH2 0xAC6 JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0xAD9 JUMPI DUP1 PUSH4 0xDDE43CBA EQ PUSH2 0xAEC JUMPI DUP1 PUSH4 0xE6AA216C EQ PUSH2 0xAF3 JUMPI DUP1 PUSH4 0xEAB52318 EQ PUSH2 0xB04 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0xC3863ADA GT PUSH2 0x10A JUMPI DUP1 PUSH4 0xC3863ADA EQ PUSH2 0xA5E JUMPI DUP1 PUSH4 0xC3CDA520 EQ PUSH2 0xA71 JUMPI DUP1 PUSH4 0xCBCBB507 EQ PUSH2 0xA84 JUMPI DUP1 PUSH4 0xD505ACCF EQ PUSH2 0xAAB JUMPI DUP1 PUSH4 0xDBC0ED8A EQ PUSH2 0xABE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0xB2A5DBFA EQ PUSH2 0xA05 JUMPI DUP1 PUSH4 0xB2F4201D EQ PUSH2 0xA18 JUMPI DUP1 PUSH4 0xB9844D8D EQ PUSH2 0xA2B JUMPI DUP1 PUSH4 0xC2FFBB91 EQ PUSH2 0xA4B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x9C9B5154 GT PUSH2 0x1C9 JUMPI DUP1 PUSH4 0xAA9FBE02 GT PUSH2 0x18D JUMPI DUP1 PUSH4 0xAA9FBE02 EQ PUSH2 0x9A8 JUMPI DUP1 PUSH4 0xAAF5EB68 EQ PUSH2 0x9CF JUMPI DUP1 PUSH4 0xAB406FE6 EQ PUSH2 0x9D7 JUMPI DUP1 PUSH4 0xADC9772E EQ PUSH2 0x9EA JUMPI DUP1 PUSH4 0xAFF05AA9 EQ PUSH2 0x9FD JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x9C9B5154 EQ PUSH2 0x954 JUMPI DUP1 PUSH4 0x9E3FFCE0 EQ PUSH2 0x967 JUMPI DUP1 PUSH4 0xA457C2D7 EQ PUSH2 0x96F JUMPI DUP1 PUSH4 0xA6B63EB8 EQ PUSH2 0x982 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x995 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x946776CD GT PUSH2 0x210 JUMPI DUP1 PUSH4 0x946776CD EQ PUSH2 0x8D8 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x8FF JUMPI DUP1 PUSH4 0x981B24D0 EQ PUSH2 0x907 JUMPI DUP1 PUSH4 0x99248EA7 EQ PUSH2 0x91A JUMPI DUP1 PUSH4 0x9A99B4F0 EQ PUSH2 0x941 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x8C9A281D EQ PUSH2 0x887 JUMPI DUP1 PUSH4 0x8DBEFEE2 EQ PUSH2 0x88F JUMPI DUP1 PUSH4 0x8E9B2CA4 EQ PUSH2 0x8A2 JUMPI DUP1 PUSH4 0x919CD40F EQ PUSH2 0x8B1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x41CBF54A GT PUSH2 0x352 JUMPI DUP1 PUSH4 0x6F50458D GT PUSH2 0x2DA JUMPI DUP1 PUSH4 0x78160376 GT PUSH2 0x29E JUMPI DUP1 PUSH4 0x78160376 EQ PUSH2 0x80C JUMPI DUP1 PUSH4 0x787A08A6 EQ PUSH2 0x82C JUMPI DUP1 PUSH4 0x7B5B1157 EQ PUSH2 0x834 JUMPI DUP1 PUSH4 0x7BB73C97 EQ PUSH2 0x847 JUMPI DUP1 PUSH4 0x7E90D7EF EQ PUSH2 0x867 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x6F50458D EQ PUSH2 0x7C0 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x7D3 JUMPI DUP1 PUSH4 0x727A5D57 EQ PUSH2 0x7E6 JUMPI DUP1 PUSH4 0x72B49D63 EQ PUSH2 0x791 JUMPI DUP1 PUSH4 0x74011F56 EQ PUSH2 0x7F9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x58146D17 GT PUSH2 0x321 JUMPI DUP1 PUSH4 0x58146D17 EQ PUSH2 0x6F8 JUMPI DUP1 PUSH4 0x5B3CC0CF EQ PUSH2 0x71F JUMPI DUP1 PUSH4 0x5C19A95C EQ PUSH2 0x77E JUMPI DUP1 PUSH4 0x616E0BF9 EQ PUSH2 0x791 JUMPI DUP1 PUSH4 0x6198E135 EQ PUSH2 0x799 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x41CBF54A EQ PUSH2 0x682 JUMPI DUP1 PUSH4 0x45755DD6 EQ PUSH2 0x6A9 JUMPI DUP1 PUSH4 0x4575E69B EQ PUSH2 0x6BC JUMPI DUP1 PUSH4 0x4CDAD506 EQ PUSH2 0x6E5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x23B872DD GT PUSH2 0x3D5 JUMPI DUP1 PUSH4 0x313CE567 GT PUSH2 0x3A4 JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x5EC JUMPI DUP1 PUSH4 0x3373EE4C EQ PUSH2 0x601 JUMPI DUP1 PUSH4 0x359C4A96 EQ PUSH2 0x63F JUMPI DUP1 PUSH4 0x3644E515 EQ PUSH2 0x666 JUMPI DUP1 PUSH4 0x39509351 EQ PUSH2 0x66F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x23B872DD EQ PUSH2 0x578 JUMPI DUP1 PUSH4 0x250201DB EQ PUSH2 0x58B JUMPI DUP1 PUSH4 0x30ADF81F EQ PUSH2 0x59E JUMPI DUP1 PUSH4 0x312F6B83 EQ PUSH2 0x5C5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x111FD88B GT PUSH2 0x41C JUMPI DUP1 PUSH4 0x111FD88B EQ PUSH2 0x50A JUMPI DUP1 PUSH4 0x112D037C EQ PUSH2 0x535 JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x54A JUMPI DUP1 PUSH4 0x1E9A6950 EQ PUSH2 0x552 JUMPI DUP1 PUSH4 0x20FB80B5 EQ PUSH2 0x565 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x2FB4D85 EQ PUSH2 0x44E JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x474 JUMPI DUP1 PUSH4 0x91030C3 EQ PUSH2 0x489 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x4E7 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x461 PUSH2 0x45C CALLDATASIZE PUSH1 0x4 PUSH2 0x40B1 JUMP JUMPDEST PUSH2 0xBBB JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x47C PUSH2 0xDF9 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x46B SWAP2 SWAP1 PUSH2 0x412B JUMP JUMPDEST PUSH2 0x4C2 PUSH2 0x497 CALLDATASIZE PUSH1 0x4 PUSH2 0x413E JUMP JUMPDEST PUSH1 0x3E PUSH1 0x20 MSTORE PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH5 0xFFFFFFFFFF DUP2 AND SWAP1 PUSH1 0x1 PUSH1 0x28 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0xD8 SHL SUB AND DUP3 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH5 0xFFFFFFFFFF SWAP1 SWAP4 AND DUP4 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xD8 SHL SUB SWAP1 SWAP2 AND PUSH1 0x20 DUP4 ADD MSTORE ADD PUSH2 0x46B JUMP JUMPDEST PUSH2 0x4FA PUSH2 0x4F5 CALLDATASIZE PUSH1 0x4 PUSH2 0x40B1 JUMP JUMPDEST PUSH2 0xE8B JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x46B JUMP JUMPDEST PUSH2 0x51D PUSH2 0x518 CALLDATASIZE PUSH1 0x4 PUSH2 0x4159 JUMP JUMPDEST PUSH2 0xEA3 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x46B JUMP JUMPDEST PUSH2 0x548 PUSH2 0x543 CALLDATASIZE PUSH1 0x4 PUSH2 0x4172 JUMP JUMPDEST PUSH2 0xEBE JUMP JUMPDEST STOP JUMPDEST PUSH1 0x2 SLOAD PUSH2 0x461 JUMP JUMPDEST PUSH2 0x548 PUSH2 0x560 CALLDATASIZE PUSH1 0x4 PUSH2 0x40B1 JUMP JUMPDEST PUSH2 0xF08 JUMP JUMPDEST PUSH2 0x461 PUSH2 0x573 CALLDATASIZE PUSH1 0x4 PUSH2 0x4172 JUMP JUMPDEST PUSH2 0xF17 JUMP JUMPDEST PUSH2 0x4FA PUSH2 0x586 CALLDATASIZE PUSH1 0x4 PUSH2 0x4172 JUMP JUMPDEST PUSH2 0xF68 JUMP JUMPDEST PUSH2 0x548 PUSH2 0x599 CALLDATASIZE PUSH1 0x4 PUSH2 0x413E JUMP JUMPDEST PUSH2 0xF8C JUMP JUMPDEST PUSH2 0x461 PUSH32 0x6E71EDAE12B1B97F4D1F60370FEF10105FA2FAAE0126114A169C64845D6126C9 DUP2 JUMP JUMPDEST PUSH2 0x51D PUSH32 0x0 DUP2 JUMP JUMPDEST PUSH1 0x12 JUMPDEST PUSH1 0x40 MLOAD PUSH1 0xFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x46B JUMP JUMPDEST PUSH2 0x461 PUSH2 0x60F CALLDATASIZE PUSH1 0x4 PUSH2 0x41AF JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3C PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 DUP7 AND DUP4 MSTORE PUSH1 0x2 SWAP1 SWAP4 ADD SWAP1 MSTORE KECCAK256 SLOAD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x461 PUSH32 0x0 DUP2 JUMP JUMPDEST PUSH2 0x461 PUSH1 0x43 SLOAD DUP2 JUMP JUMPDEST PUSH2 0x4FA PUSH2 0x67D CALLDATASIZE PUSH1 0x4 PUSH2 0x40B1 JUMP JUMPDEST PUSH2 0xFD2 JUMP JUMPDEST PUSH2 0x461 PUSH32 0x9A9A49B990BA9BB39F8048C490A40AB25C18F55D208D5FBCF958261A9B48716D DUP2 JUMP JUMPDEST PUSH2 0x548 PUSH2 0x6B7 CALLDATASIZE PUSH1 0x4 PUSH2 0x4159 JUMP JUMPDEST PUSH2 0xFF4 JUMP JUMPDEST PUSH2 0x51D PUSH2 0x6CA CALLDATASIZE PUSH1 0x4 PUSH2 0x4159 JUMP JUMPDEST PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x46 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH2 0x461 PUSH2 0x6F3 CALLDATASIZE PUSH1 0x4 PUSH2 0x4159 JUMP JUMPDEST PUSH2 0x1159 JUMP JUMPDEST PUSH2 0x707 PUSH8 0xDE0B6B3A7640000 DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD8 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x46B JUMP JUMPDEST PUSH2 0x75E PUSH2 0x72D CALLDATASIZE PUSH1 0x4 PUSH2 0x40B1 JUMP JUMPDEST PUSH1 0x6 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x0 SWAP3 DUP4 MSTORE PUSH1 0x40 DUP1 DUP5 KECCAK256 SWAP1 SWAP2 MSTORE SWAP1 DUP3 MSTORE SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB DUP1 DUP3 AND SWAP2 PUSH1 0x1 PUSH1 0x80 SHL SWAP1 DIV AND DUP3 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB SWAP4 DUP5 AND DUP2 MSTORE SWAP3 SWAP1 SWAP2 AND PUSH1 0x20 DUP4 ADD MSTORE ADD PUSH2 0x46B JUMP JUMPDEST PUSH2 0x548 PUSH2 0x78C CALLDATASIZE PUSH1 0x4 PUSH2 0x413E JUMP JUMPDEST PUSH2 0x1184 JUMP JUMPDEST PUSH1 0x4F SLOAD PUSH2 0x461 JUMP JUMPDEST PUSH2 0x461 PUSH32 0x0 DUP2 JUMP JUMPDEST PUSH2 0x51D PUSH2 0x7CE CALLDATASIZE PUSH1 0x4 PUSH2 0x41F1 JUMP JUMPDEST PUSH2 0x119C JUMP JUMPDEST PUSH2 0x461 PUSH2 0x7E1 CALLDATASIZE PUSH1 0x4 PUSH2 0x413E JUMP JUMPDEST PUSH2 0x11BE JUMP JUMPDEST PUSH2 0x461 PUSH2 0x7F4 CALLDATASIZE PUSH1 0x4 PUSH2 0x4159 JUMP JUMPDEST PUSH2 0x11D9 JUMP JUMPDEST PUSH2 0x548 PUSH2 0x807 CALLDATASIZE PUSH1 0x4 PUSH2 0x4159 JUMP JUMPDEST PUSH2 0x11FC JUMP JUMPDEST PUSH2 0x47C 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 DUP2 JUMP JUMPDEST PUSH2 0x548 PUSH2 0x123F JUMP JUMPDEST PUSH2 0x548 PUSH2 0x842 CALLDATASIZE PUSH1 0x4 PUSH2 0x4159 JUMP JUMPDEST PUSH2 0x124A JUMP JUMPDEST PUSH2 0x461 PUSH2 0x855 CALLDATASIZE PUSH1 0x4 PUSH2 0x413E JUMP JUMPDEST PUSH1 0x7 PUSH1 0x20 MSTORE PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 JUMP JUMPDEST PUSH2 0x461 PUSH2 0x875 CALLDATASIZE PUSH1 0x4 PUSH2 0x413E JUMP JUMPDEST PUSH1 0x3D PUSH1 0x20 MSTORE PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 JUMP JUMPDEST PUSH2 0x461 PUSH1 0x0 DUP2 JUMP JUMPDEST PUSH2 0x461 PUSH2 0x89D CALLDATASIZE PUSH1 0x4 PUSH2 0x413E JUMP JUMPDEST PUSH2 0x12BD JUMP JUMPDEST PUSH2 0x461 PUSH8 0xDE0B6B3A7640000 DUP2 JUMP JUMPDEST PUSH2 0x461 PUSH32 0x0 DUP2 JUMP JUMPDEST PUSH2 0x51D PUSH32 0x0 DUP2 JUMP JUMPDEST PUSH2 0x47C PUSH2 0x1398 JUMP JUMPDEST PUSH2 0x461 PUSH2 0x915 CALLDATASIZE PUSH1 0x4 PUSH2 0x4159 JUMP JUMPDEST PUSH2 0x13A7 JUMP JUMPDEST PUSH2 0x51D PUSH32 0x0 DUP2 JUMP JUMPDEST PUSH2 0x548 PUSH2 0x94F CALLDATASIZE PUSH1 0x4 PUSH2 0x40B1 JUMP JUMPDEST PUSH2 0x13B2 JUMP JUMPDEST PUSH2 0x548 PUSH2 0x962 CALLDATASIZE PUSH1 0x4 PUSH2 0x421B JUMP JUMPDEST PUSH2 0x13BD JUMP JUMPDEST PUSH2 0x461 PUSH1 0x1 DUP2 JUMP JUMPDEST PUSH2 0x4FA PUSH2 0x97D CALLDATASIZE PUSH1 0x4 PUSH2 0x40B1 JUMP JUMPDEST PUSH2 0x1414 JUMP JUMPDEST PUSH2 0x548 PUSH2 0x990 CALLDATASIZE PUSH1 0x4 PUSH2 0x425D JUMP JUMPDEST PUSH2 0x148F JUMP JUMPDEST PUSH2 0x4FA PUSH2 0x9A3 CALLDATASIZE PUSH1 0x4 PUSH2 0x40B1 JUMP JUMPDEST PUSH2 0x1514 JUMP JUMPDEST PUSH2 0x461 PUSH32 0x10D8D059343739EFCE7DAD10D09F0806DA52B252B3E6A7951920D2D6EC4102E5 DUP2 JUMP JUMPDEST PUSH2 0x5EF PUSH1 0x12 DUP2 JUMP JUMPDEST PUSH2 0x548 PUSH2 0x9E5 CALLDATASIZE PUSH1 0x4 PUSH2 0x42B2 JUMP JUMPDEST PUSH2 0x1522 JUMP JUMPDEST PUSH2 0x548 PUSH2 0x9F8 CALLDATASIZE PUSH1 0x4 PUSH2 0x40B1 JUMP JUMPDEST PUSH2 0x15E5 JUMP JUMPDEST PUSH2 0x548 PUSH2 0x15F0 JUMP JUMPDEST PUSH2 0x548 PUSH2 0xA13 CALLDATASIZE PUSH1 0x4 PUSH2 0x4345 JUMP JUMPDEST PUSH2 0x1662 JUMP JUMPDEST PUSH2 0x461 PUSH2 0xA26 CALLDATASIZE PUSH1 0x4 PUSH2 0x41F1 JUMP JUMPDEST PUSH2 0x1713 JUMP JUMPDEST PUSH2 0x461 PUSH2 0xA39 CALLDATASIZE PUSH1 0x4 PUSH2 0x413E JUMP JUMPDEST PUSH1 0x44 PUSH1 0x20 MSTORE PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 JUMP JUMPDEST PUSH2 0x461 PUSH2 0xA59 CALLDATASIZE PUSH1 0x4 PUSH2 0x4439 JUMP JUMPDEST PUSH2 0x173B JUMP JUMPDEST PUSH1 0x8 SLOAD PUSH2 0x51D SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 JUMP JUMPDEST PUSH2 0x548 PUSH2 0xA7F CALLDATASIZE PUSH1 0x4 PUSH2 0x4486 JUMP JUMPDEST PUSH2 0x1764 JUMP JUMPDEST PUSH2 0x51D PUSH32 0x0 DUP2 JUMP JUMPDEST PUSH2 0x548 PUSH2 0xAB9 CALLDATASIZE PUSH1 0x4 PUSH2 0x44DE JUMP JUMPDEST PUSH2 0x1929 JUMP JUMPDEST PUSH2 0x461 PUSH1 0x2 DUP2 JUMP JUMPDEST PUSH2 0x548 PUSH2 0xAD4 CALLDATASIZE PUSH1 0x4 PUSH2 0x41F1 JUMP JUMPDEST PUSH2 0x1AF1 JUMP JUMPDEST PUSH2 0x461 PUSH2 0xAE7 CALLDATASIZE PUSH1 0x4 PUSH2 0x41AF JUMP JUMPDEST PUSH2 0x1AFC JUMP JUMPDEST PUSH1 0x3 PUSH2 0x461 JUMP JUMPDEST PUSH1 0x51 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD8 SHL SUB AND PUSH2 0x707 JUMP JUMPDEST PUSH2 0x548 PUSH2 0xB12 CALLDATASIZE PUSH1 0x4 PUSH2 0x4549 JUMP JUMPDEST PUSH2 0x1B27 JUMP JUMPDEST PUSH1 0x51 SLOAD PUSH2 0x4FA SWAP1 PUSH1 0x1 PUSH1 0xD8 SHL SWAP1 DIV PUSH1 0xFF AND DUP2 JUMP JUMPDEST PUSH2 0xB67 PUSH2 0xB39 CALLDATASIZE PUSH1 0x4 PUSH2 0x413E JUMP JUMPDEST PUSH1 0x3C PUSH1 0x20 MSTORE PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x1 SWAP1 SWAP2 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB DUP1 DUP4 AND SWAP3 PUSH1 0x1 PUSH1 0x80 SHL SWAP1 DIV AND SWAP1 DUP4 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB SWAP5 DUP6 AND DUP2 MSTORE SWAP4 SWAP1 SWAP3 AND PUSH1 0x20 DUP5 ADD MSTORE SWAP1 DUP3 ADD MSTORE PUSH1 0x60 ADD PUSH2 0x46B JUMP JUMPDEST PUSH1 0x50 SLOAD PUSH2 0x461 JUMP JUMPDEST PUSH2 0x548 PUSH2 0xBA3 CALLDATASIZE PUSH1 0x4 PUSH2 0x457C JUMP JUMPDEST PUSH2 0x1B3E JUMP JUMPDEST PUSH2 0x548 PUSH2 0xBB6 CALLDATASIZE PUSH1 0x4 PUSH2 0x4159 JUMP JUMPDEST PUSH2 0x1D12 JUMP JUMPDEST PUSH1 0x0 PUSH2 0xBC7 PUSH1 0x0 PUSH2 0xEA3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xC00 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xBF7 SWAP1 PUSH2 0x45AE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x51 SLOAD PUSH1 0x1 PUSH1 0xD8 SHL SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0xC5A 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 0x50524556494F55535F534C415348494E475F4E4F545F534554544C4544000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xBF7 JUMP JUMPDEST PUSH1 0x0 DUP3 GT PUSH2 0xC98 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0xB PUSH1 0x24 DUP3 ADD MSTORE PUSH11 0x16915493D7D05353D55395 PUSH1 0xAA SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xBF7 JUMP JUMPDEST PUSH1 0x0 PUSH2 0xCA3 PUSH1 0x2 SLOAD SWAP1 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0xCB0 DUP3 PUSH2 0x1159 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0xCC9 PUSH1 0x50 SLOAD DUP4 PUSH2 0x1DE3 SWAP1 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST SWAP1 POP DUP1 DUP6 GT ISZERO PUSH2 0xCD7 JUMPI DUP1 SWAP5 POP JUMPDEST PUSH32 0x0 PUSH2 0xD02 DUP7 DUP5 PUSH2 0x45FB JUMP JUMPDEST LT ISZERO PUSH2 0xD47 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 PUSH20 0x52454D41494E494E475F4C545F4D494E494D554D PUSH1 0x60 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xBF7 JUMP JUMPDEST PUSH1 0x51 DUP1 SLOAD PUSH1 0xFF PUSH1 0xD8 SHL NOT AND PUSH1 0x1 PUSH1 0xD8 SHL OR SWAP1 SSTORE PUSH2 0xD75 PUSH2 0xD70 PUSH2 0xD6A DUP8 DUP6 PUSH2 0x45FB JUMP JUMPDEST DUP6 PUSH2 0x1E6F JUMP JUMPDEST PUSH2 0x1EAD JUMP JUMPDEST PUSH2 0xDA9 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND DUP8 DUP8 PUSH2 0x1F50 JUMP JUMPDEST DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x4ED05E9673C26D2ED44F7EF6A7F2942DF0EE3B5E1E17DB4B99F9DCD261A339CD DUP7 PUSH1 0x40 MLOAD PUSH2 0xDE4 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 DUP5 SWAP4 POP POP POP POP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0xE08 SWAP1 PUSH2 0x460E 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 0xE34 SWAP1 PUSH2 0x460E JUMP JUMPDEST DUP1 ISZERO PUSH2 0xE81 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0xE56 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0xE81 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 0xE64 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0xE99 DUP2 DUP6 DUP6 PUSH2 0x1FB3 JUMP JUMPDEST POP PUSH1 0x1 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x45 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH2 0xEC8 PUSH1 0x2 PUSH2 0xEA3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xEF8 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xBF7 SWAP1 PUSH2 0x4648 JUMP JUMPDEST PUSH2 0xF03 DUP4 DUP4 DUP4 PUSH2 0x20D7 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0xF13 CALLER DUP4 DUP4 PUSH2 0x20D7 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xF23 PUSH1 0x2 PUSH2 0xEA3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xF53 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xBF7 SWAP1 PUSH2 0x4648 JUMP JUMPDEST PUSH2 0xF5E DUP5 DUP5 DUP5 PUSH2 0x2458 JUMP JUMPDEST SWAP1 POP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0xF76 DUP6 DUP3 DUP6 PUSH2 0x2590 JUMP JUMPDEST PUSH2 0xF81 DUP6 DUP6 DUP6 PUSH2 0x2604 JUMP JUMPDEST POP PUSH1 0x1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH2 0xF96 PUSH1 0x2 PUSH2 0xEA3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xFC6 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xBF7 SWAP1 PUSH2 0x4648 JUMP JUMPDEST PUSH2 0xFCF DUP2 PUSH2 0x2735 JUMP JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0xE99 DUP2 DUP6 DUP6 PUSH2 0xFE5 DUP4 DUP4 PUSH2 0x1AFC JUMP JUMPDEST PUSH2 0xFEF SWAP2 SWAP1 PUSH2 0x467F JUMP JUMPDEST PUSH2 0x1FB3 JUMP JUMPDEST PUSH32 0x0 DUP2 LT ISZERO PUSH2 0x1058 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x11 PUSH1 0x24 DUP3 ADD MSTORE PUSH17 0x414D4F554E545F4C545F4D494E494D554D PUSH1 0x78 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xBF7 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1063 PUSH1 0x2 SLOAD SWAP1 JUMP JUMPDEST SWAP1 POP PUSH32 0x0 DUP2 LT ISZERO PUSH2 0x10C9 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x11 PUSH1 0x24 DUP3 ADD MSTORE PUSH17 0x5348415245535F4C545F4D494E494D554D PUSH1 0x78 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xBF7 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x10D4 DUP3 PUSH2 0x1159 JUMP JUMPDEST SWAP1 POP PUSH2 0x10EC PUSH2 0xD70 PUSH2 0x10E6 DUP6 DUP5 PUSH2 0x467F JUMP JUMPDEST DUP5 PUSH2 0x1E6F JUMP JUMPDEST PUSH2 0x1121 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND CALLER ADDRESS DUP7 PUSH2 0x2818 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP4 DUP2 MSTORE PUSH32 0x278E51D3323FBF18B9FB8DF3F8B97E31B145BC1146C52E764CF4AA1BFC4BA17D SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP POP POP JUMP JUMPDEST PUSH1 0x51 SLOAD PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xD8 SHL SUB AND PUSH2 0x117A DUP4 PUSH8 0xDE0B6B3A7640000 PUSH2 0x4692 JUMP JUMPDEST PUSH2 0xDF3 SWAP2 SWAP1 PUSH2 0x46A9 JUMP JUMPDEST PUSH2 0x1190 CALLER DUP3 PUSH1 0x0 PUSH2 0x2850 JUMP JUMPDEST PUSH2 0xFCF CALLER DUP3 PUSH1 0x1 PUSH2 0x2850 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x11A8 DUP4 PUSH2 0x2951 JUMP JUMPDEST SWAP3 POP POP POP PUSH2 0x11B6 DUP5 DUP3 PUSH2 0x2990 JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP 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 PUSH1 0x51 SLOAD PUSH1 0x0 SWAP1 PUSH8 0xDE0B6B3A7640000 SWAP1 PUSH2 0x117A SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xD8 SHL SUB AND DUP5 PUSH2 0x4692 JUMP JUMPDEST PUSH2 0x1206 PUSH1 0x0 PUSH2 0xEA3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x1236 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xBF7 SWAP1 PUSH2 0x45AE JUMP JUMPDEST PUSH2 0xFCF DUP2 PUSH2 0x29BB JUMP JUMPDEST PUSH2 0x1248 CALLER PUSH2 0x2735 JUMP JUMPDEST JUMP JUMPDEST PUSH2 0x1254 PUSH1 0x1 PUSH2 0xEA3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x12B4 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 0x43414C4C45525F4E4F545F434F4F4C444F574E5F41444D494E00000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xBF7 JUMP JUMPDEST PUSH2 0xFCF DUP2 PUSH2 0x2A41 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 DUP1 DUP3 MSTORE DUP2 DUP4 ADD SWAP1 SWAP3 MSTORE PUSH1 0x0 SWAP2 DUP3 SWAP2 SWAP1 DUP2 PUSH1 0x20 ADD JUMPDEST PUSH2 0x1304 PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP2 MSTORE POP SWAP1 JUMP JUMPDEST DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 SWAP1 SUB SWAP1 DUP2 PUSH2 0x12D7 JUMPI SWAP1 POP POP SWAP1 POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE DUP1 ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x133C DUP6 PUSH2 0x11BE JUMP JUMPDEST DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x134A PUSH1 0x2 SLOAD SWAP1 JUMP JUMPDEST DUP2 MSTORE POP DUP2 PUSH1 0x0 DUP2 MLOAD DUP2 LT PUSH2 0x1360 JUMPI PUSH2 0x1360 PUSH2 0x46CB JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 SWAP1 MSTORE POP PUSH2 0x1375 DUP4 DUP3 PUSH2 0x2A76 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3D PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH2 0xF61 SWAP2 SWAP1 PUSH2 0x467F JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0xE08 SWAP1 PUSH2 0x460E JUMP JUMPDEST PUSH1 0x0 PUSH2 0xDF3 PUSH1 0x2 SLOAD SWAP1 JUMP JUMPDEST PUSH2 0xF03 CALLER DUP4 DUP4 PUSH2 0x2458 JUMP JUMPDEST PUSH2 0x13C7 PUSH1 0x2 PUSH2 0xEA3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x13F7 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xBF7 SWAP1 PUSH2 0x4648 JUMP JUMPDEST PUSH2 0x1402 DUP5 DUP5 DUP5 PUSH2 0x2458 JUMP JUMPDEST POP PUSH2 0x140E DUP5 DUP5 DUP4 PUSH2 0x20D7 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 CALLER DUP2 PUSH2 0x1422 DUP3 DUP7 PUSH2 0x1AFC JUMP JUMPDEST SWAP1 POP DUP4 DUP2 LT ISZERO PUSH2 0x1482 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 PUSH5 0x207A65726F PUSH1 0xD8 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0xBF7 JUMP JUMPDEST PUSH2 0xF81 DUP3 DUP7 DUP7 DUP5 SUB PUSH2 0x1FB3 JUMP JUMPDEST PUSH1 0x9 SLOAD PUSH1 0x3 SWAP1 DUP2 GT PUSH2 0x14FA 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 0x436F6E747261637420696E7374616E63652068617320616C7265616479206265 PUSH1 0x44 DUP3 ADD MSTORE PUSH14 0x195B881A5B9A5D1A585B1A5E9959 PUSH1 0x92 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0xBF7 JUMP JUMPDEST PUSH1 0x9 DUP2 SWAP1 SSTORE PUSH2 0x150C DUP7 DUP7 DUP7 DUP7 DUP7 PUSH2 0x2B79 JUMP JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0xE99 DUP2 DUP6 DUP6 PUSH2 0x2604 JUMP JUMPDEST PUSH1 0x0 DUP3 DUP2 MSTORE PUSH1 0x45 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP3 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x1582 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 PUSH21 0x21A0A62622A92FA727AA2FA927A622AFA0A226A4A7 PUSH1 0x59 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xBF7 JUMP JUMPDEST PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x46 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE SWAP2 MLOAD DUP6 DUP2 MSTORE PUSH32 0xC3D1BF52795A20771EE6DE3E59948FD83E10DB956122D4709A3B86C512963855 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP JUMP JUMPDEST PUSH2 0xF13 CALLER DUP4 DUP4 PUSH2 0x2C9D JUMP JUMPDEST PUSH2 0x15FA PUSH1 0x0 PUSH2 0xEA3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x162A JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xBF7 SWAP1 PUSH2 0x45AE JUMP JUMPDEST PUSH1 0x51 DUP1 SLOAD PUSH1 0xFF PUSH1 0xD8 SHL NOT AND SWAP1 SSTORE PUSH1 0x40 MLOAD PUSH32 0xCDEE157E87BA915BE681D4FA3F3D511AFE7348ECA06448A3ACCD6AC227FA40AF SWAP1 PUSH1 0x0 SWAP1 LOG1 JUMP JUMPDEST CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ PUSH2 0x16D2 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 PUSH21 0x27A7262CAFA2A6A4A9A9A4A7A72FA6A0A720A3A2A9 PUSH1 0x59 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xBF7 JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP2 MLOAD DUP2 LT ISZERO PUSH2 0x1709 JUMPI PUSH1 0x2 SLOAD DUP3 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x16F3 JUMPI PUSH2 0x16F3 PUSH2 0x46CB JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD DUP2 ADD MLOAD ADD MSTORE PUSH1 0x1 ADD PUSH2 0x16D5 JUMP JUMPDEST POP PUSH2 0xFCF DUP2 PUSH2 0x2E4A JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH2 0x1721 DUP5 PUSH2 0x2951 JUMP JUMPDEST POP SWAP2 POP SWAP2 POP PUSH2 0x1732 DUP3 DUP3 DUP8 NUMBER PUSH2 0x2FAE JUMP JUMPDEST SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH2 0x1749 DUP5 PUSH2 0x2951 JUMP JUMPDEST POP SWAP2 POP SWAP2 POP PUSH2 0x175A DUP3 DUP3 DUP9 DUP9 PUSH2 0x2FAE JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH32 0x9A9A49B990BA9BB39F8048C490A40AB25C18F55D208D5FBCF958261A9B48716D PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP9 AND SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x60 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0x80 DUP2 ADD DUP6 SWAP1 MSTORE PUSH1 0x0 SWAP1 PUSH1 0xA0 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 PUSH1 0x43 SLOAD DUP3 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x17E2 SWAP3 SWAP2 SWAP1 PUSH2 0x46E1 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F NOT DUP2 DUP5 SUB ADD DUP2 MSTORE DUP3 DUP3 MSTORE DUP1 MLOAD PUSH1 0x20 SWAP2 DUP3 ADD KECCAK256 PUSH1 0x0 DUP1 DUP6 MSTORE SWAP2 DUP5 ADD DUP1 DUP5 MSTORE DUP2 SWAP1 MSTORE PUSH1 0xFF DUP10 AND SWAP3 DUP5 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x60 DUP4 ADD DUP8 SWAP1 MSTORE PUSH1 0x80 DUP4 ADD DUP7 SWAP1 MSTORE SWAP1 SWAP3 POP SWAP1 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 0x184D 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 0x1880 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xBF7 SWAP1 PUSH2 0x46FC JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x44 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD SWAP2 PUSH2 0x18A4 DUP4 PUSH2 0x4727 JUMP JUMPDEST SWAP2 SWAP1 POP SSTORE DUP9 EQ PUSH2 0x18E6 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0xD PUSH1 0x24 DUP3 ADD MSTORE PUSH13 0x494E56414C49445F4E4F4E4345 PUSH1 0x98 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xBF7 JUMP JUMPDEST DUP7 TIMESTAMP GT ISZERO PUSH2 0x1906 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xBF7 SWAP1 PUSH2 0x4740 JUMP JUMPDEST PUSH2 0x1912 DUP2 DUP11 PUSH1 0x0 PUSH2 0x2850 JUMP JUMPDEST PUSH2 0x191E DUP2 DUP11 PUSH1 0x1 PUSH2 0x2850 JUMP JUMPDEST POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND PUSH2 0x196F JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0xD PUSH1 0x24 DUP3 ADD MSTORE PUSH13 0x24A72B20A624A22FA7ABA722A9 PUSH1 0x99 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xBF7 JUMP JUMPDEST DUP4 TIMESTAMP GT ISZERO PUSH2 0x198F JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xBF7 SWAP1 PUSH2 0x4740 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 DUP2 AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x44 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SLOAD PUSH1 0x43 SLOAD DUP3 MLOAD PUSH32 0x6E71EDAE12B1B97F4D1F60370FEF10105FA2FAAE0126114A169C64845D6126C9 DUP2 DUP7 ADD MSTORE DUP1 DUP5 ADD SWAP7 SWAP1 SWAP7 MSTORE SWAP6 DUP13 AND PUSH1 0x60 DUP7 ADD MSTORE PUSH1 0x80 DUP6 ADD DUP12 SWAP1 MSTORE PUSH1 0xA0 DUP6 ADD DUP2 SWAP1 MSTORE PUSH1 0xC0 DUP1 DUP7 ADD DUP12 SWAP1 MSTORE DUP3 MLOAD DUP1 DUP8 SUB SWAP1 SWAP2 ADD DUP2 MSTORE PUSH1 0xE0 DUP7 ADD SWAP1 SWAP3 MSTORE DUP2 MLOAD SWAP2 SWAP1 SWAP3 ADD KECCAK256 SWAP1 SWAP4 SWAP2 SWAP3 PUSH2 0x1A26 SWAP3 SWAP2 SWAP1 PUSH2 0x100 ADD PUSH2 0x46E1 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F NOT DUP2 DUP5 SUB ADD DUP2 MSTORE DUP3 DUP3 MSTORE DUP1 MLOAD PUSH1 0x20 SWAP2 DUP3 ADD KECCAK256 PUSH1 0x0 DUP5 MSTORE SWAP1 DUP4 ADD DUP1 DUP4 MSTORE DUP2 SWAP1 MSTORE PUSH1 0xFF DUP9 AND SWAP2 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x60 DUP3 ADD DUP7 SWAP1 MSTORE PUSH1 0x80 DUP3 ADD DUP6 SWAP1 MSTORE SWAP2 POP 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 0x1A8E JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP PUSH1 0x20 PUSH1 0x40 MLOAD SUB MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP10 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x1AC8 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xBF7 SWAP1 PUSH2 0x46FC JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP10 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x44 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH1 0x1 DUP4 ADD SWAP1 SSTORE PUSH2 0x191E DUP10 DUP10 DUP10 PUSH2 0x1FB3 JUMP JUMPDEST PUSH2 0xF13 CALLER DUP4 DUP4 PUSH2 0x2850 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 0x1B32 CALLER DUP5 DUP5 PUSH2 0x2458 JUMP JUMPDEST POP PUSH2 0xF03 CALLER DUP5 DUP4 PUSH2 0x20D7 JUMP JUMPDEST PUSH1 0x0 PUSH32 0x10D8D059343739EFCE7DAD10D09F0806DA52B252B3E6A7951920D2D6EC4102E5 DUP9 DUP9 PUSH1 0x1 DUP2 GT ISZERO PUSH2 0x1B74 JUMPI PUSH2 0x1B74 PUSH2 0x476C JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x20 DUP2 ADD SWAP5 SWAP1 SWAP5 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP3 AND SWAP2 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 DUP2 ADD DUP8 SWAP1 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 PUSH1 0x43 SLOAD DUP3 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x1BD7 SWAP3 SWAP2 SWAP1 PUSH2 0x46E1 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F NOT DUP2 DUP5 SUB ADD DUP2 MSTORE DUP3 DUP3 MSTORE DUP1 MLOAD PUSH1 0x20 SWAP2 DUP3 ADD KECCAK256 PUSH1 0x0 DUP1 DUP6 MSTORE SWAP2 DUP5 ADD DUP1 DUP5 MSTORE DUP2 SWAP1 MSTORE PUSH1 0xFF DUP10 AND SWAP3 DUP5 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x60 DUP4 ADD DUP8 SWAP1 MSTORE PUSH1 0x80 DUP4 ADD DUP7 SWAP1 MSTORE SWAP1 SWAP3 POP SWAP1 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 0x1C42 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 0x1C75 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xBF7 SWAP1 PUSH2 0x46FC JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x44 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD SWAP2 PUSH2 0x1C99 DUP4 PUSH2 0x4727 JUMP JUMPDEST SWAP2 SWAP1 POP SSTORE DUP9 EQ PUSH2 0x1CDB JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0xD PUSH1 0x24 DUP3 ADD MSTORE PUSH13 0x494E56414C49445F4E4F4E4345 PUSH1 0x98 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xBF7 JUMP JUMPDEST DUP7 TIMESTAMP GT ISZERO PUSH2 0x1CFB JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xBF7 SWAP1 PUSH2 0x4740 JUMP JUMPDEST PUSH2 0x1D06 DUP2 DUP12 DUP12 PUSH2 0x2850 JUMP JUMPDEST POP POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x46 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x1D7A 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 0x43414C4C45525F4E4F545F50454E44494E475F524F4C455F41444D494E000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xBF7 JUMP JUMPDEST PUSH1 0x0 DUP3 DUP2 MSTORE PUSH1 0x45 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 DUP1 SLOAD CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT SWAP2 DUP3 AND DUP2 OR SWAP1 SWAP3 SSTORE PUSH1 0x46 DUP5 MSTORE SWAP4 DUP3 SWAP1 KECCAK256 DUP1 SLOAD SWAP1 SWAP5 AND SWAP1 SWAP4 SSTORE MLOAD DUP5 DUP2 MSTORE PUSH32 0x83A9DDAD961DCB7C6894C9585A16FF7792C2EC8281256A3CC7303AE830152DCF SWAP2 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 ISZERO DUP1 PUSH2 0x1DF0 JUMPI POP DUP2 ISZERO JUMPDEST ISZERO PUSH2 0x1DFD JUMPI POP PUSH1 0x0 PUSH2 0xDF3 JUMP JUMPDEST PUSH2 0x1E09 DUP3 PUSH1 0x0 NOT PUSH2 0x46A9 JUMP JUMPDEST DUP4 GT ISZERO PUSH2 0x1E58 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 0x4D4154485F4D554C5449504C49434154494F4E5F4F564552464C4F5700000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xBF7 JUMP JUMPDEST PUSH2 0x2710 PUSH2 0x1E65 DUP4 DUP6 PUSH2 0x4692 JUMP JUMPDEST PUSH2 0xF61 SWAP2 SWAP1 PUSH2 0x46A9 JUMP JUMPDEST PUSH1 0x0 PUSH2 0xF61 DUP4 PUSH1 0x1 DUP2 PUSH2 0x1E8A PUSH8 0xDE0B6B3A7640000 DUP8 PUSH2 0x4692 JUMP JUMPDEST PUSH2 0x1E94 SWAP2 SWAP1 PUSH2 0x467F JUMP JUMPDEST PUSH2 0x1E9E SWAP2 SWAP1 PUSH2 0x45FB JUMP JUMPDEST PUSH2 0x1EA8 SWAP2 SWAP1 PUSH2 0x46A9 JUMP JUMPDEST PUSH2 0x3088 JUMP JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xD8 SHL SUB AND PUSH1 0x0 SUB PUSH2 0x1EFB 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 PUSH18 0x5A45524F5F45584348414E47455F52415445 PUSH1 0x70 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xBF7 JUMP JUMPDEST PUSH1 0x51 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD8 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xD8 SHL SUB DUP4 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH32 0xA9C433F9734BAA3CF48B209454BB0ACE054E191F677BA50E74B696C0D35EF262 SWAP1 PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 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 0xF03 SWAP1 DUP5 SWAP1 PUSH4 0xA9059CBB PUSH1 0xE0 SHL 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 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT SWAP1 SWAP4 AND SWAP3 SWAP1 SWAP3 OR SWAP1 SWAP2 MSTORE PUSH2 0x30F5 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x2015 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 PUSH4 0x72657373 PUSH1 0xE0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0xBF7 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x2076 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 PUSH2 0x7373 PUSH1 0xF0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0xBF7 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 DUP1 PUSH1 0x0 SUB PUSH2 0x20F7 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xBF7 SWAP1 PUSH2 0x4782 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3E PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 DUP3 MLOAD DUP1 DUP5 ADD SWAP1 SWAP4 MSTORE SLOAD PUSH5 0xFFFFFFFFFF DUP2 AND DUP4 MSTORE PUSH1 0x1 PUSH1 0x28 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0xD8 SHL SUB AND SWAP1 DUP3 ADD MSTORE PUSH1 0x51 SLOAD PUSH1 0x1 PUSH1 0xD8 SHL SWAP1 DIV PUSH1 0xFF AND PUSH2 0x2237 JUMPI PUSH1 0x4F SLOAD DUP2 MLOAD PUSH2 0x2161 SWAP2 SWAP1 PUSH5 0xFFFFFFFFFF AND PUSH2 0x467F JUMP JUMPDEST TIMESTAMP LT ISZERO PUSH2 0x21A8 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 PUSH21 0x24A729AAA32324A1A4A2A72A2FA1A7A7A62227ABA7 PUSH1 0x59 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xBF7 JUMP JUMPDEST PUSH1 0x4F SLOAD DUP2 MLOAD PUSH32 0x0 SWAP2 PUSH2 0x21DF SWAP2 PUSH5 0xFFFFFFFFFF AND PUSH2 0x467F JUMP JUMPDEST PUSH2 0x21E9 SWAP1 TIMESTAMP PUSH2 0x45FB JUMP JUMPDEST GT ISZERO PUSH2 0x2237 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 0x554E5354414B455F57494E444F575F46494E4953484544000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xBF7 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2242 DUP6 PUSH2 0x11BE JUMP JUMPDEST PUSH1 0x51 SLOAD SWAP1 SWAP2 POP PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0xD8 SHL SWAP1 DIV PUSH1 0xFF AND PUSH2 0x226C JUMPI DUP3 PUSH1 0x20 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD8 SHL SUB AND PUSH2 0x226E JUMP JUMPDEST DUP2 JUMPDEST SWAP1 POP DUP1 PUSH1 0x0 SUB PUSH2 0x22C0 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 0x494E56414C49445F5A45524F5F4D41585F52454445454D41424C450000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xBF7 JUMP JUMPDEST PUSH1 0x0 DUP2 DUP6 GT PUSH2 0x22CF JUMPI DUP5 PUSH2 0x22D1 JUMP JUMPDEST DUP2 JUMPDEST SWAP1 POP PUSH2 0x22DF DUP8 DUP5 PUSH1 0x1 PUSH2 0x31C7 JUMP JUMPDEST POP PUSH1 0x0 PUSH2 0x22EB DUP3 PUSH2 0x1159 JUMP JUMPDEST SWAP1 POP PUSH2 0x22F7 DUP9 DUP4 PUSH2 0x3276 JUMP JUMPDEST DUP5 MLOAD PUSH5 0xFFFFFFFFFF AND ISZERO PUSH2 0x23C4 JUMPI DUP2 DUP6 PUSH1 0x20 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD8 SHL SUB AND PUSH2 0x231E SWAP2 SWAP1 PUSH2 0x45FB JUMP JUMPDEST PUSH1 0x0 SUB PUSH2 0x2343 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP9 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3E PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SSTORE PUSH2 0x23C4 JUMP JUMPDEST PUSH2 0x234C DUP3 PUSH2 0x33A8 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP10 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3E PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH2 0x2388 SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xB8 SHL SUB AND SWAP1 PUSH1 0x1 PUSH1 0x28 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0xD8 SHL SUB AND PUSH2 0x47AF JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP10 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3E PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD8 SHL SUB SWAP3 SWAP1 SWAP3 AND PUSH1 0x1 PUSH1 0x28 SHL MUL PUSH5 0xFFFFFFFFFF SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMPDEST PUSH2 0x23F8 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND DUP9 DUP4 PUSH2 0x1F50 JUMP JUMPDEST DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP9 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x3F693FFF038BB8A046AA76D9516190AC7444F7D69CF952C4CBDC086FDEF2D6FC DUP4 DUP6 PUSH1 0x40 MLOAD PUSH2 0x2446 SWAP3 SWAP2 SWAP1 SWAP2 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x0 SUB PUSH2 0x247A JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xBF7 SWAP1 PUSH2 0x4782 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2490 DUP6 PUSH2 0x2489 DUP8 PUSH2 0x11BE JUMP JUMPDEST PUSH1 0x0 PUSH2 0x31C7 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP2 DUP5 GT PUSH2 0x24A1 JUMPI DUP4 PUSH2 0x24A3 JUMP JUMPDEST DUP2 JUMPDEST SWAP1 POP DUP1 PUSH1 0x0 SUB PUSH2 0x24C5 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xBF7 SWAP1 PUSH2 0x4782 JUMP JUMPDEST PUSH2 0x24CF DUP2 DUP4 PUSH2 0x45FB JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP9 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3D PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SWAP2 SWAP1 SWAP2 SSTORE PUSH2 0x253A SWAP1 PUSH32 0x0 AND PUSH32 0x0 DUP8 DUP5 PUSH2 0x2818 JUMP JUMPDEST DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x9310CCFCB8DE723F578A9E4282EA9F521F05AE40DC08F3068DFAD528A65EE3C7 DUP4 PUSH1 0x40 MLOAD PUSH2 0x257F SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x259C DUP5 DUP5 PUSH2 0x1AFC JUMP JUMPDEST SWAP1 POP PUSH1 0x0 NOT DUP2 EQ PUSH2 0x140E JUMPI DUP2 DUP2 LT ISZERO PUSH2 0x25F7 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 0x45524332303A20696E73756666696369656E7420616C6C6F77616E6365000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xBF7 JUMP JUMPDEST PUSH2 0x140E DUP5 DUP5 DUP5 DUP5 SUB PUSH2 0x1FB3 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x260F DUP5 PUSH2 0x11BE JUMP JUMPDEST SWAP1 POP PUSH2 0x261D DUP5 DUP3 PUSH1 0x1 PUSH2 0x31C7 JUMP JUMPDEST POP DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x272A JUMPI PUSH1 0x0 PUSH2 0x2642 DUP5 PUSH2 0x11BE JUMP JUMPDEST SWAP1 POP PUSH2 0x2650 DUP5 DUP3 PUSH1 0x1 PUSH2 0x31C7 JUMP JUMPDEST POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3E PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 DUP3 MLOAD DUP1 DUP5 ADD SWAP1 SWAP4 MSTORE SLOAD PUSH5 0xFFFFFFFFFF DUP2 AND DUP1 DUP5 MSTORE PUSH1 0x1 PUSH1 0x28 SHL SWAP1 SWAP2 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0xD8 SHL SUB AND SWAP2 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE ISZERO PUSH2 0x2727 JUMPI DUP4 DUP4 SUB PUSH2 0x26C3 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3E PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SSTORE PUSH2 0x2727 JUMP JUMPDEST PUSH1 0x20 DUP2 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD8 SHL SUB AND PUSH2 0x26DB DUP6 DUP6 PUSH2 0x45FB JUMP JUMPDEST LT ISZERO PUSH2 0x2727 JUMPI PUSH2 0x26EB DUP5 DUP5 PUSH2 0x45FB JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3E PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD8 SHL SUB SWAP3 SWAP1 SWAP3 AND PUSH1 0x1 PUSH1 0x28 SHL MUL PUSH5 0xFFFFFFFFFF SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMPDEST POP POP JUMPDEST PUSH2 0x140E DUP5 DUP5 DUP5 PUSH2 0x3411 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2740 DUP3 PUSH2 0x11BE JUMP JUMPDEST SWAP1 POP DUP1 PUSH1 0x0 SUB PUSH2 0x2792 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 0x494E56414C49445F42414C414E43455F4F4E5F434F4F4C444F574E0000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xBF7 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD DUP3 MSTORE PUSH5 0xFFFFFFFFFF TIMESTAMP DUP2 AND DUP3 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xD8 SHL SUB DUP1 DUP6 AND PUSH1 0x20 DUP1 DUP6 ADD SWAP2 DUP3 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP9 AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x3E SWAP1 SWAP3 MSTORE SWAP1 DUP7 SWAP1 KECCAK256 SWAP5 MLOAD SWAP2 MLOAD SWAP1 SWAP3 AND PUSH1 0x1 PUSH1 0x28 SHL MUL SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SWAP2 SSTORE SWAP1 MLOAD PUSH32 0x8A05F911D8AB7FC50FEC37EF4BA7F9BFCB1A3C191C81DCD824AD0946C4E20D65 SWAP1 PUSH2 0x1DD7 SWAP1 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 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 0x140E SWAP1 DUP6 SWAP1 PUSH4 0x23B872DD PUSH1 0xE0 SHL SWAP1 PUSH1 0x84 ADD PUSH2 0x1F7C JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x289A JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x11 PUSH1 0x24 DUP3 ADD MSTORE PUSH17 0x494E56414C49445F44454C454741544545 PUSH1 0x78 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xBF7 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x28A5 DUP3 PUSH2 0x2951 JUMP JUMPDEST SWAP3 POP POP POP PUSH1 0x0 PUSH2 0x28B4 DUP6 PUSH2 0x11BE JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x28C2 DUP7 DUP5 PUSH2 0x2990 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP7 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND SWAP2 DUP9 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE SWAP1 POP PUSH2 0x28FE DUP2 DUP7 DUP5 DUP8 PUSH2 0x35B5 JUMP JUMPDEST DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xE8D51C8E11BD570DB1734C8EC775785330E77007FEED45C43B608EF33FF914BD DUP7 PUSH1 0x40 MLOAD PUSH2 0x2941 SWAP2 SWAP1 PUSH2 0x47F0 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP1 DUP1 DUP5 PUSH1 0x1 DUP2 GT ISZERO PUSH2 0x2968 JUMPI PUSH2 0x2968 PUSH2 0x476C JUMP JUMPDEST SUB PUSH2 0x297D JUMPI POP PUSH1 0x6 SWAP2 POP PUSH1 0x7 SWAP1 POP PUSH1 0x3F PUSH2 0x2989 JUMP JUMPDEST POP PUSH1 0x40 SWAP2 POP PUSH1 0x41 SWAP1 POP PUSH1 0x42 JUMPDEST SWAP2 SWAP4 SWAP1 SWAP3 POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP4 SWAP1 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD SWAP1 SWAP2 AND DUP1 PUSH2 0xF61 JUMPI DUP4 SWAP2 POP POP PUSH2 0xDF3 JUMP JUMPDEST PUSH2 0x2710 DUP2 LT PUSH2 0x2A0C 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 0x494E56414C49445F534C415348494E475F50455243454E544147450000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xBF7 JUMP JUMPDEST PUSH1 0x50 DUP2 SWAP1 SSTORE PUSH1 0x40 MLOAD DUP2 DUP2 MSTORE PUSH32 0xB79C2D6C7F5C95EEC9DC05AFFC0ED002620A4EC6D72B7B0744CC8638168C600A SWAP1 PUSH1 0x20 ADD PUSH2 0x1F45 JUMP JUMPDEST PUSH1 0x4F DUP2 SWAP1 SSTORE PUSH1 0x40 MLOAD DUP2 DUP2 MSTORE PUSH32 0xBBF67247B5C97564E30FFC0A355E71C006836DE7B9149E09E3D5D6054CB03355 SWAP1 PUSH1 0x20 ADD PUSH2 0x1F45 JUMP JUMPDEST PUSH1 0x0 DUP1 DUP1 JUMPDEST DUP4 MLOAD DUP2 LT ISZERO PUSH2 0x2B71 JUMPI PUSH1 0x0 PUSH1 0x3C PUSH1 0x0 DUP7 DUP5 DUP2 MLOAD DUP2 LT PUSH2 0x2A9C JUMPI PUSH2 0x2A9C PUSH2 0x46CB JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD DUP2 ADD MLOAD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP3 MSTORE DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x40 ADD PUSH1 0x0 SWAP1 DUP2 KECCAK256 PUSH1 0x1 DUP2 ADD SLOAD DUP2 SLOAD DUP9 MLOAD SWAP3 SWAP5 POP PUSH2 0x2B0A SWAP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB DUP1 DUP4 AND SWAP3 PUSH1 0x1 PUSH1 0x80 SHL SWAP1 DIV AND SWAP1 DUP11 SWAP1 DUP9 SWAP1 DUP2 LT PUSH2 0x2AF9 JUMPI PUSH2 0x2AF9 PUSH2 0x46CB JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x40 ADD MLOAD PUSH2 0x37B9 JUMP JUMPDEST SWAP1 POP PUSH2 0x2B5B DUP7 DUP5 DUP2 MLOAD DUP2 LT PUSH2 0x2B21 JUMPI PUSH2 0x2B21 PUSH2 0x46CB JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x20 ADD MLOAD DUP3 DUP5 PUSH1 0x2 ADD PUSH1 0x0 DUP12 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD PUSH2 0x38C4 JUMP JUMPDEST PUSH2 0x2B65 SWAP1 DUP6 PUSH2 0x467F JUMP JUMPDEST SWAP4 POP POP POP PUSH1 0x1 ADD PUSH2 0x2A7B JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x3 DUP1 DUP3 MSTORE PUSH1 0x80 DUP3 ADD SWAP1 SWAP3 MSTORE PUSH1 0x0 SWAP2 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 0x2B91 JUMPI SWAP1 POP POP SWAP1 POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE PUSH1 0x20 ADD DUP8 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 MSTORE POP DUP2 PUSH1 0x0 DUP2 MLOAD DUP2 LT PUSH2 0x2BEC JUMPI PUSH2 0x2BEC PUSH2 0x46CB JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 SWAP1 MSTORE POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x1 DUP2 MSTORE PUSH1 0x20 ADD DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 MSTORE POP DUP2 PUSH1 0x1 DUP2 MLOAD DUP2 LT PUSH2 0x2C29 JUMPI PUSH2 0x2C29 PUSH2 0x46CB JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 SWAP1 MSTORE POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x2 DUP2 MSTORE PUSH1 0x20 ADD DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 MSTORE POP DUP2 PUSH1 0x2 DUP2 MLOAD DUP2 LT PUSH2 0x2C66 JUMPI PUSH2 0x2C66 PUSH2 0x46CB JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 SWAP1 MSTORE POP PUSH2 0x2C7A DUP2 PUSH2 0x38F0 JUMP JUMPDEST PUSH2 0x2C83 DUP4 PUSH2 0x29BB JUMP JUMPDEST PUSH2 0x2C8C DUP3 PUSH2 0x2A41 JUMP JUMPDEST PUSH2 0x150C PUSH8 0xDE0B6B3A7640000 PUSH2 0x1EAD JUMP JUMPDEST PUSH1 0x51 SLOAD PUSH1 0x1 PUSH1 0xD8 SHL SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0x2CEA 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 PUSH16 0x534C415348494E475F4F4E474F494E47 PUSH1 0x80 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xBF7 JUMP JUMPDEST DUP1 PUSH1 0x0 SUB PUSH2 0x2D0A JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xBF7 SWAP1 PUSH2 0x4782 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2D15 DUP4 PUSH2 0x11BE JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x2D2D DUP5 ADDRESS DUP5 PUSH2 0x2D28 PUSH1 0x2 SLOAD SWAP1 JUMP JUMPDEST PUSH2 0x3AC2 JUMP JUMPDEST SWAP1 POP DUP1 ISZERO PUSH2 0x2DB0 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3D PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH2 0x2D59 SWAP1 DUP3 SWAP1 PUSH2 0x467F JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x3D PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 SWAP4 SWAP1 SWAP4 SSTORE DUP1 MLOAD SWAP2 DUP3 MSTORE SWAP2 DUP2 ADD DUP4 SWAP1 MSTORE PUSH32 0x2468F9268C60AD90E2D49EDB0032C8A001E733AE888B3AB8E982EDF535BE1A76 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMPDEST PUSH1 0x0 PUSH2 0x2DBB DUP5 PUSH2 0x11D9 JUMP JUMPDEST SWAP1 POP PUSH2 0x2DF2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND DUP8 ADDRESS DUP8 PUSH2 0x2818 JUMP JUMPDEST PUSH2 0x2DFC DUP6 DUP3 PUSH2 0x3B83 JUMP JUMPDEST DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x6C86F3FD5118B3AA8BB4F389A617046DE0A3D3D477DE1A1673D227F802F616DC DUP7 DUP5 PUSH1 0x40 MLOAD PUSH2 0x2941 SWAP3 SWAP2 SWAP1 SWAP2 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP2 MLOAD DUP2 LT ISZERO PUSH2 0xF13 JUMPI PUSH1 0x0 PUSH1 0x3C PUSH1 0x0 DUP5 DUP5 DUP2 MLOAD DUP2 LT PUSH2 0x2E6E JUMPI PUSH2 0x2E6E PUSH2 0x46CB JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x40 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SWAP1 POP PUSH2 0x2EE1 DUP4 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x2EB1 JUMPI PUSH2 0x2EB1 PUSH2 0x46CB JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x40 ADD MLOAD DUP3 DUP6 DUP6 DUP2 MLOAD DUP2 LT PUSH2 0x2ED0 JUMPI PUSH2 0x2ED0 PUSH2 0x46CB JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x20 ADD MLOAD PUSH2 0x3C42 JUMP JUMPDEST POP DUP3 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x2EF4 JUMPI PUSH2 0x2EF4 PUSH2 0x46CB JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD MLOAD MLOAD DUP2 SLOAD PUSH16 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB SWAP1 SWAP2 AND OR DUP2 SSTORE DUP3 MLOAD DUP4 SWAP1 DUP4 SWAP1 DUP2 LT PUSH2 0x2F37 JUMPI PUSH2 0x2F37 PUSH2 0x46CB JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x40 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x87FA03892A0556CB6B8F97E6D533A150D4D55FCBF275FFF5FA003FA636BCC7FA DUP5 DUP5 DUP2 MLOAD DUP2 LT PUSH2 0x2F7F JUMPI PUSH2 0x2F7F PUSH2 0x46CB JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD DUP2 ADD MLOAD MLOAD PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP PUSH1 0x1 ADD PUSH2 0x2E4D JUMP JUMPDEST PUSH1 0x0 NUMBER DUP3 GT ISZERO PUSH2 0x2FF7 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 PUSH20 0x24A72B20A624A22FA12627A1A5AFA72AA6A122A9 PUSH1 0x61 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xBF7 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP6 SWAP1 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD SWAP1 DUP2 SWAP1 SUB PUSH2 0x3029 JUMPI PUSH2 0x3021 DUP5 PUSH2 0x11BE JUMP JUMPDEST SWAP2 POP POP PUSH2 0x11B6 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP8 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 DUP4 DUP1 MSTORE SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND DUP4 LT ISZERO PUSH2 0x3065 JUMPI PUSH1 0x0 SWAP2 POP POP PUSH2 0x11B6 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP8 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH2 0x175A SWAP1 DUP3 DUP6 PUSH2 0x3CFA JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xD8 SHL SUB DUP3 GT ISZERO PUSH2 0x30F1 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 PUSH7 0x31362062697473 PUSH1 0xC8 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0xBF7 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x314A 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 0x3E06 SWAP1 SWAP3 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST DUP1 MLOAD SWAP1 SWAP2 POP ISZERO PUSH2 0xF03 JUMPI DUP1 DUP1 PUSH1 0x20 ADD SWAP1 MLOAD DUP2 ADD SWAP1 PUSH2 0x3168 SWAP2 SWAP1 PUSH2 0x47FE JUMP JUMPDEST PUSH2 0xF03 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 PUSH10 0x1BDD081CDD58D8D95959 PUSH1 0xB2 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0xBF7 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x31D9 DUP6 ADDRESS DUP7 PUSH2 0x2D28 PUSH1 0x2 SLOAD SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3D PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD SWAP2 SWAP3 POP SWAP1 PUSH2 0x3201 SWAP1 DUP4 SWAP1 PUSH2 0x467F JUMP JUMPDEST SWAP1 POP DUP2 ISZERO PUSH2 0x1732 JUMPI DUP4 ISZERO PUSH2 0x322B JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3D PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP2 SWAP1 SSTORE JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP9 AND DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 SWAP1 MSTORE PUSH32 0x2468F9268C60AD90E2D49EDB0032C8A001E733AE888B3AB8E982EDF535BE1A76 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x32D6 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 PUSH1 0x73 PUSH1 0xF8 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0xBF7 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 0x334A 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 PUSH2 0x6365 PUSH1 0xF0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0xBF7 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 DUP7 DUP7 SUB SWAP1 SSTORE PUSH1 0x2 DUP1 SLOAD DUP8 SWAP1 SUB SWAP1 SSTORE MLOAD DUP6 DUP2 MSTORE SWAP2 SWAP3 SWAP2 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xB8 SHL SUB DUP3 GT ISZERO PUSH2 0x30F1 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 PUSH7 0x38342062697473 PUSH1 0xC8 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0xBF7 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x3475 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 PUSH5 0x6472657373 PUSH1 0xD8 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0xBF7 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x34D7 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 PUSH3 0x657373 PUSH1 0xE8 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0xBF7 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 0x354F 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 PUSH6 0x616C616E6365 PUSH1 0xD0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0xBF7 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 DUP2 AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 DUP8 DUP8 SUB SWAP1 SSTORE SWAP4 DUP8 AND DUP1 DUP4 MSTORE SWAP2 DUP5 SWAP1 KECCAK256 DUP1 SLOAD DUP8 ADD SWAP1 SSTORE SWAP3 MLOAD DUP6 DUP2 MSTORE SWAP1 SWAP3 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH2 0x140E JUMP JUMPDEST DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SUB ISZERO PUSH2 0x140E JUMPI PUSH1 0x0 DUP1 PUSH2 0x35DB DUP4 PUSH2 0x2951 JUMP JUMPDEST POP SWAP1 SWAP3 POP SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND ISZERO PUSH2 0x36CC JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP3 SWAP1 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD DUP1 ISZERO PUSH2 0x365B JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP9 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP6 SWAP1 MSTORE PUSH1 0x40 DUP2 KECCAK256 SWAP1 PUSH2 0x3633 PUSH1 0x1 DUP5 PUSH2 0x45FB JUMP JUMPDEST DUP2 MSTORE PUSH1 0x20 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x40 ADD PUSH1 0x0 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x80 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND SWAP2 POP PUSH2 0x3667 JUMP JUMPDEST PUSH2 0x3664 DUP9 PUSH2 0x11BE JUMP JUMPDEST SWAP2 POP JUMPDEST PUSH2 0x367D DUP5 DUP5 DUP11 DUP6 PUSH2 0x3678 DUP12 DUP3 PUSH2 0x45FB JUMP JUMPDEST PUSH2 0x3E15 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP9 AND PUSH32 0xA0A19463EE116110C9B282012D9B65CC5522DC38A9520340CBAF3142E550127F PUSH2 0x36B2 DUP9 DUP6 PUSH2 0x45FB JUMP JUMPDEST DUP8 PUSH1 0x40 MLOAD PUSH2 0x36C1 SWAP3 SWAP2 SWAP1 PUSH2 0x4820 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND ISZERO PUSH2 0x150C JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP3 SWAP1 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD DUP1 ISZERO PUSH2 0x3746 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP6 SWAP1 MSTORE PUSH1 0x40 DUP2 KECCAK256 SWAP1 PUSH2 0x371E PUSH1 0x1 DUP5 PUSH2 0x45FB JUMP JUMPDEST DUP2 MSTORE PUSH1 0x20 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x40 ADD PUSH1 0x0 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x80 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND SWAP2 POP PUSH2 0x3752 JUMP JUMPDEST PUSH2 0x374F DUP8 PUSH2 0x11BE JUMP JUMPDEST SWAP2 POP JUMPDEST PUSH2 0x3763 DUP5 DUP5 DUP10 DUP6 PUSH2 0x3678 DUP12 DUP3 PUSH2 0x467F JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND PUSH32 0xA0A19463EE116110C9B282012D9B65CC5522DC38A9520340CBAF3142E550127F PUSH2 0x3798 DUP9 DUP6 PUSH2 0x467F JUMP JUMPDEST DUP8 PUSH1 0x40 MLOAD PUSH2 0x37A7 SWAP3 SWAP2 SWAP1 PUSH2 0x4820 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP4 ISZERO DUP1 PUSH2 0x37C6 JUMPI POP DUP2 ISZERO JUMPDEST DUP1 PUSH2 0x37D9 JUMPI POP TIMESTAMP DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND EQ JUMPDEST DUP1 PUSH2 0x380D JUMPI POP PUSH32 0x0 DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND LT ISZERO JUMPDEST ISZERO PUSH2 0x3819 JUMPI POP DUP4 PUSH2 0x11B6 JUMP JUMPDEST PUSH1 0x0 PUSH32 0x0 TIMESTAMP GT PUSH2 0x3848 JUMPI TIMESTAMP PUSH2 0x386A JUMP JUMPDEST PUSH32 0x0 JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x3881 PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB DUP7 AND DUP4 PUSH2 0x45FB JUMP JUMPDEST SWAP1 POP DUP7 DUP5 PUSH2 0x3891 PUSH1 0x12 PUSH1 0xA PUSH2 0x491B JUMP JUMPDEST PUSH2 0x389B DUP5 DUP11 PUSH2 0x4692 JUMP JUMPDEST PUSH2 0x38A5 SWAP2 SWAP1 PUSH2 0x4692 JUMP JUMPDEST PUSH2 0x38AF SWAP2 SWAP1 PUSH2 0x46A9 JUMP JUMPDEST PUSH2 0x38B9 SWAP2 SWAP1 PUSH2 0x467F JUMP JUMPDEST SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x38D2 PUSH1 0x12 PUSH1 0xA PUSH2 0x491B JUMP JUMPDEST PUSH2 0x38DC DUP4 DUP6 PUSH2 0x45FB JUMP JUMPDEST PUSH2 0x38E6 SWAP1 DUP7 PUSH2 0x4692 JUMP JUMPDEST PUSH2 0xF5E SWAP2 SWAP1 PUSH2 0x46A9 JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP2 MLOAD DUP2 LT ISZERO PUSH2 0xF13 JUMPI PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x45 PUSH1 0x0 DUP5 DUP5 DUP2 MLOAD DUP2 LT PUSH2 0x391D JUMPI PUSH2 0x391D PUSH2 0x46CB JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD DUP2 ADD MLOAD MLOAD DUP3 MSTORE DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x40 ADD PUSH1 0x0 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ DUP1 ISZERO PUSH2 0x397F JUMPI POP PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP3 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x3967 JUMPI PUSH2 0x3967 PUSH2 0x46CB JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x20 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ ISZERO JUMPDEST PUSH2 0x39CB 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 0x41444D494E5F43414E4E4F545F42455F494E495449414C495A45440000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xBF7 JUMP JUMPDEST DUP2 DUP2 DUP2 MLOAD DUP2 LT PUSH2 0x39DD JUMPI PUSH2 0x39DD PUSH2 0x46CB JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x20 ADD MLOAD PUSH1 0x45 PUSH1 0x0 DUP5 DUP5 DUP2 MLOAD DUP2 LT PUSH2 0x39FF JUMPI PUSH2 0x39FF PUSH2 0x46CB JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x0 ADD MLOAD DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB MUL NOT AND SWAP1 DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND MUL OR SWAP1 SSTORE POP DUP2 DUP2 DUP2 MLOAD DUP2 LT PUSH2 0x3A4F JUMPI PUSH2 0x3A4F PUSH2 0x46CB JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x20 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x83A9DDAD961DCB7C6894C9585A16FF7792C2EC8281256A3CC7303AE830152DCF DUP4 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x3A97 JUMPI PUSH2 0x3A97 PUSH2 0x46CB JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x0 ADD MLOAD PUSH1 0x40 MLOAD PUSH2 0x3AB2 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 PUSH1 0x1 ADD PUSH2 0x38F3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP5 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3C PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 DUP9 AND DUP4 MSTORE PUSH1 0x2 DUP5 ADD SWAP1 SWAP2 MSTORE DUP2 KECCAK256 SLOAD SWAP1 SWAP2 SWAP1 DUP3 DUP1 PUSH2 0x3AFD DUP9 DUP6 DUP9 PUSH2 0x3C42 JUMP JUMPDEST SWAP1 POP DUP1 DUP4 EQ PUSH2 0x3B77 JUMPI DUP7 ISZERO PUSH2 0x3B1A JUMPI PUSH2 0x3B17 DUP8 DUP3 DUP6 PUSH2 0x38C4 JUMP JUMPDEST SWAP2 POP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP11 AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x2 DUP8 ADD PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 DUP2 SWAP1 KECCAK256 DUP5 SWAP1 SSTORE MLOAD SWAP2 DUP11 AND SWAP2 PUSH32 0xBB123B5C06D5408BBEA3C4FEF481578175CFB432E3B482C6186F02ED9086585B SWAP1 PUSH2 0x3B6E SWAP1 DUP6 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 JUMPDEST POP SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x3BD9 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 0xBF7 JUMP JUMPDEST DUP1 PUSH1 0x2 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x3BEB SWAP2 SWAP1 PUSH2 0x467F JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 DUP1 SLOAD DUP7 ADD SWAP1 SSTORE MLOAD DUP5 DUP2 MSTORE PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x1 DUP3 ADD SLOAD DUP3 SLOAD PUSH1 0x0 SWAP2 SWAP1 PUSH1 0x1 PUSH1 0x80 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND TIMESTAMP DUP2 SWAP1 SUB PUSH2 0x3C6D JUMPI POP SWAP1 POP PUSH2 0xF61 JUMP JUMPDEST DUP5 SLOAD PUSH1 0x0 SWAP1 PUSH2 0x3C88 SWAP1 DUP5 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND DUP5 DUP9 PUSH2 0x37B9 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 EQ PUSH2 0x3CD7 JUMPI PUSH1 0x1 DUP7 ADD DUP2 SWAP1 SSTORE PUSH1 0x40 MLOAD DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP9 AND SWAP1 PUSH32 0x5777CA300DFE5BEAD41006FBCE4389794DBC0ED8D6CCCEBFAF94630AA04184BC SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 JUMPDEST DUP6 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB TIMESTAMP DUP2 AND PUSH1 0x1 PUSH1 0x80 SHL MUL SWAP2 AND OR DUP7 SSTORE SWAP3 POP POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 NOT DUP3 ADD PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP5 SWAP1 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND DUP3 LT PUSH2 0x3D47 JUMPI POP PUSH1 0x0 NOT DUP3 ADD PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP5 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x80 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND PUSH2 0xF61 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x0 NOT DUP5 ADD JUMPDEST DUP2 DUP2 GT ISZERO PUSH2 0x3DDD JUMPI PUSH1 0x2 DUP3 DUP3 SUB DIV DUP2 SUB PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x20 DUP9 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 DUP3 MLOAD DUP1 DUP5 ADD SWAP1 SWAP4 MSTORE SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB DUP1 DUP3 AND DUP1 DUP6 MSTORE PUSH1 0x1 PUSH1 0x80 SHL SWAP1 SWAP3 DIV AND SWAP2 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE DUP7 SWAP1 SUB PUSH2 0x3DB5 JUMPI PUSH1 0x20 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND SWAP4 POP PUSH2 0xF61 SWAP3 POP POP POP JUMP JUMPDEST DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND DUP7 GT ISZERO PUSH2 0x3DCF JUMPI DUP2 SWAP4 POP PUSH2 0x3DD6 JUMP JUMPDEST PUSH1 0x1 DUP3 SUB SWAP3 POP JUMPDEST POP POP PUSH2 0x3D4F JUMP JUMPDEST POP PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 SWAP5 SWAP1 SWAP5 MSTORE POP POP PUSH1 0x40 SWAP1 SWAP2 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x80 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 PUSH2 0xF5E DUP5 DUP5 PUSH1 0x0 DUP6 PUSH2 0x3F2C JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP6 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SLOAD SWAP2 DUP9 SWAP1 MSTORE SWAP1 SWAP2 KECCAK256 NUMBER SWAP2 SWAP1 DUP2 ISZERO DUP1 ISZERO SWAP1 PUSH2 0x3E77 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB DUP4 AND DUP2 PUSH1 0x0 PUSH2 0x3E5B PUSH1 0x1 DUP7 PUSH2 0x45FB JUMP JUMPDEST DUP2 MSTORE PUSH1 0x20 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x40 ADD PUSH1 0x0 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND EQ JUMPDEST ISZERO PUSH2 0x3EBB JUMPI DUP4 DUP2 PUSH1 0x0 PUSH2 0x3E8B PUSH1 0x1 DUP7 PUSH2 0x45FB JUMP JUMPDEST DUP2 MSTORE PUSH1 0x20 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x40 ADD PUSH1 0x0 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB SWAP3 DUP4 AND PUSH1 0x1 PUSH1 0x80 SHL MUL SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE PUSH2 0x3F22 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD DUP3 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB DUP1 DUP7 AND DUP3 MSTORE DUP7 DUP2 AND PUSH1 0x20 DUP1 DUP5 ADD SWAP2 DUP3 MSTORE PUSH1 0x0 DUP8 DUP2 MSTORE SWAP1 DUP7 SWAP1 MSTORE SWAP4 SWAP1 SWAP4 KECCAK256 SWAP2 MLOAD SWAP3 MLOAD DUP2 AND PUSH1 0x1 PUSH1 0x80 SHL MUL SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE PUSH2 0x3F08 DUP3 PUSH1 0x1 PUSH2 0x467F JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP10 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SSTORE JUMPDEST POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP3 SELFBALANCE LT ISZERO PUSH2 0x3F8D 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 PUSH6 0x1C8818D85B1B PUSH1 0xD2 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0xBF7 JUMP JUMPDEST PUSH1 0x0 DUP1 DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP6 DUP8 PUSH1 0x40 MLOAD PUSH2 0x3FA9 SWAP2 SWAP1 PUSH2 0x4927 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 0x3FE6 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 0x3FEB JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP SWAP2 POP SWAP2 POP PUSH2 0x38B9 DUP8 DUP4 DUP4 DUP8 PUSH1 0x60 DUP4 ISZERO PUSH2 0x4066 JUMPI DUP3 MLOAD PUSH1 0x0 SUB PUSH2 0x405F JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND EXTCODESIZE PUSH2 0x405F 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 0xBF7 JUMP JUMPDEST POP DUP2 PUSH2 0x11B6 JUMP JUMPDEST PUSH2 0x11B6 DUP4 DUP4 DUP2 MLOAD ISZERO PUSH2 0x407B JUMPI DUP2 MLOAD DUP1 DUP4 PUSH1 0x20 ADD REVERT JUMPDEST DUP1 PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xBF7 SWAP2 SWAP1 PUSH2 0x412B JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x40AC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x40C4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x40CD DUP4 PUSH2 0x4095 JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x40F6 JUMPI DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH2 0x40DE JUMP JUMPDEST POP POP PUSH1 0x0 SWAP2 ADD MSTORE JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD DUP1 DUP5 MSTORE PUSH2 0x4117 DUP2 PUSH1 0x20 DUP7 ADD PUSH1 0x20 DUP7 ADD PUSH2 0x40DB JUMP JUMPDEST PUSH1 0x1F ADD PUSH1 0x1F NOT AND SWAP3 SWAP1 SWAP3 ADD PUSH1 0x20 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH1 0x0 PUSH2 0xF61 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x40FF JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4150 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xF61 DUP3 PUSH2 0x4095 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x416B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x4187 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x4190 DUP5 PUSH2 0x4095 JUMP JUMPDEST SWAP3 POP PUSH2 0x419E PUSH1 0x20 DUP6 ADD PUSH2 0x4095 JUMP JUMPDEST SWAP3 SWAP6 SWAP3 SWAP5 POP POP POP PUSH1 0x40 SWAP2 SWAP1 SWAP2 ADD CALLDATALOAD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x41C2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x41CB DUP4 PUSH2 0x4095 JUMP JUMPDEST SWAP2 POP PUSH2 0x41D9 PUSH1 0x20 DUP5 ADD PUSH2 0x4095 JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x2 DUP2 LT PUSH2 0x40AC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x4204 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x420D DUP4 PUSH2 0x4095 JUMP JUMPDEST SWAP2 POP PUSH2 0x41D9 PUSH1 0x20 DUP5 ADD PUSH2 0x41E2 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x4231 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x423A DUP6 PUSH2 0x4095 JUMP JUMPDEST SWAP4 POP PUSH2 0x4248 PUSH1 0x20 DUP7 ADD PUSH2 0x4095 JUMP JUMPDEST SWAP4 SWAP7 SWAP4 SWAP6 POP POP POP POP PUSH1 0x40 DUP3 ADD CALLDATALOAD SWAP2 PUSH1 0x60 ADD CALLDATALOAD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0xA0 DUP7 DUP9 SUB SLT ISZERO PUSH2 0x4275 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x427E DUP7 PUSH2 0x4095 JUMP JUMPDEST SWAP5 POP PUSH2 0x428C PUSH1 0x20 DUP8 ADD PUSH2 0x4095 JUMP JUMPDEST SWAP4 POP PUSH2 0x429A PUSH1 0x40 DUP8 ADD PUSH2 0x4095 JUMP JUMPDEST SWAP5 SWAP8 SWAP4 SWAP7 POP SWAP4 SWAP5 PUSH1 0x60 DUP2 ADD CALLDATALOAD SWAP5 POP PUSH1 0x80 ADD CALLDATALOAD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x42C5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD SWAP2 POP PUSH2 0x41D9 PUSH1 0x20 DUP5 ADD PUSH2 0x4095 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x60 DUP2 ADD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x430E JUMPI PUSH2 0x430E PUSH2 0x42D5 JUMP JUMPDEST PUSH1 0x40 MSTORE SWAP1 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 0x433D JUMPI PUSH2 0x433D PUSH2 0x42D5 JUMP JUMPDEST PUSH1 0x40 MSTORE SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4357 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x436E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 ADD PUSH1 0x1F DUP2 ADD DUP5 SGT PUSH2 0x437F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x4399 JUMPI PUSH2 0x4399 PUSH2 0x42D5 JUMP JUMPDEST PUSH2 0x43A8 PUSH1 0x20 DUP3 PUSH1 0x5 SHL ADD PUSH2 0x4314 JUMP JUMPDEST DUP1 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP2 POP PUSH1 0x20 PUSH1 0x60 DUP5 MUL DUP6 ADD ADD SWAP3 POP DUP7 DUP4 GT ISZERO PUSH2 0x43CA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x20 DUP5 ADD SWAP4 POP JUMPDEST DUP3 DUP5 LT ISZERO PUSH2 0x175A JUMPI PUSH1 0x60 DUP5 DUP9 SUB SLT ISZERO PUSH2 0x43E9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x43F1 PUSH2 0x42EB JUMP JUMPDEST DUP5 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x4408 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MSTORE PUSH1 0x20 DUP6 DUP2 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH2 0x4420 PUSH1 0x40 DUP7 ADD PUSH2 0x4095 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD MSTORE DUP3 MSTORE PUSH1 0x60 SWAP4 SWAP1 SWAP4 ADD SWAP3 PUSH1 0x20 SWAP1 SWAP2 ADD SWAP1 PUSH2 0x43D1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x444E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x4457 DUP5 PUSH2 0x4095 JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD SWAP2 POP PUSH2 0x446C PUSH1 0x40 DUP6 ADD PUSH2 0x41E2 JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0xFF DUP2 AND DUP2 EQ PUSH2 0x40AC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0xC0 DUP8 DUP10 SUB SLT ISZERO PUSH2 0x449F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x44A8 DUP8 PUSH2 0x4095 JUMP JUMPDEST SWAP6 POP PUSH1 0x20 DUP8 ADD CALLDATALOAD SWAP5 POP PUSH1 0x40 DUP8 ADD CALLDATALOAD SWAP4 POP PUSH2 0x44C4 PUSH1 0x60 DUP9 ADD PUSH2 0x4475 JUMP JUMPDEST SWAP6 SWAP9 SWAP5 SWAP8 POP SWAP3 SWAP6 PUSH1 0x80 DUP2 ADD CALLDATALOAD SWAP5 PUSH1 0xA0 SWAP1 SWAP2 ADD CALLDATALOAD SWAP4 POP SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0xE0 DUP9 DUP11 SUB SLT ISZERO PUSH2 0x44F9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x4502 DUP9 PUSH2 0x4095 JUMP JUMPDEST SWAP7 POP PUSH2 0x4510 PUSH1 0x20 DUP10 ADD PUSH2 0x4095 JUMP JUMPDEST SWAP6 POP PUSH1 0x40 DUP9 ADD CALLDATALOAD SWAP5 POP PUSH1 0x60 DUP9 ADD CALLDATALOAD SWAP4 POP PUSH2 0x452C PUSH1 0x80 DUP10 ADD PUSH2 0x4475 JUMP 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 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x455E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x4567 DUP5 PUSH2 0x4095 JUMP JUMPDEST SWAP6 PUSH1 0x20 DUP6 ADD CALLDATALOAD SWAP6 POP PUSH1 0x40 SWAP1 SWAP5 ADD CALLDATALOAD SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0xE0 DUP9 DUP11 SUB SLT ISZERO PUSH2 0x4597 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x45A0 DUP9 PUSH2 0x4095 JUMP JUMPDEST SWAP7 POP PUSH2 0x4510 PUSH1 0x20 DUP10 ADD PUSH2 0x41E2 JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE PUSH1 0x19 SWAP1 DUP3 ADD MSTORE PUSH32 0x43414C4C45525F4E4F545F534C415348494E475F41444D494E00000000000000 PUSH1 0x40 DUP3 ADD MSTORE PUSH1 0x60 ADD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST DUP2 DUP2 SUB DUP2 DUP2 GT ISZERO PUSH2 0xDF3 JUMPI PUSH2 0xDF3 PUSH2 0x45E5 JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0x4622 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x4642 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 0x20 DUP1 DUP3 MSTORE PUSH1 0x17 SWAP1 DUP3 ADD MSTORE PUSH32 0x43414C4C45525F4E4F545F434C41494D5F48454C504552000000000000000000 PUSH1 0x40 DUP3 ADD MSTORE PUSH1 0x60 ADD SWAP1 JUMP JUMPDEST DUP1 DUP3 ADD DUP1 DUP3 GT ISZERO PUSH2 0xDF3 JUMPI PUSH2 0xDF3 PUSH2 0x45E5 JUMP JUMPDEST DUP1 DUP3 MUL DUP2 ISZERO DUP3 DUP3 DIV DUP5 EQ OR PUSH2 0xDF3 JUMPI PUSH2 0xDF3 PUSH2 0x45E5 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x46C6 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 PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH2 0x1901 PUSH1 0xF0 SHL DUP2 MSTORE PUSH1 0x2 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x22 DUP3 ADD MSTORE PUSH1 0x42 ADD SWAP1 JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE PUSH1 0x11 SWAP1 DUP3 ADD MSTORE PUSH17 0x494E56414C49445F5349474E4154555245 PUSH1 0x78 SHL PUSH1 0x40 DUP3 ADD MSTORE PUSH1 0x60 ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 DUP3 ADD PUSH2 0x4739 JUMPI PUSH2 0x4739 PUSH2 0x45E5 JUMP JUMPDEST POP PUSH1 0x1 ADD SWAP1 JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE PUSH1 0x12 SWAP1 DUP3 ADD MSTORE PUSH18 0x24A72B20A624A22FA2AC2824A920AA24A7A7 PUSH1 0x71 SHL PUSH1 0x40 DUP3 ADD MSTORE PUSH1 0x60 ADD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE PUSH1 0x13 SWAP1 DUP3 ADD MSTORE PUSH19 0x1253959053125117D6915493D7D05353D55395 PUSH1 0x6A SHL PUSH1 0x40 DUP3 ADD MSTORE PUSH1 0x60 ADD SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xD8 SHL SUB DUP3 DUP2 AND DUP3 DUP3 AND SUB SWAP1 DUP2 GT ISZERO PUSH2 0xDF3 JUMPI PUSH2 0xDF3 PUSH2 0x45E5 JUMP JUMPDEST PUSH1 0x2 DUP2 LT PUSH2 0x47EC JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST SWAP1 MSTORE JUMP JUMPDEST PUSH1 0x20 DUP2 ADD PUSH2 0xDF3 DUP3 DUP5 PUSH2 0x47CE JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4810 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0xF61 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 DUP2 MSTORE PUSH1 0x40 DUP2 ADD PUSH2 0xF61 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x47CE JUMP JUMPDEST PUSH1 0x1 DUP2 JUMPDEST PUSH1 0x1 DUP5 GT ISZERO PUSH2 0x486F JUMPI DUP1 DUP6 DIV DUP2 GT ISZERO PUSH2 0x4853 JUMPI PUSH2 0x4853 PUSH2 0x45E5 JUMP JUMPDEST PUSH1 0x1 DUP5 AND ISZERO PUSH2 0x4861 JUMPI SWAP1 DUP2 MUL SWAP1 JUMPDEST PUSH1 0x1 SWAP4 SWAP1 SWAP4 SHR SWAP3 DUP1 MUL PUSH2 0x4838 JUMP JUMPDEST SWAP4 POP SWAP4 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x4886 JUMPI POP PUSH1 0x1 PUSH2 0xDF3 JUMP JUMPDEST DUP2 PUSH2 0x4893 JUMPI POP PUSH1 0x0 PUSH2 0xDF3 JUMP JUMPDEST DUP2 PUSH1 0x1 DUP2 EQ PUSH2 0x48A9 JUMPI PUSH1 0x2 DUP2 EQ PUSH2 0x48B3 JUMPI PUSH2 0x48CF JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP PUSH2 0xDF3 JUMP JUMPDEST PUSH1 0xFF DUP5 GT ISZERO PUSH2 0x48C4 JUMPI PUSH2 0x48C4 PUSH2 0x45E5 JUMP JUMPDEST POP POP PUSH1 0x1 DUP3 SHL PUSH2 0xDF3 JUMP JUMPDEST POP PUSH1 0x20 DUP4 LT PUSH2 0x133 DUP4 LT AND PUSH1 0x4E DUP5 LT PUSH1 0xB DUP5 LT AND OR ISZERO PUSH2 0x48F2 JUMPI POP DUP2 DUP2 EXP PUSH2 0xDF3 JUMP JUMPDEST PUSH2 0x48FF PUSH1 0x0 NOT DUP5 DUP5 PUSH2 0x4834 JUMP JUMPDEST DUP1 PUSH1 0x0 NOT DIV DUP3 GT ISZERO PUSH2 0x4913 JUMPI PUSH2 0x4913 PUSH2 0x45E5 JUMP JUMPDEST MUL SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xF61 DUP4 DUP4 PUSH2 0x4877 JUMP JUMPDEST PUSH1 0x0 DUP3 MLOAD PUSH2 0x4939 DUP2 DUP5 PUSH1 0x20 DUP8 ADD PUSH2 0x40DB JUMP JUMPDEST SWAP2 SWAP1 SWAP2 ADD SWAP3 SWAP2 POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 CALL SHR GASPRICE PUSH25 0x4E62382C2F497B068AB353948D5B71F45A233267301678035D SWAP6 CALLCODE 0xB7 PUSH5 0x736F6C6343 STOP ADDMOD SHL STOP CALLER ","sourceMap":"114302:15744:0:-:0;;;102569:1;102526:44;;116039:511;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;116244:11;116263;116282:13;116303:12;116323:15;116346:20;116323:15;-1:-1:-1;;;;;57634:175:0;;57726:38;57634:175;57726:15;:38;:::i;:::-;57707:57;;-1:-1:-1;;;;;;57770:34:0;;;;;105312:26;;::::2;;::::0;-1:-1:-1;;105344:26:0;;::::2;;::::0;105376:30:::2;::::0;105412:28:::2;;::::0;116725:1;116405:23:::1;:36;;;;116447:16;116489:11;-1:-1:-1::0;;;;;116466:45:0::1;;:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;116447:66;;::::0;-1:-1:-1;116533:12:0::1;116447:66:::0;116533:2:::1;:12;:::i;:::-;116519:26;::::0;-1:-1:-1;114302:15744:0;;-1:-1:-1;;;;;;114302:15744:0;14:139:1;-1:-1:-1;;;;;97:31:1;;87:42;;77:70;;143:1;140;133:12;77:70;14:139;:::o;158:950::-;299:6;307;315;323;331;339;392:3;380:9;371:7;367:23;363:33;360:53;;;409:1;406;399:12;360:53;441:9;435:16;460:39;493:5;460:39;:::i;:::-;568:2;553:18;;547:25;518:5;;-1:-1:-1;581:41:1;547:25;581:41;:::i;:::-;688:2;673:18;;667:25;737:2;722:18;;716:25;641:7;;-1:-1:-1;667:25:1;-1:-1:-1;750:41:1;716:25;750:41;:::i;:::-;862:3;847:19;;841:26;810:7;;-1:-1:-1;876:41:1;841:26;876:41;:::i;:::-;988:3;973:19;;967:26;936:7;;-1:-1:-1;;;;;;1024:33:1;;1012:46;;1002:74;;1072:1;1069;1062:12;1002:74;1095:7;1085:17;;;158:950;;;;;;;;:::o;1113:127::-;1174:10;1169:3;1165:20;1162:1;1155:31;1205:4;1202:1;1195:15;1229:4;1226:1;1219:15;1245:125;1310:9;;;1331:10;;;1328:36;;;1344:18;;:::i;:::-;1245:125;;;;:::o;1375:273::-;1443:6;1496:2;1484:9;1475:7;1471:23;1467:32;1464:52;;;1512:1;1509;1502:12;1464:52;1544:9;1538:16;1594:4;1587:5;1583:16;1576:5;1573:27;1563:55;;1614:1;1611;1604:12;1563:55;1637:5;1375:273;-1:-1:-1;;;1375:273:1:o;1653:375::-;1741:1;1759:5;1773:249;1794:1;1784:8;1781:15;1773:249;;;1844:4;1839:3;1835:14;1829:4;1826:24;1823:50;;;1853:18;;:::i;:::-;1903:1;1893:8;1889:16;1886:49;;;1917:16;;;;1886:49;2000:1;1996:16;;;;;1956:15;;1773:249;;;1653:375;;;;;;:::o;2033:902::-;2082:5;2112:8;2102:80;;-1:-1:-1;2153:1:1;2167:5;;2102:80;2201:4;2191:76;;-1:-1:-1;2238:1:1;2252:5;;2191:76;2283:4;2301:1;2296:59;;;;2369:1;2364:174;;;;2276:262;;2296:59;2326:1;2317:10;;2340:5;;;2364:174;2401:3;2391:8;2388:17;2385:43;;;2408:18;;:::i;:::-;-1:-1:-1;;2464:1:1;2450:16;;2523:5;;2276:262;;2622:2;2612:8;2609:16;2603:3;2597:4;2594:13;2590:36;2584:2;2574:8;2571:16;2566:2;2560:4;2557:12;2553:35;2550:77;2547:203;;;-1:-1:-1;2659:19:1;;;2735:5;;2547:203;2782:42;-1:-1:-1;;2807:8:1;2801:4;2782:42;:::i;:::-;2860:6;2856:1;2852:6;2848:19;2839:7;2836:32;2833:58;;;2871:18;;:::i;:::-;2909:20;;2033:902;-1:-1:-1;;;2033:902:1:o;2940:131::-;3000:5;3029:36;3056:8;3050:4;3029:36;:::i;2940:131::-;114302:15744:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"},"deployedBytecode":{"functionDebugData":{"@CLAIM_HELPER_ROLE_5448":{"entryPoint":null,"id":5448,"parameterSlots":0,"returnSlots":0},"@COOLDOWN_ADMIN_ROLE_5445":{"entryPoint":null,"id":5445,"parameterSlots":0,"returnSlots":0},"@COOLDOWN_SECONDS_6201":{"entryPoint":null,"id":6201,"parameterSlots":0,"returnSlots":1},"@DELEGATE_BY_TYPE_TYPEHASH_1179":{"entryPoint":null,"id":1179,"parameterSlots":0,"returnSlots":0},"@DELEGATE_TYPEHASH_1184":{"entryPoint":null,"id":1184,"parameterSlots":0,"returnSlots":0},"@DISTRIBUTION_END_2471":{"entryPoint":null,"id":2471,"parameterSlots":0,"returnSlots":0},"@DOMAIN_SEPARATOR_4699":{"entryPoint":null,"id":4699,"parameterSlots":0,"returnSlots":0},"@EIP712_REVISION_4705":{"entryPoint":null,"id":4705,"parameterSlots":0,"returnSlots":0},"@EMISSION_MANAGER_2473":{"entryPoint":null,"id":2473,"parameterSlots":0,"returnSlots":0},"@EXCHANGE_RATE_UNIT_5454":{"entryPoint":null,"id":5454,"parameterSlots":0,"returnSlots":0},"@INITIAL_EXCHANGE_RATE_5451":{"entryPoint":null,"id":5451,"parameterSlots":0,"returnSlots":0},"@LOWER_BOUND_5457":{"entryPoint":null,"id":5457,"parameterSlots":0,"returnSlots":0},"@PERMIT_TYPEHASH_4715":{"entryPoint":null,"id":4715,"parameterSlots":0,"returnSlots":0},"@PRECISION_2476":{"entryPoint":null,"id":2476,"parameterSlots":0,"returnSlots":0},"@REVISION_5572":{"entryPoint":null,"id":5572,"parameterSlots":0,"returnSlots":1},"@REWARDS_VAULT_4668":{"entryPoint":null,"id":4668,"parameterSlots":0,"returnSlots":0},"@REWARD_TOKEN_4662":{"entryPoint":null,"id":4662,"parameterSlots":0,"returnSlots":0},"@SLASH_ADMIN_ROLE_5442":{"entryPoint":null,"id":5442,"parameterSlots":0,"returnSlots":0},"@STAKED_TOKEN_4659":{"entryPoint":null,"id":4659,"parameterSlots":0,"returnSlots":0},"@UNSTAKE_WINDOW_4665":{"entryPoint":null,"id":4665,"parameterSlots":0,"returnSlots":0},"@_aaveGovernance_1905":{"entryPoint":null,"id":1905,"parameterSlots":0,"returnSlots":0},"@_afterTokenTransfer_1083":{"entryPoint":null,"id":1083,"parameterSlots":3,"returnSlots":0},"@_approve_1018":{"entryPoint":8115,"id":1018,"parameterSlots":3,"returnSlots":0},"@_beforeTokenTransfer_1072":{"entryPoint":null,"id":1072,"parameterSlots":3,"returnSlots":0},"@_binarySearch_1734":{"entryPoint":15610,"id":1734,"parameterSlots":3,"returnSlots":1},"@_burn_973":{"entryPoint":12918,"id":973,"parameterSlots":2,"returnSlots":0},"@_callOptionalReturn_2455":{"entryPoint":12533,"id":2455,"parameterSlots":2,"returnSlots":0},"@_claimRewards_6310":{"entryPoint":9304,"id":6310,"parameterSlots":3,"returnSlots":1},"@_configureAssets_2584":{"entryPoint":11850,"id":2584,"parameterSlots":1,"returnSlots":0},"@_cooldown_5822":{"entryPoint":10037,"id":5822,"parameterSlots":1,"returnSlots":0},"@_delegateByType_1407":{"entryPoint":10320,"id":1407,"parameterSlots":3,"returnSlots":0},"@_getAssetIndex_2953":{"entryPoint":14265,"id":2953,"parameterSlots":4,"returnSlots":1},"@_getDelegatee_1873":{"entryPoint":10640,"id":1873,"parameterSlots":2,"returnSlots":1},"@_getDelegationDataByType_5208":{"entryPoint":10577,"id":5208,"parameterSlots":1,"returnSlots":3},"@_getExchangeRate_6668":{"entryPoint":7791,"id":6668,"parameterSlots":2,"returnSlots":1},"@_getRewards_2883":{"entryPoint":14532,"id":2883,"parameterSlots":3,"returnSlots":1},"@_getUnclaimedRewards_2854":{"entryPoint":10870,"id":2854,"parameterSlots":2,"returnSlots":1},"@_initAdmins_5418":{"entryPoint":14576,"id":5418,"parameterSlots":1,"returnSlots":0},"@_initialize_5677":{"entryPoint":11129,"id":5677,"parameterSlots":5,"returnSlots":0},"@_mint_901":{"entryPoint":15235,"id":901,"parameterSlots":2,"returnSlots":0},"@_moveDelegatesByType_1572":{"entryPoint":13749,"id":1572,"parameterSlots":4,"returnSlots":0},"@_msgSender_501":{"entryPoint":null,"id":501,"parameterSlots":0,"returnSlots":1},"@_nonces_4720":{"entryPoint":null,"id":4720,"parameterSlots":0,"returnSlots":0},"@_redeem_6620":{"entryPoint":8407,"id":6620,"parameterSlots":3,"returnSlots":0},"@_revert_2234":{"entryPoint":null,"id":2234,"parameterSlots":2,"returnSlots":0},"@_searchByBlockNumber_1637":{"entryPoint":12206,"id":1637,"parameterSlots":4,"returnSlots":1},"@_setCooldownSeconds_6239":{"entryPoint":10817,"id":6239,"parameterSlots":1,"returnSlots":0},"@_setMaxSlashablePercentage_6224":{"entryPoint":10683,"id":6224,"parameterSlots":1,"returnSlots":0},"@_spendAllowance_1061":{"entryPoint":9616,"id":1061,"parameterSlots":3,"returnSlots":0},"@_stake_6467":{"entryPoint":11421,"id":6467,"parameterSlots":3,"returnSlots":0},"@_transfer_6759":{"entryPoint":9732,"id":6759,"parameterSlots":3,"returnSlots":0},"@_transfer_844":{"entryPoint":13329,"id":844,"parameterSlots":3,"returnSlots":0},"@_updateAssetStateInternal_2654":{"entryPoint":15426,"id":2654,"parameterSlots":3,"returnSlots":1},"@_updateCurrentUnclaimedRewards_5167":{"entryPoint":12743,"id":5167,"parameterSlots":3,"returnSlots":1},"@_updateExchangeRate_6642":{"entryPoint":7853,"id":6642,"parameterSlots":1,"returnSlots":0},"@_updateUserAssetInternal_2729":{"entryPoint":15042,"id":2729,"parameterSlots":4,"returnSlots":1},"@_votingSnapshotsCounts_1901":{"entryPoint":null,"id":1901,"parameterSlots":0,"returnSlots":0},"@_votingSnapshots_1897":{"entryPoint":null,"id":1897,"parameterSlots":0,"returnSlots":0},"@_writeSnapshot_1842":{"entryPoint":15893,"id":1842,"parameterSlots":5,"returnSlots":0},"@allowance_639":{"entryPoint":6908,"id":639,"parameterSlots":2,"returnSlots":1},"@approve_664":{"entryPoint":3723,"id":664,"parameterSlots":2,"returnSlots":1},"@assets_2481":{"entryPoint":null,"id":2481,"parameterSlots":0,"returnSlots":0},"@balanceOf_596":{"entryPoint":4542,"id":596,"parameterSlots":1,"returnSlots":1},"@claimRewardsAndRedeemOnBehalf_5956":{"entryPoint":5053,"id":5956,"parameterSlots":4,"returnSlots":0},"@claimRewardsAndRedeem_5928":{"entryPoint":6951,"id":5928,"parameterSlots":3,"returnSlots":0},"@claimRewardsOnBehalf_5902":{"entryPoint":3863,"id":5902,"parameterSlots":3,"returnSlots":1},"@claimRewards_5880":{"entryPoint":5042,"id":5880,"parameterSlots":2,"returnSlots":0},"@claimRoleAdmin_5349":{"entryPoint":7442,"id":5349,"parameterSlots":1,"returnSlots":0},"@configureAssets_5720":{"entryPoint":5730,"id":5720,"parameterSlots":1,"returnSlots":0},"@cooldownOnBehalfOf_5782":{"entryPoint":3980,"id":5782,"parameterSlots":1,"returnSlots":0},"@cooldown_5768":{"entryPoint":4671,"id":5768,"parameterSlots":0,"returnSlots":0},"@decimals_572":{"entryPoint":null,"id":572,"parameterSlots":0,"returnSlots":1},"@decreaseAllowance_767":{"entryPoint":5140,"id":767,"parameterSlots":2,"returnSlots":1},"@delegateBySig_5112":{"entryPoint":5988,"id":5112,"parameterSlots":6,"returnSlots":0},"@delegateByTypeBySig_5021":{"entryPoint":6974,"id":5021,"parameterSlots":7,"returnSlots":0},"@delegateByType_1208":{"entryPoint":6897,"id":1208,"parameterSlots":2,"returnSlots":0},"@delegate_1232":{"entryPoint":4484,"id":1232,"parameterSlots":1,"returnSlots":0},"@functionCallWithValue_2059":{"entryPoint":16172,"id":2059,"parameterSlots":4,"returnSlots":1},"@functionCall_1995":{"entryPoint":15878,"id":1995,"parameterSlots":3,"returnSlots":1},"@getAdmin_5281":{"entryPoint":3747,"id":5281,"parameterSlots":1,"returnSlots":1},"@getCooldownSeconds_6192":{"entryPoint":null,"id":6192,"parameterSlots":0,"returnSlots":1},"@getDelegateeByType_1258":{"entryPoint":4508,"id":1258,"parameterSlots":2,"returnSlots":1},"@getExchangeRate_5966":{"entryPoint":null,"id":5966,"parameterSlots":0,"returnSlots":1},"@getMaxSlashablePercentage_6170":{"entryPoint":null,"id":6170,"parameterSlots":0,"returnSlots":1},"@getPendingAdmin_5294":{"entryPoint":null,"id":5294,"parameterSlots":1,"returnSlots":1},"@getPowerAtBlock_1331":{"entryPoint":5947,"id":1331,"parameterSlots":3,"returnSlots":1},"@getPowerCurrent_1294":{"entryPoint":5907,"id":1294,"parameterSlots":2,"returnSlots":1},"@getRevision_5583":{"entryPoint":null,"id":5583,"parameterSlots":0,"returnSlots":1},"@getTotalRewardsBalance_4840":{"entryPoint":4797,"id":4840,"parameterSlots":1,"returnSlots":1},"@getUserAssetData_2971":{"entryPoint":null,"id":2971,"parameterSlots":2,"returnSlots":1},"@inPostSlashingPeriod_5473":{"entryPoint":null,"id":5473,"parameterSlots":0,"returnSlots":0},"@increaseAllowance_726":{"entryPoint":4050,"id":726,"parameterSlots":2,"returnSlots":1},"@initialize_5608":{"entryPoint":5263,"id":5608,"parameterSlots":5,"returnSlots":0},"@isContract_1923":{"entryPoint":null,"id":1923,"parameterSlots":1,"returnSlots":1},"@name_552":{"entryPoint":3577,"id":552,"parameterSlots":0,"returnSlots":1},"@percentMul_4565":{"entryPoint":7651,"id":4565,"parameterSlots":2,"returnSlots":1},"@permit_4931":{"entryPoint":6441,"id":4931,"parameterSlots":7,"returnSlots":0},"@previewRedeem_5983":{"entryPoint":4441,"id":5983,"parameterSlots":1,"returnSlots":1},"@previewStake_5736":{"entryPoint":4569,"id":5736,"parameterSlots":1,"returnSlots":1},"@redeemOnBehalf_5861":{"entryPoint":3774,"id":5861,"parameterSlots":3,"returnSlots":0},"@redeem_5841":{"entryPoint":3848,"id":5841,"parameterSlots":2,"returnSlots":0},"@returnFunds_6131":{"entryPoint":4084,"id":6131,"parameterSlots":1,"returnSlots":0},"@safeTransferFrom_2289":{"entryPoint":10264,"id":2289,"parameterSlots":4,"returnSlots":0},"@safeTransfer_2263":{"entryPoint":8016,"id":2263,"parameterSlots":3,"returnSlots":0},"@setCooldownSeconds_6183":{"entryPoint":4682,"id":6183,"parameterSlots":1,"returnSlots":0},"@setMaxSlashablePercentage_6160":{"entryPoint":4604,"id":6160,"parameterSlots":1,"returnSlots":0},"@setPendingAdmin_5317":{"entryPoint":5410,"id":5317,"parameterSlots":2,"returnSlots":0},"@settleSlashing_6146":{"entryPoint":5616,"id":6146,"parameterSlots":0,"returnSlots":0},"@slash_6073":{"entryPoint":3003,"id":6073,"parameterSlots":2,"returnSlots":1},"@stake_5755":{"entryPoint":5605,"id":5755,"parameterSlots":2,"returnSlots":0},"@stakerRewardsToClaim_4672":{"entryPoint":null,"id":4672,"parameterSlots":0,"returnSlots":0},"@stakersCooldowns_4677":{"entryPoint":null,"id":4677,"parameterSlots":0,"returnSlots":0},"@symbol_562":{"entryPoint":5016,"id":562,"parameterSlots":0,"returnSlots":1},"@toUint184_3199":{"entryPoint":13224,"id":3199,"parameterSlots":1,"returnSlots":1},"@toUint216_3099":{"entryPoint":12424,"id":3099,"parameterSlots":1,"returnSlots":1},"@totalSupplyAt_1345":{"entryPoint":5031,"id":1345,"parameterSlots":1,"returnSlots":1},"@totalSupply_582":{"entryPoint":null,"id":582,"parameterSlots":0,"returnSlots":1},"@transferFrom_697":{"entryPoint":3944,"id":697,"parameterSlots":3,"returnSlots":1},"@transfer_621":{"entryPoint":5396,"id":621,"parameterSlots":2,"returnSlots":1},"@verifyCallResultFromTarget_2190":{"entryPoint":null,"id":2190,"parameterSlots":4,"returnSlots":1},"abi_decode_address":{"entryPoint":16533,"id":null,"parameterSlots":1,"returnSlots":1},"abi_decode_enum_DelegationType":{"entryPoint":16866,"id":null,"parameterSlots":1,"returnSlots":1},"abi_decode_tuple_t_address":{"entryPoint":16702,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_addresst_address":{"entryPoint":16815,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_addresst_addresst_addresst_uint256t_uint256":{"entryPoint":16989,"id":null,"parameterSlots":2,"returnSlots":5},"abi_decode_tuple_t_addresst_addresst_uint256":{"entryPoint":16754,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_addresst_addresst_uint256t_uint256":{"entryPoint":16923,"id":null,"parameterSlots":2,"returnSlots":4},"abi_decode_tuple_t_addresst_addresst_uint256t_uint256t_uint8t_bytes32t_bytes32":{"entryPoint":17630,"id":null,"parameterSlots":2,"returnSlots":7},"abi_decode_tuple_t_addresst_enum$_DelegationType_$1088":{"entryPoint":16881,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_addresst_enum$_DelegationType_$1088t_uint256t_uint256t_uint8t_bytes32t_bytes32":{"entryPoint":17788,"id":null,"parameterSlots":2,"returnSlots":7},"abi_decode_tuple_t_addresst_uint256":{"entryPoint":16561,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_tuple_t_addresst_uint256t_enum$_DelegationType_$1088":{"entryPoint":17465,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_addresst_uint256t_uint256":{"entryPoint":17737,"id":null,"parameterSlots":2,"returnSlots":3},"abi_decode_tuple_t_addresst_uint256t_uint256t_uint8t_bytes32t_bytes32":{"entryPoint":17542,"id":null,"parameterSlots":2,"returnSlots":6},"abi_decode_tuple_t_array$_t_struct$_AssetConfigInput_$129_memory_ptr_$dyn_memory_ptr":{"entryPoint":17221,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_bool_fromMemory":{"entryPoint":18430,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_uint256":{"entryPoint":16729,"id":null,"parameterSlots":2,"returnSlots":1},"abi_decode_tuple_t_uint256t_address":{"entryPoint":17074,"id":null,"parameterSlots":2,"returnSlots":2},"abi_decode_uint8":{"entryPoint":17525,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_enum_DelegationType":{"entryPoint":18382,"id":null,"parameterSlots":2,"returnSlots":0},"abi_encode_string":{"entryPoint":16639,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_packed_t_bytes_memory_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed":{"entryPoint":18727,"id":null,"parameterSlots":2,"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":18145,"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__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_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_address_t_uint256_t_uint256__to_t_bytes32_t_address_t_uint256_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":5,"returnSlots":1},"abi_encode_tuple_t_bytes32_t_address_t_uint256_t_uint256_t_uint256__to_t_bytes32_t_address_t_uint256_t_uint256_t_uint256__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_bytes_memory_ptr__to_t_bytes_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_contract$_IERC20_$77__to_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_contract$_ITransferHook_$1885__to_t_address__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_enum$_DelegationType_$1088__to_t_uint8__fromStack_reversed":{"entryPoint":18416,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":16683,"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_2783cc94d2815145fca23f61c101ffc8ff8c6a01d5b51321a6791062a0684adf__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":17992,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_2f1333997521c1f7b64fb9baad89e36b71dfc7265a9804df600ce8ae5c1f6f36__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_33d2eb294587ef7b32eb48e48695ebfec45a9c8922ec7d1c444cfad1fb208e8d__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":18306,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe__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_5407ed0094c102003a23cbee6bcb44020e6bb1be4fa76486e3d76e28e8ab8c65__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_5e135040f8dc35152fcfe1ddf129384a9ce13d1776c5e6dc86a62f244bfcfc0b__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_5e2e9eaa2d734966dea0900deacd15b20129fbce05255d633a3ce5ebca181b88__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":18172,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_621f50d6436d0a4dd01bdd0a290cbd90a33871f85d2f75ec24041520fb128387__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_66cceaab4b8a6f427cff5482a526862a61c3ef92948b70aceb4a8f720a8f0ead__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_6b96bc99e56604df6600e4ce66f7e91bdc3417f453200fce123d801c60b50ff8__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_6fb33ededa50927431023a1ca5722fb9abe7b87aeeb47e46d1f13b646b0719ba__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":17838,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_86c53d89b1944d561ecfa42e859033241d1df6ea8d42a57ae02f79d45de4aa75__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_8966adc0aad8dc91b207c69c3eb4937e498af8cc706cfe7edd55f3a6ea53488d__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_9fbba6c4dcac9134893b633b9564f36435b3f927c1d5fa152c5c14b20cecb1a4__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_9fe3e5cf49f72bf8a6a8455c3e990f8479f5dfa09ac808886f330a39b0029c2d__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":18240,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_a19e25beaf00f467d35fbe7e167b5794fca796dbfd417dd2accc8f5303300b99__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_a28d34ff463a8cc689c6ec4b8c995983f85d0a40987242bc4cc3cec37303c18e__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_a30e2b4f22d955e30086ae3aef0adfd87eec9d0d3f055d6aa9af61f522dda886__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_ad8e292265788ac5c19f708ed96612bf3229f5fbdf9e1b9b3466c3f5a1b60243__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_b2af192d647f8b8a9f94a546a11b40d3536722e4b74d77e3330eb171e0c93079__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_c6959acf2335419e4a75195e2fb1c276a96baa5b7fab6be19b14b9420a4bd962__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_ca68b1751ae29c5f09bd0021f927ba7e466485e5196910ff5ec2e20b861ddf43__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_ce93b50079b62f2df0cdb8205f7bed11a1c18f1ff774f2e6b4f84f4f62875ed5__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_d49ebb848086492947fc93c9ef60d839aa895187a88d01c0575e0469055263d2__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_dd61c748dcfe71393203093270c457f6ceb8834cce0160376620e7b2f811559c__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_e42e312e91b2c7decf2c17d44adbe92f5dbd21dd2fe6c255c257f03ae436b4f4__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_e5f9ee9777b2bbd505a43328a4cc6b61e9df46610a556d5402b9bc072df973d7__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_e80295a9867834b2dfe1d7606b122307d35ebaa940c20b448f18824a9256df9d__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_f448a4555410856eaebeffbdb1aef2dfca19f9de0904eb1029e0bbcd0330450f__to_t_string_memory_ptr__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":1,"returnSlots":1},"abi_encode_tuple_t_stringliteral_f77daace20469de8df4d27824d8f88ae642c918133f638a98e78576c5af835a5__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_fa2c368672f35856ca139c6dfba7cf36845bc24e7a2795ed29d2eba4e8313209__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_uint128__to_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"abi_encode_tuple_t_uint128_t_uint128__to_t_uint128_t_uint128__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_uint128_t_uint128_t_uint256__to_t_uint128_t_uint128_t_uint256__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":4,"returnSlots":1},"abi_encode_tuple_t_uint216__to_t_uint216__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_uint256_t_enum$_DelegationType_$1088__to_t_uint256_t_uint8__fromStack_reversed":{"entryPoint":18464,"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},"abi_encode_tuple_t_uint40_t_uint216__to_t_uint40_t_uint216__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":3,"returnSlots":1},"abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed":{"entryPoint":null,"id":null,"parameterSlots":2,"returnSlots":1},"allocate_memory":{"entryPoint":17172,"id":null,"parameterSlots":1,"returnSlots":1},"allocate_memory_4360":{"entryPoint":17131,"id":null,"parameterSlots":0,"returnSlots":1},"checked_add_t_uint256":{"entryPoint":18047,"id":null,"parameterSlots":2,"returnSlots":1},"checked_div_t_uint256":{"entryPoint":18089,"id":null,"parameterSlots":2,"returnSlots":1},"checked_exp_helper":{"entryPoint":18484,"id":null,"parameterSlots":3,"returnSlots":2},"checked_exp_t_uint256_t_uint256":{"entryPoint":18715,"id":null,"parameterSlots":2,"returnSlots":1},"checked_exp_unsigned":{"entryPoint":18551,"id":null,"parameterSlots":2,"returnSlots":1},"checked_mul_t_uint256":{"entryPoint":18066,"id":null,"parameterSlots":2,"returnSlots":1},"checked_sub_t_uint216":{"entryPoint":18351,"id":null,"parameterSlots":2,"returnSlots":1},"checked_sub_t_uint256":{"entryPoint":17915,"id":null,"parameterSlots":2,"returnSlots":1},"copy_memory_to_memory_with_cleanup":{"entryPoint":16603,"id":null,"parameterSlots":3,"returnSlots":0},"extract_byte_array_length":{"entryPoint":17934,"id":null,"parameterSlots":1,"returnSlots":1},"increment_t_uint256":{"entryPoint":18215,"id":null,"parameterSlots":1,"returnSlots":1},"panic_error_0x11":{"entryPoint":17893,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x12":{"entryPoint":null,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x21":{"entryPoint":18284,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x32":{"entryPoint":18123,"id":null,"parameterSlots":0,"returnSlots":0},"panic_error_0x41":{"entryPoint":17109,"id":null,"parameterSlots":0,"returnSlots":0}},"generatedSources":[{"ast":{"nativeSrc":"0:36453:1","nodeType":"YulBlock","src":"0:36453:1","statements":[{"nativeSrc":"6:3:1","nodeType":"YulBlock","src":"6:3:1","statements":[]},{"body":{"nativeSrc":"63:124:1","nodeType":"YulBlock","src":"63:124:1","statements":[{"nativeSrc":"73:29:1","nodeType":"YulAssignment","src":"73:29:1","value":{"arguments":[{"name":"offset","nativeSrc":"95:6:1","nodeType":"YulIdentifier","src":"95:6:1"}],"functionName":{"name":"calldataload","nativeSrc":"82:12:1","nodeType":"YulIdentifier","src":"82:12:1"},"nativeSrc":"82:20:1","nodeType":"YulFunctionCall","src":"82:20:1"},"variableNames":[{"name":"value","nativeSrc":"73:5:1","nodeType":"YulIdentifier","src":"73:5:1"}]},{"body":{"nativeSrc":"165:16:1","nodeType":"YulBlock","src":"165:16:1","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"174:1:1","nodeType":"YulLiteral","src":"174:1:1","type":"","value":"0"},{"kind":"number","nativeSrc":"177:1:1","nodeType":"YulLiteral","src":"177:1:1","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"167:6:1","nodeType":"YulIdentifier","src":"167:6:1"},"nativeSrc":"167:12:1","nodeType":"YulFunctionCall","src":"167:12:1"},"nativeSrc":"167:12:1","nodeType":"YulExpressionStatement","src":"167:12:1"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"124:5:1","nodeType":"YulIdentifier","src":"124:5:1"},{"arguments":[{"name":"value","nativeSrc":"135:5:1","nodeType":"YulIdentifier","src":"135:5:1"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"150:3:1","nodeType":"YulLiteral","src":"150:3:1","type":"","value":"160"},{"kind":"number","nativeSrc":"155:1:1","nodeType":"YulLiteral","src":"155:1:1","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"146:3:1","nodeType":"YulIdentifier","src":"146:3:1"},"nativeSrc":"146:11:1","nodeType":"YulFunctionCall","src":"146:11:1"},{"kind":"number","nativeSrc":"159:1:1","nodeType":"YulLiteral","src":"159:1:1","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"142:3:1","nodeType":"YulIdentifier","src":"142:3:1"},"nativeSrc":"142:19:1","nodeType":"YulFunctionCall","src":"142:19:1"}],"functionName":{"name":"and","nativeSrc":"131:3:1","nodeType":"YulIdentifier","src":"131:3:1"},"nativeSrc":"131:31:1","nodeType":"YulFunctionCall","src":"131:31:1"}],"functionName":{"name":"eq","nativeSrc":"121:2:1","nodeType":"YulIdentifier","src":"121:2:1"},"nativeSrc":"121:42:1","nodeType":"YulFunctionCall","src":"121:42:1"}],"functionName":{"name":"iszero","nativeSrc":"114:6:1","nodeType":"YulIdentifier","src":"114:6:1"},"nativeSrc":"114:50:1","nodeType":"YulFunctionCall","src":"114:50:1"},"nativeSrc":"111:70:1","nodeType":"YulIf","src":"111:70:1"}]},"name":"abi_decode_address","nativeSrc":"14:173:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"42:6:1","nodeType":"YulTypedName","src":"42:6:1","type":""}],"returnVariables":[{"name":"value","nativeSrc":"53:5:1","nodeType":"YulTypedName","src":"53:5:1","type":""}],"src":"14:173:1"},{"body":{"nativeSrc":"279:213:1","nodeType":"YulBlock","src":"279:213:1","statements":[{"body":{"nativeSrc":"325:16:1","nodeType":"YulBlock","src":"325:16:1","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"334:1:1","nodeType":"YulLiteral","src":"334:1:1","type":"","value":"0"},{"kind":"number","nativeSrc":"337:1:1","nodeType":"YulLiteral","src":"337:1:1","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"327:6:1","nodeType":"YulIdentifier","src":"327:6:1"},"nativeSrc":"327:12:1","nodeType":"YulFunctionCall","src":"327:12:1"},"nativeSrc":"327:12:1","nodeType":"YulExpressionStatement","src":"327:12:1"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"300:7:1","nodeType":"YulIdentifier","src":"300:7:1"},{"name":"headStart","nativeSrc":"309:9:1","nodeType":"YulIdentifier","src":"309:9:1"}],"functionName":{"name":"sub","nativeSrc":"296:3:1","nodeType":"YulIdentifier","src":"296:3:1"},"nativeSrc":"296:23:1","nodeType":"YulFunctionCall","src":"296:23:1"},{"kind":"number","nativeSrc":"321:2:1","nodeType":"YulLiteral","src":"321:2:1","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"292:3:1","nodeType":"YulIdentifier","src":"292:3:1"},"nativeSrc":"292:32:1","nodeType":"YulFunctionCall","src":"292:32:1"},"nativeSrc":"289:52:1","nodeType":"YulIf","src":"289:52:1"},{"nativeSrc":"350:39:1","nodeType":"YulAssignment","src":"350:39:1","value":{"arguments":[{"name":"headStart","nativeSrc":"379:9:1","nodeType":"YulIdentifier","src":"379:9:1"}],"functionName":{"name":"abi_decode_address","nativeSrc":"360:18:1","nodeType":"YulIdentifier","src":"360:18:1"},"nativeSrc":"360:29:1","nodeType":"YulFunctionCall","src":"360:29:1"},"variableNames":[{"name":"value0","nativeSrc":"350:6:1","nodeType":"YulIdentifier","src":"350:6:1"}]},{"nativeSrc":"398:14:1","nodeType":"YulVariableDeclaration","src":"398:14:1","value":{"kind":"number","nativeSrc":"411:1:1","nodeType":"YulLiteral","src":"411:1:1","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"402:5:1","nodeType":"YulTypedName","src":"402:5:1","type":""}]},{"nativeSrc":"421:41:1","nodeType":"YulAssignment","src":"421:41:1","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"447:9:1","nodeType":"YulIdentifier","src":"447:9:1"},{"kind":"number","nativeSrc":"458:2:1","nodeType":"YulLiteral","src":"458:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"443:3:1","nodeType":"YulIdentifier","src":"443:3:1"},"nativeSrc":"443:18:1","nodeType":"YulFunctionCall","src":"443:18:1"}],"functionName":{"name":"calldataload","nativeSrc":"430:12:1","nodeType":"YulIdentifier","src":"430:12:1"},"nativeSrc":"430:32:1","nodeType":"YulFunctionCall","src":"430:32:1"},"variableNames":[{"name":"value","nativeSrc":"421:5:1","nodeType":"YulIdentifier","src":"421:5:1"}]},{"nativeSrc":"471:15:1","nodeType":"YulAssignment","src":"471:15:1","value":{"name":"value","nativeSrc":"481:5:1","nodeType":"YulIdentifier","src":"481:5:1"},"variableNames":[{"name":"value1","nativeSrc":"471:6:1","nodeType":"YulIdentifier","src":"471:6:1"}]}]},"name":"abi_decode_tuple_t_addresst_uint256","nativeSrc":"192:300:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"237:9:1","nodeType":"YulTypedName","src":"237:9:1","type":""},{"name":"dataEnd","nativeSrc":"248:7:1","nodeType":"YulTypedName","src":"248:7:1","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"260:6:1","nodeType":"YulTypedName","src":"260:6:1","type":""},{"name":"value1","nativeSrc":"268:6:1","nodeType":"YulTypedName","src":"268:6:1","type":""}],"src":"192:300:1"},{"body":{"nativeSrc":"598:76:1","nodeType":"YulBlock","src":"598:76:1","statements":[{"nativeSrc":"608:26:1","nodeType":"YulAssignment","src":"608:26:1","value":{"arguments":[{"name":"headStart","nativeSrc":"620:9:1","nodeType":"YulIdentifier","src":"620:9:1"},{"kind":"number","nativeSrc":"631:2:1","nodeType":"YulLiteral","src":"631:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"616:3:1","nodeType":"YulIdentifier","src":"616:3:1"},"nativeSrc":"616:18:1","nodeType":"YulFunctionCall","src":"616:18:1"},"variableNames":[{"name":"tail","nativeSrc":"608:4:1","nodeType":"YulIdentifier","src":"608:4:1"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"650:9:1","nodeType":"YulIdentifier","src":"650:9:1"},{"name":"value0","nativeSrc":"661:6:1","nodeType":"YulIdentifier","src":"661:6:1"}],"functionName":{"name":"mstore","nativeSrc":"643:6:1","nodeType":"YulIdentifier","src":"643:6:1"},"nativeSrc":"643:25:1","nodeType":"YulFunctionCall","src":"643:25:1"},"nativeSrc":"643:25:1","nodeType":"YulExpressionStatement","src":"643:25:1"}]},"name":"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed","nativeSrc":"497:177:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"567:9:1","nodeType":"YulTypedName","src":"567:9:1","type":""},{"name":"value0","nativeSrc":"578:6:1","nodeType":"YulTypedName","src":"578:6:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"589:4:1","nodeType":"YulTypedName","src":"589:4:1","type":""}],"src":"497:177:1"},{"body":{"nativeSrc":"745:184:1","nodeType":"YulBlock","src":"745:184:1","statements":[{"nativeSrc":"755:10:1","nodeType":"YulVariableDeclaration","src":"755:10:1","value":{"kind":"number","nativeSrc":"764:1:1","nodeType":"YulLiteral","src":"764:1:1","type":"","value":"0"},"variables":[{"name":"i","nativeSrc":"759:1:1","nodeType":"YulTypedName","src":"759:1:1","type":""}]},{"body":{"nativeSrc":"824:63:1","nodeType":"YulBlock","src":"824:63:1","statements":[{"expression":{"arguments":[{"arguments":[{"name":"dst","nativeSrc":"849:3:1","nodeType":"YulIdentifier","src":"849:3:1"},{"name":"i","nativeSrc":"854:1:1","nodeType":"YulIdentifier","src":"854:1:1"}],"functionName":{"name":"add","nativeSrc":"845:3:1","nodeType":"YulIdentifier","src":"845:3:1"},"nativeSrc":"845:11:1","nodeType":"YulFunctionCall","src":"845:11:1"},{"arguments":[{"arguments":[{"name":"src","nativeSrc":"868:3:1","nodeType":"YulIdentifier","src":"868:3:1"},{"name":"i","nativeSrc":"873:1:1","nodeType":"YulIdentifier","src":"873:1:1"}],"functionName":{"name":"add","nativeSrc":"864:3:1","nodeType":"YulIdentifier","src":"864:3:1"},"nativeSrc":"864:11:1","nodeType":"YulFunctionCall","src":"864:11:1"}],"functionName":{"name":"mload","nativeSrc":"858:5:1","nodeType":"YulIdentifier","src":"858:5:1"},"nativeSrc":"858:18:1","nodeType":"YulFunctionCall","src":"858:18:1"}],"functionName":{"name":"mstore","nativeSrc":"838:6:1","nodeType":"YulIdentifier","src":"838:6:1"},"nativeSrc":"838:39:1","nodeType":"YulFunctionCall","src":"838:39:1"},"nativeSrc":"838:39:1","nodeType":"YulExpressionStatement","src":"838:39:1"}]},"condition":{"arguments":[{"name":"i","nativeSrc":"785:1:1","nodeType":"YulIdentifier","src":"785:1:1"},{"name":"length","nativeSrc":"788:6:1","nodeType":"YulIdentifier","src":"788:6:1"}],"functionName":{"name":"lt","nativeSrc":"782:2:1","nodeType":"YulIdentifier","src":"782:2:1"},"nativeSrc":"782:13:1","nodeType":"YulFunctionCall","src":"782:13:1"},"nativeSrc":"774:113:1","nodeType":"YulForLoop","post":{"nativeSrc":"796:19:1","nodeType":"YulBlock","src":"796:19:1","statements":[{"nativeSrc":"798:15:1","nodeType":"YulAssignment","src":"798:15:1","value":{"arguments":[{"name":"i","nativeSrc":"807:1:1","nodeType":"YulIdentifier","src":"807:1:1"},{"kind":"number","nativeSrc":"810:2:1","nodeType":"YulLiteral","src":"810:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"803:3:1","nodeType":"YulIdentifier","src":"803:3:1"},"nativeSrc":"803:10:1","nodeType":"YulFunctionCall","src":"803:10:1"},"variableNames":[{"name":"i","nativeSrc":"798:1:1","nodeType":"YulIdentifier","src":"798:1:1"}]}]},"pre":{"nativeSrc":"778:3:1","nodeType":"YulBlock","src":"778:3:1","statements":[]},"src":"774:113:1"},{"expression":{"arguments":[{"arguments":[{"name":"dst","nativeSrc":"907:3:1","nodeType":"YulIdentifier","src":"907:3:1"},{"name":"length","nativeSrc":"912:6:1","nodeType":"YulIdentifier","src":"912:6:1"}],"functionName":{"name":"add","nativeSrc":"903:3:1","nodeType":"YulIdentifier","src":"903:3:1"},"nativeSrc":"903:16:1","nodeType":"YulFunctionCall","src":"903:16:1"},{"kind":"number","nativeSrc":"921:1:1","nodeType":"YulLiteral","src":"921:1:1","type":"","value":"0"}],"functionName":{"name":"mstore","nativeSrc":"896:6:1","nodeType":"YulIdentifier","src":"896:6:1"},"nativeSrc":"896:27:1","nodeType":"YulFunctionCall","src":"896:27:1"},"nativeSrc":"896:27:1","nodeType":"YulExpressionStatement","src":"896:27:1"}]},"name":"copy_memory_to_memory_with_cleanup","nativeSrc":"679:250:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"src","nativeSrc":"723:3:1","nodeType":"YulTypedName","src":"723:3:1","type":""},{"name":"dst","nativeSrc":"728:3:1","nodeType":"YulTypedName","src":"728:3:1","type":""},{"name":"length","nativeSrc":"733:6:1","nodeType":"YulTypedName","src":"733:6:1","type":""}],"src":"679:250:1"},{"body":{"nativeSrc":"984:221:1","nodeType":"YulBlock","src":"984:221:1","statements":[{"nativeSrc":"994:26:1","nodeType":"YulVariableDeclaration","src":"994:26:1","value":{"arguments":[{"name":"value","nativeSrc":"1014:5:1","nodeType":"YulIdentifier","src":"1014:5:1"}],"functionName":{"name":"mload","nativeSrc":"1008:5:1","nodeType":"YulIdentifier","src":"1008:5:1"},"nativeSrc":"1008:12:1","nodeType":"YulFunctionCall","src":"1008:12:1"},"variables":[{"name":"length","nativeSrc":"998:6:1","nodeType":"YulTypedName","src":"998:6:1","type":""}]},{"expression":{"arguments":[{"name":"pos","nativeSrc":"1036:3:1","nodeType":"YulIdentifier","src":"1036:3:1"},{"name":"length","nativeSrc":"1041:6:1","nodeType":"YulIdentifier","src":"1041:6:1"}],"functionName":{"name":"mstore","nativeSrc":"1029:6:1","nodeType":"YulIdentifier","src":"1029:6:1"},"nativeSrc":"1029:19:1","nodeType":"YulFunctionCall","src":"1029:19:1"},"nativeSrc":"1029:19:1","nodeType":"YulExpressionStatement","src":"1029:19:1"},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"1096:5:1","nodeType":"YulIdentifier","src":"1096:5:1"},{"kind":"number","nativeSrc":"1103:4:1","nodeType":"YulLiteral","src":"1103:4:1","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"1092:3:1","nodeType":"YulIdentifier","src":"1092:3:1"},"nativeSrc":"1092:16:1","nodeType":"YulFunctionCall","src":"1092:16:1"},{"arguments":[{"name":"pos","nativeSrc":"1114:3:1","nodeType":"YulIdentifier","src":"1114:3:1"},{"kind":"number","nativeSrc":"1119:4:1","nodeType":"YulLiteral","src":"1119:4:1","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"1110:3:1","nodeType":"YulIdentifier","src":"1110:3:1"},"nativeSrc":"1110:14:1","nodeType":"YulFunctionCall","src":"1110:14:1"},{"name":"length","nativeSrc":"1126:6:1","nodeType":"YulIdentifier","src":"1126:6:1"}],"functionName":{"name":"copy_memory_to_memory_with_cleanup","nativeSrc":"1057:34:1","nodeType":"YulIdentifier","src":"1057:34:1"},"nativeSrc":"1057:76:1","nodeType":"YulFunctionCall","src":"1057:76:1"},"nativeSrc":"1057:76:1","nodeType":"YulExpressionStatement","src":"1057:76:1"},{"nativeSrc":"1142:57:1","nodeType":"YulAssignment","src":"1142:57:1","value":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"1157:3:1","nodeType":"YulIdentifier","src":"1157:3:1"},{"arguments":[{"arguments":[{"name":"length","nativeSrc":"1170:6:1","nodeType":"YulIdentifier","src":"1170:6:1"},{"kind":"number","nativeSrc":"1178:2:1","nodeType":"YulLiteral","src":"1178:2:1","type":"","value":"31"}],"functionName":{"name":"add","nativeSrc":"1166:3:1","nodeType":"YulIdentifier","src":"1166:3:1"},"nativeSrc":"1166:15:1","nodeType":"YulFunctionCall","src":"1166:15:1"},{"arguments":[{"kind":"number","nativeSrc":"1187:2:1","nodeType":"YulLiteral","src":"1187:2:1","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"1183:3:1","nodeType":"YulIdentifier","src":"1183:3:1"},"nativeSrc":"1183:7:1","nodeType":"YulFunctionCall","src":"1183:7:1"}],"functionName":{"name":"and","nativeSrc":"1162:3:1","nodeType":"YulIdentifier","src":"1162:3:1"},"nativeSrc":"1162:29:1","nodeType":"YulFunctionCall","src":"1162:29:1"}],"functionName":{"name":"add","nativeSrc":"1153:3:1","nodeType":"YulIdentifier","src":"1153:3:1"},"nativeSrc":"1153:39:1","nodeType":"YulFunctionCall","src":"1153:39:1"},{"kind":"number","nativeSrc":"1194:4:1","nodeType":"YulLiteral","src":"1194:4:1","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"1149:3:1","nodeType":"YulIdentifier","src":"1149:3:1"},"nativeSrc":"1149:50:1","nodeType":"YulFunctionCall","src":"1149:50:1"},"variableNames":[{"name":"end","nativeSrc":"1142:3:1","nodeType":"YulIdentifier","src":"1142:3:1"}]}]},"name":"abi_encode_string","nativeSrc":"934:271:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"961:5:1","nodeType":"YulTypedName","src":"961:5:1","type":""},{"name":"pos","nativeSrc":"968:3:1","nodeType":"YulTypedName","src":"968:3:1","type":""}],"returnVariables":[{"name":"end","nativeSrc":"976:3:1","nodeType":"YulTypedName","src":"976:3:1","type":""}],"src":"934:271:1"},{"body":{"nativeSrc":"1331:99:1","nodeType":"YulBlock","src":"1331:99:1","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"1348:9:1","nodeType":"YulIdentifier","src":"1348:9:1"},{"kind":"number","nativeSrc":"1359:2:1","nodeType":"YulLiteral","src":"1359:2:1","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"1341:6:1","nodeType":"YulIdentifier","src":"1341:6:1"},"nativeSrc":"1341:21:1","nodeType":"YulFunctionCall","src":"1341:21:1"},"nativeSrc":"1341:21:1","nodeType":"YulExpressionStatement","src":"1341:21:1"},{"nativeSrc":"1371:53:1","nodeType":"YulAssignment","src":"1371:53:1","value":{"arguments":[{"name":"value0","nativeSrc":"1397:6:1","nodeType":"YulIdentifier","src":"1397:6:1"},{"arguments":[{"name":"headStart","nativeSrc":"1409:9:1","nodeType":"YulIdentifier","src":"1409:9:1"},{"kind":"number","nativeSrc":"1420:2:1","nodeType":"YulLiteral","src":"1420:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1405:3:1","nodeType":"YulIdentifier","src":"1405:3:1"},"nativeSrc":"1405:18:1","nodeType":"YulFunctionCall","src":"1405:18:1"}],"functionName":{"name":"abi_encode_string","nativeSrc":"1379:17:1","nodeType":"YulIdentifier","src":"1379:17:1"},"nativeSrc":"1379:45:1","nodeType":"YulFunctionCall","src":"1379:45:1"},"variableNames":[{"name":"tail","nativeSrc":"1371:4:1","nodeType":"YulIdentifier","src":"1371:4:1"}]}]},"name":"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"1210:220:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1300:9:1","nodeType":"YulTypedName","src":"1300:9:1","type":""},{"name":"value0","nativeSrc":"1311:6:1","nodeType":"YulTypedName","src":"1311:6:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"1322:4:1","nodeType":"YulTypedName","src":"1322:4:1","type":""}],"src":"1210:220:1"},{"body":{"nativeSrc":"1505:116:1","nodeType":"YulBlock","src":"1505:116:1","statements":[{"body":{"nativeSrc":"1551:16:1","nodeType":"YulBlock","src":"1551:16:1","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"1560:1:1","nodeType":"YulLiteral","src":"1560:1:1","type":"","value":"0"},{"kind":"number","nativeSrc":"1563:1:1","nodeType":"YulLiteral","src":"1563:1:1","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"1553:6:1","nodeType":"YulIdentifier","src":"1553:6:1"},"nativeSrc":"1553:12:1","nodeType":"YulFunctionCall","src":"1553:12:1"},"nativeSrc":"1553:12:1","nodeType":"YulExpressionStatement","src":"1553:12:1"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"1526:7:1","nodeType":"YulIdentifier","src":"1526:7:1"},{"name":"headStart","nativeSrc":"1535:9:1","nodeType":"YulIdentifier","src":"1535:9:1"}],"functionName":{"name":"sub","nativeSrc":"1522:3:1","nodeType":"YulIdentifier","src":"1522:3:1"},"nativeSrc":"1522:23:1","nodeType":"YulFunctionCall","src":"1522:23:1"},{"kind":"number","nativeSrc":"1547:2:1","nodeType":"YulLiteral","src":"1547:2:1","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"1518:3:1","nodeType":"YulIdentifier","src":"1518:3:1"},"nativeSrc":"1518:32:1","nodeType":"YulFunctionCall","src":"1518:32:1"},"nativeSrc":"1515:52:1","nodeType":"YulIf","src":"1515:52:1"},{"nativeSrc":"1576:39:1","nodeType":"YulAssignment","src":"1576:39:1","value":{"arguments":[{"name":"headStart","nativeSrc":"1605:9:1","nodeType":"YulIdentifier","src":"1605:9:1"}],"functionName":{"name":"abi_decode_address","nativeSrc":"1586:18:1","nodeType":"YulIdentifier","src":"1586:18:1"},"nativeSrc":"1586:29:1","nodeType":"YulFunctionCall","src":"1586:29:1"},"variableNames":[{"name":"value0","nativeSrc":"1576:6:1","nodeType":"YulIdentifier","src":"1576:6:1"}]}]},"name":"abi_decode_tuple_t_address","nativeSrc":"1435:186:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1471:9:1","nodeType":"YulTypedName","src":"1471:9:1","type":""},{"name":"dataEnd","nativeSrc":"1482:7:1","nodeType":"YulTypedName","src":"1482:7:1","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"1494:6:1","nodeType":"YulTypedName","src":"1494:6:1","type":""}],"src":"1435:186:1"},{"body":{"nativeSrc":"1753:164:1","nodeType":"YulBlock","src":"1753:164:1","statements":[{"nativeSrc":"1763:26:1","nodeType":"YulAssignment","src":"1763:26:1","value":{"arguments":[{"name":"headStart","nativeSrc":"1775:9:1","nodeType":"YulIdentifier","src":"1775:9:1"},{"kind":"number","nativeSrc":"1786:2:1","nodeType":"YulLiteral","src":"1786:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"1771:3:1","nodeType":"YulIdentifier","src":"1771:3:1"},"nativeSrc":"1771:18:1","nodeType":"YulFunctionCall","src":"1771:18:1"},"variableNames":[{"name":"tail","nativeSrc":"1763:4:1","nodeType":"YulIdentifier","src":"1763:4:1"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"1805:9:1","nodeType":"YulIdentifier","src":"1805:9:1"},{"arguments":[{"name":"value0","nativeSrc":"1820:6:1","nodeType":"YulIdentifier","src":"1820:6:1"},{"kind":"number","nativeSrc":"1828:12:1","nodeType":"YulLiteral","src":"1828:12:1","type":"","value":"0xffffffffff"}],"functionName":{"name":"and","nativeSrc":"1816:3:1","nodeType":"YulIdentifier","src":"1816:3:1"},"nativeSrc":"1816:25:1","nodeType":"YulFunctionCall","src":"1816:25:1"}],"functionName":{"name":"mstore","nativeSrc":"1798:6:1","nodeType":"YulIdentifier","src":"1798:6:1"},"nativeSrc":"1798:44:1","nodeType":"YulFunctionCall","src":"1798:44:1"},"nativeSrc":"1798:44:1","nodeType":"YulExpressionStatement","src":"1798:44:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"1862:9:1","nodeType":"YulIdentifier","src":"1862:9:1"},{"kind":"number","nativeSrc":"1873:2:1","nodeType":"YulLiteral","src":"1873:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"1858:3:1","nodeType":"YulIdentifier","src":"1858:3:1"},"nativeSrc":"1858:18:1","nodeType":"YulFunctionCall","src":"1858:18:1"},{"arguments":[{"name":"value1","nativeSrc":"1882:6:1","nodeType":"YulIdentifier","src":"1882:6:1"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"1898:3:1","nodeType":"YulLiteral","src":"1898:3:1","type":"","value":"216"},{"kind":"number","nativeSrc":"1903:1:1","nodeType":"YulLiteral","src":"1903:1:1","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"1894:3:1","nodeType":"YulIdentifier","src":"1894:3:1"},"nativeSrc":"1894:11:1","nodeType":"YulFunctionCall","src":"1894:11:1"},{"kind":"number","nativeSrc":"1907:1:1","nodeType":"YulLiteral","src":"1907:1:1","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"1890:3:1","nodeType":"YulIdentifier","src":"1890:3:1"},"nativeSrc":"1890:19:1","nodeType":"YulFunctionCall","src":"1890:19:1"}],"functionName":{"name":"and","nativeSrc":"1878:3:1","nodeType":"YulIdentifier","src":"1878:3:1"},"nativeSrc":"1878:32:1","nodeType":"YulFunctionCall","src":"1878:32:1"}],"functionName":{"name":"mstore","nativeSrc":"1851:6:1","nodeType":"YulIdentifier","src":"1851:6:1"},"nativeSrc":"1851:60:1","nodeType":"YulFunctionCall","src":"1851:60:1"},"nativeSrc":"1851:60:1","nodeType":"YulExpressionStatement","src":"1851:60:1"}]},"name":"abi_encode_tuple_t_uint40_t_uint216__to_t_uint40_t_uint216__fromStack_reversed","nativeSrc":"1626:291:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1714:9:1","nodeType":"YulTypedName","src":"1714:9:1","type":""},{"name":"value1","nativeSrc":"1725:6:1","nodeType":"YulTypedName","src":"1725:6:1","type":""},{"name":"value0","nativeSrc":"1733:6:1","nodeType":"YulTypedName","src":"1733:6:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"1744:4:1","nodeType":"YulTypedName","src":"1744:4:1","type":""}],"src":"1626:291:1"},{"body":{"nativeSrc":"2017:92:1","nodeType":"YulBlock","src":"2017:92:1","statements":[{"nativeSrc":"2027:26:1","nodeType":"YulAssignment","src":"2027:26:1","value":{"arguments":[{"name":"headStart","nativeSrc":"2039:9:1","nodeType":"YulIdentifier","src":"2039:9:1"},{"kind":"number","nativeSrc":"2050:2:1","nodeType":"YulLiteral","src":"2050:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"2035:3:1","nodeType":"YulIdentifier","src":"2035:3:1"},"nativeSrc":"2035:18:1","nodeType":"YulFunctionCall","src":"2035:18:1"},"variableNames":[{"name":"tail","nativeSrc":"2027:4:1","nodeType":"YulIdentifier","src":"2027:4:1"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"2069:9:1","nodeType":"YulIdentifier","src":"2069:9:1"},{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"2094:6:1","nodeType":"YulIdentifier","src":"2094:6:1"}],"functionName":{"name":"iszero","nativeSrc":"2087:6:1","nodeType":"YulIdentifier","src":"2087:6:1"},"nativeSrc":"2087:14:1","nodeType":"YulFunctionCall","src":"2087:14:1"}],"functionName":{"name":"iszero","nativeSrc":"2080:6:1","nodeType":"YulIdentifier","src":"2080:6:1"},"nativeSrc":"2080:22:1","nodeType":"YulFunctionCall","src":"2080:22:1"}],"functionName":{"name":"mstore","nativeSrc":"2062:6:1","nodeType":"YulIdentifier","src":"2062:6:1"},"nativeSrc":"2062:41:1","nodeType":"YulFunctionCall","src":"2062:41:1"},"nativeSrc":"2062:41:1","nodeType":"YulExpressionStatement","src":"2062:41:1"}]},"name":"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed","nativeSrc":"1922:187:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"1986:9:1","nodeType":"YulTypedName","src":"1986:9:1","type":""},{"name":"value0","nativeSrc":"1997:6:1","nodeType":"YulTypedName","src":"1997:6:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"2008:4:1","nodeType":"YulTypedName","src":"2008:4:1","type":""}],"src":"1922:187:1"},{"body":{"nativeSrc":"2184:156:1","nodeType":"YulBlock","src":"2184:156:1","statements":[{"body":{"nativeSrc":"2230:16:1","nodeType":"YulBlock","src":"2230:16:1","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2239:1:1","nodeType":"YulLiteral","src":"2239:1:1","type":"","value":"0"},{"kind":"number","nativeSrc":"2242:1:1","nodeType":"YulLiteral","src":"2242:1:1","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2232:6:1","nodeType":"YulIdentifier","src":"2232:6:1"},"nativeSrc":"2232:12:1","nodeType":"YulFunctionCall","src":"2232:12:1"},"nativeSrc":"2232:12:1","nodeType":"YulExpressionStatement","src":"2232:12:1"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"2205:7:1","nodeType":"YulIdentifier","src":"2205:7:1"},{"name":"headStart","nativeSrc":"2214:9:1","nodeType":"YulIdentifier","src":"2214:9:1"}],"functionName":{"name":"sub","nativeSrc":"2201:3:1","nodeType":"YulIdentifier","src":"2201:3:1"},"nativeSrc":"2201:23:1","nodeType":"YulFunctionCall","src":"2201:23:1"},{"kind":"number","nativeSrc":"2226:2:1","nodeType":"YulLiteral","src":"2226:2:1","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"2197:3:1","nodeType":"YulIdentifier","src":"2197:3:1"},"nativeSrc":"2197:32:1","nodeType":"YulFunctionCall","src":"2197:32:1"},"nativeSrc":"2194:52:1","nodeType":"YulIf","src":"2194:52:1"},{"nativeSrc":"2255:14:1","nodeType":"YulVariableDeclaration","src":"2255:14:1","value":{"kind":"number","nativeSrc":"2268:1:1","nodeType":"YulLiteral","src":"2268:1:1","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"2259:5:1","nodeType":"YulTypedName","src":"2259:5:1","type":""}]},{"nativeSrc":"2278:32:1","nodeType":"YulAssignment","src":"2278:32:1","value":{"arguments":[{"name":"headStart","nativeSrc":"2300:9:1","nodeType":"YulIdentifier","src":"2300:9:1"}],"functionName":{"name":"calldataload","nativeSrc":"2287:12:1","nodeType":"YulIdentifier","src":"2287:12:1"},"nativeSrc":"2287:23:1","nodeType":"YulFunctionCall","src":"2287:23:1"},"variableNames":[{"name":"value","nativeSrc":"2278:5:1","nodeType":"YulIdentifier","src":"2278:5:1"}]},{"nativeSrc":"2319:15:1","nodeType":"YulAssignment","src":"2319:15:1","value":{"name":"value","nativeSrc":"2329:5:1","nodeType":"YulIdentifier","src":"2329:5:1"},"variableNames":[{"name":"value0","nativeSrc":"2319:6:1","nodeType":"YulIdentifier","src":"2319:6:1"}]}]},"name":"abi_decode_tuple_t_uint256","nativeSrc":"2114:226:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"2150:9:1","nodeType":"YulTypedName","src":"2150:9:1","type":""},{"name":"dataEnd","nativeSrc":"2161:7:1","nodeType":"YulTypedName","src":"2161:7:1","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"2173:6:1","nodeType":"YulTypedName","src":"2173:6:1","type":""}],"src":"2114:226:1"},{"body":{"nativeSrc":"2446:102:1","nodeType":"YulBlock","src":"2446:102:1","statements":[{"nativeSrc":"2456:26:1","nodeType":"YulAssignment","src":"2456:26:1","value":{"arguments":[{"name":"headStart","nativeSrc":"2468:9:1","nodeType":"YulIdentifier","src":"2468:9:1"},{"kind":"number","nativeSrc":"2479:2:1","nodeType":"YulLiteral","src":"2479:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"2464:3:1","nodeType":"YulIdentifier","src":"2464:3:1"},"nativeSrc":"2464:18:1","nodeType":"YulFunctionCall","src":"2464:18:1"},"variableNames":[{"name":"tail","nativeSrc":"2456:4:1","nodeType":"YulIdentifier","src":"2456:4:1"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"2498:9:1","nodeType":"YulIdentifier","src":"2498:9:1"},{"arguments":[{"name":"value0","nativeSrc":"2513:6:1","nodeType":"YulIdentifier","src":"2513:6:1"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"2529:3:1","nodeType":"YulLiteral","src":"2529:3:1","type":"","value":"160"},{"kind":"number","nativeSrc":"2534:1:1","nodeType":"YulLiteral","src":"2534:1:1","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"2525:3:1","nodeType":"YulIdentifier","src":"2525:3:1"},"nativeSrc":"2525:11:1","nodeType":"YulFunctionCall","src":"2525:11:1"},{"kind":"number","nativeSrc":"2538:1:1","nodeType":"YulLiteral","src":"2538:1:1","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"2521:3:1","nodeType":"YulIdentifier","src":"2521:3:1"},"nativeSrc":"2521:19:1","nodeType":"YulFunctionCall","src":"2521:19:1"}],"functionName":{"name":"and","nativeSrc":"2509:3:1","nodeType":"YulIdentifier","src":"2509:3:1"},"nativeSrc":"2509:32:1","nodeType":"YulFunctionCall","src":"2509:32:1"}],"functionName":{"name":"mstore","nativeSrc":"2491:6:1","nodeType":"YulIdentifier","src":"2491:6:1"},"nativeSrc":"2491:51:1","nodeType":"YulFunctionCall","src":"2491:51:1"},"nativeSrc":"2491:51:1","nodeType":"YulExpressionStatement","src":"2491:51:1"}]},"name":"abi_encode_tuple_t_address__to_t_address__fromStack_reversed","nativeSrc":"2345:203:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"2415:9:1","nodeType":"YulTypedName","src":"2415:9:1","type":""},{"name":"value0","nativeSrc":"2426:6:1","nodeType":"YulTypedName","src":"2426:6:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"2437:4:1","nodeType":"YulTypedName","src":"2437:4:1","type":""}],"src":"2345:203:1"},{"body":{"nativeSrc":"2657:270:1","nodeType":"YulBlock","src":"2657:270:1","statements":[{"body":{"nativeSrc":"2703:16:1","nodeType":"YulBlock","src":"2703:16:1","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"2712:1:1","nodeType":"YulLiteral","src":"2712:1:1","type":"","value":"0"},{"kind":"number","nativeSrc":"2715:1:1","nodeType":"YulLiteral","src":"2715:1:1","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"2705:6:1","nodeType":"YulIdentifier","src":"2705:6:1"},"nativeSrc":"2705:12:1","nodeType":"YulFunctionCall","src":"2705:12:1"},"nativeSrc":"2705:12:1","nodeType":"YulExpressionStatement","src":"2705:12:1"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"2678:7:1","nodeType":"YulIdentifier","src":"2678:7:1"},{"name":"headStart","nativeSrc":"2687:9:1","nodeType":"YulIdentifier","src":"2687:9:1"}],"functionName":{"name":"sub","nativeSrc":"2674:3:1","nodeType":"YulIdentifier","src":"2674:3:1"},"nativeSrc":"2674:23:1","nodeType":"YulFunctionCall","src":"2674:23:1"},{"kind":"number","nativeSrc":"2699:2:1","nodeType":"YulLiteral","src":"2699:2:1","type":"","value":"96"}],"functionName":{"name":"slt","nativeSrc":"2670:3:1","nodeType":"YulIdentifier","src":"2670:3:1"},"nativeSrc":"2670:32:1","nodeType":"YulFunctionCall","src":"2670:32:1"},"nativeSrc":"2667:52:1","nodeType":"YulIf","src":"2667:52:1"},{"nativeSrc":"2728:39:1","nodeType":"YulAssignment","src":"2728:39:1","value":{"arguments":[{"name":"headStart","nativeSrc":"2757:9:1","nodeType":"YulIdentifier","src":"2757:9:1"}],"functionName":{"name":"abi_decode_address","nativeSrc":"2738:18:1","nodeType":"YulIdentifier","src":"2738:18:1"},"nativeSrc":"2738:29:1","nodeType":"YulFunctionCall","src":"2738:29:1"},"variableNames":[{"name":"value0","nativeSrc":"2728:6:1","nodeType":"YulIdentifier","src":"2728:6:1"}]},{"nativeSrc":"2776:48:1","nodeType":"YulAssignment","src":"2776:48:1","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"2809:9:1","nodeType":"YulIdentifier","src":"2809:9:1"},{"kind":"number","nativeSrc":"2820:2:1","nodeType":"YulLiteral","src":"2820:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"2805:3:1","nodeType":"YulIdentifier","src":"2805:3:1"},"nativeSrc":"2805:18:1","nodeType":"YulFunctionCall","src":"2805:18:1"}],"functionName":{"name":"abi_decode_address","nativeSrc":"2786:18:1","nodeType":"YulIdentifier","src":"2786:18:1"},"nativeSrc":"2786:38:1","nodeType":"YulFunctionCall","src":"2786:38:1"},"variableNames":[{"name":"value1","nativeSrc":"2776:6:1","nodeType":"YulIdentifier","src":"2776:6:1"}]},{"nativeSrc":"2833:14:1","nodeType":"YulVariableDeclaration","src":"2833:14:1","value":{"kind":"number","nativeSrc":"2846:1:1","nodeType":"YulLiteral","src":"2846:1:1","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"2837:5:1","nodeType":"YulTypedName","src":"2837:5:1","type":""}]},{"nativeSrc":"2856:41:1","nodeType":"YulAssignment","src":"2856:41:1","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"2882:9:1","nodeType":"YulIdentifier","src":"2882:9:1"},{"kind":"number","nativeSrc":"2893:2:1","nodeType":"YulLiteral","src":"2893:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"2878:3:1","nodeType":"YulIdentifier","src":"2878:3:1"},"nativeSrc":"2878:18:1","nodeType":"YulFunctionCall","src":"2878:18:1"}],"functionName":{"name":"calldataload","nativeSrc":"2865:12:1","nodeType":"YulIdentifier","src":"2865:12:1"},"nativeSrc":"2865:32:1","nodeType":"YulFunctionCall","src":"2865:32:1"},"variableNames":[{"name":"value","nativeSrc":"2856:5:1","nodeType":"YulIdentifier","src":"2856:5:1"}]},{"nativeSrc":"2906:15:1","nodeType":"YulAssignment","src":"2906:15:1","value":{"name":"value","nativeSrc":"2916:5:1","nodeType":"YulIdentifier","src":"2916:5:1"},"variableNames":[{"name":"value2","nativeSrc":"2906:6:1","nodeType":"YulIdentifier","src":"2906:6:1"}]}]},"name":"abi_decode_tuple_t_addresst_addresst_uint256","nativeSrc":"2553:374:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"2607:9:1","nodeType":"YulTypedName","src":"2607:9:1","type":""},{"name":"dataEnd","nativeSrc":"2618:7:1","nodeType":"YulTypedName","src":"2618:7:1","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"2630:6:1","nodeType":"YulTypedName","src":"2630:6:1","type":""},{"name":"value1","nativeSrc":"2638:6:1","nodeType":"YulTypedName","src":"2638:6:1","type":""},{"name":"value2","nativeSrc":"2646:6:1","nodeType":"YulTypedName","src":"2646:6:1","type":""}],"src":"2553:374:1"},{"body":{"nativeSrc":"3033:76:1","nodeType":"YulBlock","src":"3033:76:1","statements":[{"nativeSrc":"3043:26:1","nodeType":"YulAssignment","src":"3043:26:1","value":{"arguments":[{"name":"headStart","nativeSrc":"3055:9:1","nodeType":"YulIdentifier","src":"3055:9:1"},{"kind":"number","nativeSrc":"3066:2:1","nodeType":"YulLiteral","src":"3066:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"3051:3:1","nodeType":"YulIdentifier","src":"3051:3:1"},"nativeSrc":"3051:18:1","nodeType":"YulFunctionCall","src":"3051:18:1"},"variableNames":[{"name":"tail","nativeSrc":"3043:4:1","nodeType":"YulIdentifier","src":"3043:4:1"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"3085:9:1","nodeType":"YulIdentifier","src":"3085:9:1"},{"name":"value0","nativeSrc":"3096:6:1","nodeType":"YulIdentifier","src":"3096:6:1"}],"functionName":{"name":"mstore","nativeSrc":"3078:6:1","nodeType":"YulIdentifier","src":"3078:6:1"},"nativeSrc":"3078:25:1","nodeType":"YulFunctionCall","src":"3078:25:1"},"nativeSrc":"3078:25:1","nodeType":"YulExpressionStatement","src":"3078:25:1"}]},"name":"abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed","nativeSrc":"2932:177:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"3002:9:1","nodeType":"YulTypedName","src":"3002:9:1","type":""},{"name":"value0","nativeSrc":"3013:6:1","nodeType":"YulTypedName","src":"3013:6:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"3024:4:1","nodeType":"YulTypedName","src":"3024:4:1","type":""}],"src":"2932:177:1"},{"body":{"nativeSrc":"3228:102:1","nodeType":"YulBlock","src":"3228:102:1","statements":[{"nativeSrc":"3238:26:1","nodeType":"YulAssignment","src":"3238:26:1","value":{"arguments":[{"name":"headStart","nativeSrc":"3250:9:1","nodeType":"YulIdentifier","src":"3250:9:1"},{"kind":"number","nativeSrc":"3261:2:1","nodeType":"YulLiteral","src":"3261:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"3246:3:1","nodeType":"YulIdentifier","src":"3246:3:1"},"nativeSrc":"3246:18:1","nodeType":"YulFunctionCall","src":"3246:18:1"},"variableNames":[{"name":"tail","nativeSrc":"3238:4:1","nodeType":"YulIdentifier","src":"3238:4:1"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"3280:9:1","nodeType":"YulIdentifier","src":"3280:9:1"},{"arguments":[{"name":"value0","nativeSrc":"3295:6:1","nodeType":"YulIdentifier","src":"3295:6:1"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"3311:3:1","nodeType":"YulLiteral","src":"3311:3:1","type":"","value":"160"},{"kind":"number","nativeSrc":"3316:1:1","nodeType":"YulLiteral","src":"3316:1:1","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"3307:3:1","nodeType":"YulIdentifier","src":"3307:3:1"},"nativeSrc":"3307:11:1","nodeType":"YulFunctionCall","src":"3307:11:1"},{"kind":"number","nativeSrc":"3320:1:1","nodeType":"YulLiteral","src":"3320:1:1","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"3303:3:1","nodeType":"YulIdentifier","src":"3303:3:1"},"nativeSrc":"3303:19:1","nodeType":"YulFunctionCall","src":"3303:19:1"}],"functionName":{"name":"and","nativeSrc":"3291:3:1","nodeType":"YulIdentifier","src":"3291:3:1"},"nativeSrc":"3291:32:1","nodeType":"YulFunctionCall","src":"3291:32:1"}],"functionName":{"name":"mstore","nativeSrc":"3273:6:1","nodeType":"YulIdentifier","src":"3273:6:1"},"nativeSrc":"3273:51:1","nodeType":"YulFunctionCall","src":"3273:51:1"},"nativeSrc":"3273:51:1","nodeType":"YulExpressionStatement","src":"3273:51:1"}]},"name":"abi_encode_tuple_t_contract$_IERC20_$77__to_t_address__fromStack_reversed","nativeSrc":"3114:216:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"3197:9:1","nodeType":"YulTypedName","src":"3197:9:1","type":""},{"name":"value0","nativeSrc":"3208:6:1","nodeType":"YulTypedName","src":"3208:6:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"3219:4:1","nodeType":"YulTypedName","src":"3219:4:1","type":""}],"src":"3114:216:1"},{"body":{"nativeSrc":"3432:87:1","nodeType":"YulBlock","src":"3432:87:1","statements":[{"nativeSrc":"3442:26:1","nodeType":"YulAssignment","src":"3442:26:1","value":{"arguments":[{"name":"headStart","nativeSrc":"3454:9:1","nodeType":"YulIdentifier","src":"3454:9:1"},{"kind":"number","nativeSrc":"3465:2:1","nodeType":"YulLiteral","src":"3465:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"3450:3:1","nodeType":"YulIdentifier","src":"3450:3:1"},"nativeSrc":"3450:18:1","nodeType":"YulFunctionCall","src":"3450:18:1"},"variableNames":[{"name":"tail","nativeSrc":"3442:4:1","nodeType":"YulIdentifier","src":"3442:4:1"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"3484:9:1","nodeType":"YulIdentifier","src":"3484:9:1"},{"arguments":[{"name":"value0","nativeSrc":"3499:6:1","nodeType":"YulIdentifier","src":"3499:6:1"},{"kind":"number","nativeSrc":"3507:4:1","nodeType":"YulLiteral","src":"3507:4:1","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"3495:3:1","nodeType":"YulIdentifier","src":"3495:3:1"},"nativeSrc":"3495:17:1","nodeType":"YulFunctionCall","src":"3495:17:1"}],"functionName":{"name":"mstore","nativeSrc":"3477:6:1","nodeType":"YulIdentifier","src":"3477:6:1"},"nativeSrc":"3477:36:1","nodeType":"YulFunctionCall","src":"3477:36:1"},"nativeSrc":"3477:36:1","nodeType":"YulExpressionStatement","src":"3477:36:1"}]},"name":"abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed","nativeSrc":"3335:184:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"3401:9:1","nodeType":"YulTypedName","src":"3401:9:1","type":""},{"name":"value0","nativeSrc":"3412:6:1","nodeType":"YulTypedName","src":"3412:6:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"3423:4:1","nodeType":"YulTypedName","src":"3423:4:1","type":""}],"src":"3335:184:1"},{"body":{"nativeSrc":"3611:173:1","nodeType":"YulBlock","src":"3611:173:1","statements":[{"body":{"nativeSrc":"3657:16:1","nodeType":"YulBlock","src":"3657:16:1","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"3666:1:1","nodeType":"YulLiteral","src":"3666:1:1","type":"","value":"0"},{"kind":"number","nativeSrc":"3669:1:1","nodeType":"YulLiteral","src":"3669:1:1","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"3659:6:1","nodeType":"YulIdentifier","src":"3659:6:1"},"nativeSrc":"3659:12:1","nodeType":"YulFunctionCall","src":"3659:12:1"},"nativeSrc":"3659:12:1","nodeType":"YulExpressionStatement","src":"3659:12:1"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"3632:7:1","nodeType":"YulIdentifier","src":"3632:7:1"},{"name":"headStart","nativeSrc":"3641:9:1","nodeType":"YulIdentifier","src":"3641:9:1"}],"functionName":{"name":"sub","nativeSrc":"3628:3:1","nodeType":"YulIdentifier","src":"3628:3:1"},"nativeSrc":"3628:23:1","nodeType":"YulFunctionCall","src":"3628:23:1"},{"kind":"number","nativeSrc":"3653:2:1","nodeType":"YulLiteral","src":"3653:2:1","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"3624:3:1","nodeType":"YulIdentifier","src":"3624:3:1"},"nativeSrc":"3624:32:1","nodeType":"YulFunctionCall","src":"3624:32:1"},"nativeSrc":"3621:52:1","nodeType":"YulIf","src":"3621:52:1"},{"nativeSrc":"3682:39:1","nodeType":"YulAssignment","src":"3682:39:1","value":{"arguments":[{"name":"headStart","nativeSrc":"3711:9:1","nodeType":"YulIdentifier","src":"3711:9:1"}],"functionName":{"name":"abi_decode_address","nativeSrc":"3692:18:1","nodeType":"YulIdentifier","src":"3692:18:1"},"nativeSrc":"3692:29:1","nodeType":"YulFunctionCall","src":"3692:29:1"},"variableNames":[{"name":"value0","nativeSrc":"3682:6:1","nodeType":"YulIdentifier","src":"3682:6:1"}]},{"nativeSrc":"3730:48:1","nodeType":"YulAssignment","src":"3730:48:1","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"3763:9:1","nodeType":"YulIdentifier","src":"3763:9:1"},{"kind":"number","nativeSrc":"3774:2:1","nodeType":"YulLiteral","src":"3774:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"3759:3:1","nodeType":"YulIdentifier","src":"3759:3:1"},"nativeSrc":"3759:18:1","nodeType":"YulFunctionCall","src":"3759:18:1"}],"functionName":{"name":"abi_decode_address","nativeSrc":"3740:18:1","nodeType":"YulIdentifier","src":"3740:18:1"},"nativeSrc":"3740:38:1","nodeType":"YulFunctionCall","src":"3740:38:1"},"variableNames":[{"name":"value1","nativeSrc":"3730:6:1","nodeType":"YulIdentifier","src":"3730:6:1"}]}]},"name":"abi_decode_tuple_t_addresst_address","nativeSrc":"3524:260:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"3569:9:1","nodeType":"YulTypedName","src":"3569:9:1","type":""},{"name":"dataEnd","nativeSrc":"3580:7:1","nodeType":"YulTypedName","src":"3580:7:1","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"3592:6:1","nodeType":"YulTypedName","src":"3592:6:1","type":""},{"name":"value1","nativeSrc":"3600:6:1","nodeType":"YulTypedName","src":"3600:6:1","type":""}],"src":"3524:260:1"},{"body":{"nativeSrc":"3890:102:1","nodeType":"YulBlock","src":"3890:102:1","statements":[{"nativeSrc":"3900:26:1","nodeType":"YulAssignment","src":"3900:26:1","value":{"arguments":[{"name":"headStart","nativeSrc":"3912:9:1","nodeType":"YulIdentifier","src":"3912:9:1"},{"kind":"number","nativeSrc":"3923:2:1","nodeType":"YulLiteral","src":"3923:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"3908:3:1","nodeType":"YulIdentifier","src":"3908:3:1"},"nativeSrc":"3908:18:1","nodeType":"YulFunctionCall","src":"3908:18:1"},"variableNames":[{"name":"tail","nativeSrc":"3900:4:1","nodeType":"YulIdentifier","src":"3900:4:1"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"3942:9:1","nodeType":"YulIdentifier","src":"3942:9:1"},{"arguments":[{"name":"value0","nativeSrc":"3957:6:1","nodeType":"YulIdentifier","src":"3957:6:1"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"3973:3:1","nodeType":"YulLiteral","src":"3973:3:1","type":"","value":"216"},{"kind":"number","nativeSrc":"3978:1:1","nodeType":"YulLiteral","src":"3978:1:1","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"3969:3:1","nodeType":"YulIdentifier","src":"3969:3:1"},"nativeSrc":"3969:11:1","nodeType":"YulFunctionCall","src":"3969:11:1"},{"kind":"number","nativeSrc":"3982:1:1","nodeType":"YulLiteral","src":"3982:1:1","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"3965:3:1","nodeType":"YulIdentifier","src":"3965:3:1"},"nativeSrc":"3965:19:1","nodeType":"YulFunctionCall","src":"3965:19:1"}],"functionName":{"name":"and","nativeSrc":"3953:3:1","nodeType":"YulIdentifier","src":"3953:3:1"},"nativeSrc":"3953:32:1","nodeType":"YulFunctionCall","src":"3953:32:1"}],"functionName":{"name":"mstore","nativeSrc":"3935:6:1","nodeType":"YulIdentifier","src":"3935:6:1"},"nativeSrc":"3935:51:1","nodeType":"YulFunctionCall","src":"3935:51:1"},"nativeSrc":"3935:51:1","nodeType":"YulExpressionStatement","src":"3935:51:1"}]},"name":"abi_encode_tuple_t_uint216__to_t_uint216__fromStack_reversed","nativeSrc":"3789:203:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"3859:9:1","nodeType":"YulTypedName","src":"3859:9:1","type":""},{"name":"value0","nativeSrc":"3870:6:1","nodeType":"YulTypedName","src":"3870:6:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"3881:4:1","nodeType":"YulTypedName","src":"3881:4:1","type":""}],"src":"3789:203:1"},{"body":{"nativeSrc":"4126:201:1","nodeType":"YulBlock","src":"4126:201:1","statements":[{"nativeSrc":"4136:26:1","nodeType":"YulAssignment","src":"4136:26:1","value":{"arguments":[{"name":"headStart","nativeSrc":"4148:9:1","nodeType":"YulIdentifier","src":"4148:9:1"},{"kind":"number","nativeSrc":"4159:2:1","nodeType":"YulLiteral","src":"4159:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"4144:3:1","nodeType":"YulIdentifier","src":"4144:3:1"},"nativeSrc":"4144:18:1","nodeType":"YulFunctionCall","src":"4144:18:1"},"variableNames":[{"name":"tail","nativeSrc":"4136:4:1","nodeType":"YulIdentifier","src":"4136:4:1"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"4178:9:1","nodeType":"YulIdentifier","src":"4178:9:1"},{"arguments":[{"name":"value0","nativeSrc":"4193:6:1","nodeType":"YulIdentifier","src":"4193:6:1"},{"kind":"number","nativeSrc":"4201:34:1","nodeType":"YulLiteral","src":"4201:34:1","type":"","value":"0xffffffffffffffffffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"4189:3:1","nodeType":"YulIdentifier","src":"4189:3:1"},"nativeSrc":"4189:47:1","nodeType":"YulFunctionCall","src":"4189:47:1"}],"functionName":{"name":"mstore","nativeSrc":"4171:6:1","nodeType":"YulIdentifier","src":"4171:6:1"},"nativeSrc":"4171:66:1","nodeType":"YulFunctionCall","src":"4171:66:1"},"nativeSrc":"4171:66:1","nodeType":"YulExpressionStatement","src":"4171:66:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4257:9:1","nodeType":"YulIdentifier","src":"4257:9:1"},{"kind":"number","nativeSrc":"4268:2:1","nodeType":"YulLiteral","src":"4268:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"4253:3:1","nodeType":"YulIdentifier","src":"4253:3:1"},"nativeSrc":"4253:18:1","nodeType":"YulFunctionCall","src":"4253:18:1"},{"arguments":[{"name":"value1","nativeSrc":"4277:6:1","nodeType":"YulIdentifier","src":"4277:6:1"},{"kind":"number","nativeSrc":"4285:34:1","nodeType":"YulLiteral","src":"4285:34:1","type":"","value":"0xffffffffffffffffffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"4273:3:1","nodeType":"YulIdentifier","src":"4273:3:1"},"nativeSrc":"4273:47:1","nodeType":"YulFunctionCall","src":"4273:47:1"}],"functionName":{"name":"mstore","nativeSrc":"4246:6:1","nodeType":"YulIdentifier","src":"4246:6:1"},"nativeSrc":"4246:75:1","nodeType":"YulFunctionCall","src":"4246:75:1"},"nativeSrc":"4246:75:1","nodeType":"YulExpressionStatement","src":"4246:75:1"}]},"name":"abi_encode_tuple_t_uint128_t_uint128__to_t_uint128_t_uint128__fromStack_reversed","nativeSrc":"3997:330:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"4087:9:1","nodeType":"YulTypedName","src":"4087:9:1","type":""},{"name":"value1","nativeSrc":"4098:6:1","nodeType":"YulTypedName","src":"4098:6:1","type":""},{"name":"value0","nativeSrc":"4106:6:1","nodeType":"YulTypedName","src":"4106:6:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"4117:4:1","nodeType":"YulTypedName","src":"4117:4:1","type":""}],"src":"3997:330:1"},{"body":{"nativeSrc":"4393:94:1","nodeType":"YulBlock","src":"4393:94:1","statements":[{"nativeSrc":"4403:29:1","nodeType":"YulAssignment","src":"4403:29:1","value":{"arguments":[{"name":"offset","nativeSrc":"4425:6:1","nodeType":"YulIdentifier","src":"4425:6:1"}],"functionName":{"name":"calldataload","nativeSrc":"4412:12:1","nodeType":"YulIdentifier","src":"4412:12:1"},"nativeSrc":"4412:20:1","nodeType":"YulFunctionCall","src":"4412:20:1"},"variableNames":[{"name":"value","nativeSrc":"4403:5:1","nodeType":"YulIdentifier","src":"4403:5:1"}]},{"body":{"nativeSrc":"4465:16:1","nodeType":"YulBlock","src":"4465:16:1","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4474:1:1","nodeType":"YulLiteral","src":"4474:1:1","type":"","value":"0"},{"kind":"number","nativeSrc":"4477:1:1","nodeType":"YulLiteral","src":"4477:1:1","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"4467:6:1","nodeType":"YulIdentifier","src":"4467:6:1"},"nativeSrc":"4467:12:1","nodeType":"YulFunctionCall","src":"4467:12:1"},"nativeSrc":"4467:12:1","nodeType":"YulExpressionStatement","src":"4467:12:1"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"4454:5:1","nodeType":"YulIdentifier","src":"4454:5:1"},{"kind":"number","nativeSrc":"4461:1:1","nodeType":"YulLiteral","src":"4461:1:1","type":"","value":"2"}],"functionName":{"name":"lt","nativeSrc":"4451:2:1","nodeType":"YulIdentifier","src":"4451:2:1"},"nativeSrc":"4451:12:1","nodeType":"YulFunctionCall","src":"4451:12:1"}],"functionName":{"name":"iszero","nativeSrc":"4444:6:1","nodeType":"YulIdentifier","src":"4444:6:1"},"nativeSrc":"4444:20:1","nodeType":"YulFunctionCall","src":"4444:20:1"},"nativeSrc":"4441:40:1","nodeType":"YulIf","src":"4441:40:1"}]},"name":"abi_decode_enum_DelegationType","nativeSrc":"4332:155:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"4372:6:1","nodeType":"YulTypedName","src":"4372:6:1","type":""}],"returnVariables":[{"name":"value","nativeSrc":"4383:5:1","nodeType":"YulTypedName","src":"4383:5:1","type":""}],"src":"4332:155:1"},{"body":{"nativeSrc":"4598:185:1","nodeType":"YulBlock","src":"4598:185:1","statements":[{"body":{"nativeSrc":"4644:16:1","nodeType":"YulBlock","src":"4644:16:1","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"4653:1:1","nodeType":"YulLiteral","src":"4653:1:1","type":"","value":"0"},{"kind":"number","nativeSrc":"4656:1:1","nodeType":"YulLiteral","src":"4656:1:1","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"4646:6:1","nodeType":"YulIdentifier","src":"4646:6:1"},"nativeSrc":"4646:12:1","nodeType":"YulFunctionCall","src":"4646:12:1"},"nativeSrc":"4646:12:1","nodeType":"YulExpressionStatement","src":"4646:12:1"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"4619:7:1","nodeType":"YulIdentifier","src":"4619:7:1"},{"name":"headStart","nativeSrc":"4628:9:1","nodeType":"YulIdentifier","src":"4628:9:1"}],"functionName":{"name":"sub","nativeSrc":"4615:3:1","nodeType":"YulIdentifier","src":"4615:3:1"},"nativeSrc":"4615:23:1","nodeType":"YulFunctionCall","src":"4615:23:1"},{"kind":"number","nativeSrc":"4640:2:1","nodeType":"YulLiteral","src":"4640:2:1","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"4611:3:1","nodeType":"YulIdentifier","src":"4611:3:1"},"nativeSrc":"4611:32:1","nodeType":"YulFunctionCall","src":"4611:32:1"},"nativeSrc":"4608:52:1","nodeType":"YulIf","src":"4608:52:1"},{"nativeSrc":"4669:39:1","nodeType":"YulAssignment","src":"4669:39:1","value":{"arguments":[{"name":"headStart","nativeSrc":"4698:9:1","nodeType":"YulIdentifier","src":"4698:9:1"}],"functionName":{"name":"abi_decode_address","nativeSrc":"4679:18:1","nodeType":"YulIdentifier","src":"4679:18:1"},"nativeSrc":"4679:29:1","nodeType":"YulFunctionCall","src":"4679:29:1"},"variableNames":[{"name":"value0","nativeSrc":"4669:6:1","nodeType":"YulIdentifier","src":"4669:6:1"}]},{"nativeSrc":"4717:60:1","nodeType":"YulAssignment","src":"4717:60:1","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"4762:9:1","nodeType":"YulIdentifier","src":"4762:9:1"},{"kind":"number","nativeSrc":"4773:2:1","nodeType":"YulLiteral","src":"4773:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"4758:3:1","nodeType":"YulIdentifier","src":"4758:3:1"},"nativeSrc":"4758:18:1","nodeType":"YulFunctionCall","src":"4758:18:1"}],"functionName":{"name":"abi_decode_enum_DelegationType","nativeSrc":"4727:30:1","nodeType":"YulIdentifier","src":"4727:30:1"},"nativeSrc":"4727:50:1","nodeType":"YulFunctionCall","src":"4727:50:1"},"variableNames":[{"name":"value1","nativeSrc":"4717:6:1","nodeType":"YulIdentifier","src":"4717:6:1"}]}]},"name":"abi_decode_tuple_t_addresst_enum$_DelegationType_$1088","nativeSrc":"4492:291:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"4556:9:1","nodeType":"YulTypedName","src":"4556:9:1","type":""},{"name":"dataEnd","nativeSrc":"4567:7:1","nodeType":"YulTypedName","src":"4567:7:1","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"4579:6:1","nodeType":"YulTypedName","src":"4579:6:1","type":""},{"name":"value1","nativeSrc":"4587:6:1","nodeType":"YulTypedName","src":"4587:6:1","type":""}],"src":"4492:291:1"},{"body":{"nativeSrc":"4907:99:1","nodeType":"YulBlock","src":"4907:99:1","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"4924:9:1","nodeType":"YulIdentifier","src":"4924:9:1"},{"kind":"number","nativeSrc":"4935:2:1","nodeType":"YulLiteral","src":"4935:2:1","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"4917:6:1","nodeType":"YulIdentifier","src":"4917:6:1"},"nativeSrc":"4917:21:1","nodeType":"YulFunctionCall","src":"4917:21:1"},"nativeSrc":"4917:21:1","nodeType":"YulExpressionStatement","src":"4917:21:1"},{"nativeSrc":"4947:53:1","nodeType":"YulAssignment","src":"4947:53:1","value":{"arguments":[{"name":"value0","nativeSrc":"4973:6:1","nodeType":"YulIdentifier","src":"4973:6:1"},{"arguments":[{"name":"headStart","nativeSrc":"4985:9:1","nodeType":"YulIdentifier","src":"4985:9:1"},{"kind":"number","nativeSrc":"4996:2:1","nodeType":"YulLiteral","src":"4996:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"4981:3:1","nodeType":"YulIdentifier","src":"4981:3:1"},"nativeSrc":"4981:18:1","nodeType":"YulFunctionCall","src":"4981:18:1"}],"functionName":{"name":"abi_encode_string","nativeSrc":"4955:17:1","nodeType":"YulIdentifier","src":"4955:17:1"},"nativeSrc":"4955:45:1","nodeType":"YulFunctionCall","src":"4955:45:1"},"variableNames":[{"name":"tail","nativeSrc":"4947:4:1","nodeType":"YulIdentifier","src":"4947:4:1"}]}]},"name":"abi_encode_tuple_t_bytes_memory_ptr__to_t_bytes_memory_ptr__fromStack_reversed","nativeSrc":"4788:218:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"4876:9:1","nodeType":"YulTypedName","src":"4876:9:1","type":""},{"name":"value0","nativeSrc":"4887:6:1","nodeType":"YulTypedName","src":"4887:6:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"4898:4:1","nodeType":"YulTypedName","src":"4898:4:1","type":""}],"src":"4788:218:1"},{"body":{"nativeSrc":"5132:374:1","nodeType":"YulBlock","src":"5132:374:1","statements":[{"body":{"nativeSrc":"5179:16:1","nodeType":"YulBlock","src":"5179:16:1","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"5188:1:1","nodeType":"YulLiteral","src":"5188:1:1","type":"","value":"0"},{"kind":"number","nativeSrc":"5191:1:1","nodeType":"YulLiteral","src":"5191:1:1","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"5181:6:1","nodeType":"YulIdentifier","src":"5181:6:1"},"nativeSrc":"5181:12:1","nodeType":"YulFunctionCall","src":"5181:12:1"},"nativeSrc":"5181:12:1","nodeType":"YulExpressionStatement","src":"5181:12:1"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"5153:7:1","nodeType":"YulIdentifier","src":"5153:7:1"},{"name":"headStart","nativeSrc":"5162:9:1","nodeType":"YulIdentifier","src":"5162:9:1"}],"functionName":{"name":"sub","nativeSrc":"5149:3:1","nodeType":"YulIdentifier","src":"5149:3:1"},"nativeSrc":"5149:23:1","nodeType":"YulFunctionCall","src":"5149:23:1"},{"kind":"number","nativeSrc":"5174:3:1","nodeType":"YulLiteral","src":"5174:3:1","type":"","value":"128"}],"functionName":{"name":"slt","nativeSrc":"5145:3:1","nodeType":"YulIdentifier","src":"5145:3:1"},"nativeSrc":"5145:33:1","nodeType":"YulFunctionCall","src":"5145:33:1"},"nativeSrc":"5142:53:1","nodeType":"YulIf","src":"5142:53:1"},{"nativeSrc":"5204:39:1","nodeType":"YulAssignment","src":"5204:39:1","value":{"arguments":[{"name":"headStart","nativeSrc":"5233:9:1","nodeType":"YulIdentifier","src":"5233:9:1"}],"functionName":{"name":"abi_decode_address","nativeSrc":"5214:18:1","nodeType":"YulIdentifier","src":"5214:18:1"},"nativeSrc":"5214:29:1","nodeType":"YulFunctionCall","src":"5214:29:1"},"variableNames":[{"name":"value0","nativeSrc":"5204:6:1","nodeType":"YulIdentifier","src":"5204:6:1"}]},{"nativeSrc":"5252:48:1","nodeType":"YulAssignment","src":"5252:48:1","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5285:9:1","nodeType":"YulIdentifier","src":"5285:9:1"},{"kind":"number","nativeSrc":"5296:2:1","nodeType":"YulLiteral","src":"5296:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"5281:3:1","nodeType":"YulIdentifier","src":"5281:3:1"},"nativeSrc":"5281:18:1","nodeType":"YulFunctionCall","src":"5281:18:1"}],"functionName":{"name":"abi_decode_address","nativeSrc":"5262:18:1","nodeType":"YulIdentifier","src":"5262:18:1"},"nativeSrc":"5262:38:1","nodeType":"YulFunctionCall","src":"5262:38:1"},"variableNames":[{"name":"value1","nativeSrc":"5252:6:1","nodeType":"YulIdentifier","src":"5252:6:1"}]},{"nativeSrc":"5309:14:1","nodeType":"YulVariableDeclaration","src":"5309:14:1","value":{"kind":"number","nativeSrc":"5322:1:1","nodeType":"YulLiteral","src":"5322:1:1","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"5313:5:1","nodeType":"YulTypedName","src":"5313:5:1","type":""}]},{"nativeSrc":"5332:41:1","nodeType":"YulAssignment","src":"5332:41:1","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5358:9:1","nodeType":"YulIdentifier","src":"5358:9:1"},{"kind":"number","nativeSrc":"5369:2:1","nodeType":"YulLiteral","src":"5369:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"5354:3:1","nodeType":"YulIdentifier","src":"5354:3:1"},"nativeSrc":"5354:18:1","nodeType":"YulFunctionCall","src":"5354:18:1"}],"functionName":{"name":"calldataload","nativeSrc":"5341:12:1","nodeType":"YulIdentifier","src":"5341:12:1"},"nativeSrc":"5341:32:1","nodeType":"YulFunctionCall","src":"5341:32:1"},"variableNames":[{"name":"value","nativeSrc":"5332:5:1","nodeType":"YulIdentifier","src":"5332:5:1"}]},{"nativeSrc":"5382:15:1","nodeType":"YulAssignment","src":"5382:15:1","value":{"name":"value","nativeSrc":"5392:5:1","nodeType":"YulIdentifier","src":"5392:5:1"},"variableNames":[{"name":"value2","nativeSrc":"5382:6:1","nodeType":"YulIdentifier","src":"5382:6:1"}]},{"nativeSrc":"5406:16:1","nodeType":"YulVariableDeclaration","src":"5406:16:1","value":{"kind":"number","nativeSrc":"5421:1:1","nodeType":"YulLiteral","src":"5421:1:1","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"5410:7:1","nodeType":"YulTypedName","src":"5410:7:1","type":""}]},{"nativeSrc":"5431:43:1","nodeType":"YulAssignment","src":"5431:43:1","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5459:9:1","nodeType":"YulIdentifier","src":"5459:9:1"},{"kind":"number","nativeSrc":"5470:2:1","nodeType":"YulLiteral","src":"5470:2:1","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"5455:3:1","nodeType":"YulIdentifier","src":"5455:3:1"},"nativeSrc":"5455:18:1","nodeType":"YulFunctionCall","src":"5455:18:1"}],"functionName":{"name":"calldataload","nativeSrc":"5442:12:1","nodeType":"YulIdentifier","src":"5442:12:1"},"nativeSrc":"5442:32:1","nodeType":"YulFunctionCall","src":"5442:32:1"},"variableNames":[{"name":"value_1","nativeSrc":"5431:7:1","nodeType":"YulIdentifier","src":"5431:7:1"}]},{"nativeSrc":"5483:17:1","nodeType":"YulAssignment","src":"5483:17:1","value":{"name":"value_1","nativeSrc":"5493:7:1","nodeType":"YulIdentifier","src":"5493:7:1"},"variableNames":[{"name":"value3","nativeSrc":"5483:6:1","nodeType":"YulIdentifier","src":"5483:6:1"}]}]},"name":"abi_decode_tuple_t_addresst_addresst_uint256t_uint256","nativeSrc":"5011:495:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"5074:9:1","nodeType":"YulTypedName","src":"5074:9:1","type":""},{"name":"dataEnd","nativeSrc":"5085:7:1","nodeType":"YulTypedName","src":"5085:7:1","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"5097:6:1","nodeType":"YulTypedName","src":"5097:6:1","type":""},{"name":"value1","nativeSrc":"5105:6:1","nodeType":"YulTypedName","src":"5105:6:1","type":""},{"name":"value2","nativeSrc":"5113:6:1","nodeType":"YulTypedName","src":"5113:6:1","type":""},{"name":"value3","nativeSrc":"5121:6:1","nodeType":"YulTypedName","src":"5121:6:1","type":""}],"src":"5011:495:1"},{"body":{"nativeSrc":"5649:432:1","nodeType":"YulBlock","src":"5649:432:1","statements":[{"body":{"nativeSrc":"5696:16:1","nodeType":"YulBlock","src":"5696:16:1","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"5705:1:1","nodeType":"YulLiteral","src":"5705:1:1","type":"","value":"0"},{"kind":"number","nativeSrc":"5708:1:1","nodeType":"YulLiteral","src":"5708:1:1","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"5698:6:1","nodeType":"YulIdentifier","src":"5698:6:1"},"nativeSrc":"5698:12:1","nodeType":"YulFunctionCall","src":"5698:12:1"},"nativeSrc":"5698:12:1","nodeType":"YulExpressionStatement","src":"5698:12:1"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"5670:7:1","nodeType":"YulIdentifier","src":"5670:7:1"},{"name":"headStart","nativeSrc":"5679:9:1","nodeType":"YulIdentifier","src":"5679:9:1"}],"functionName":{"name":"sub","nativeSrc":"5666:3:1","nodeType":"YulIdentifier","src":"5666:3:1"},"nativeSrc":"5666:23:1","nodeType":"YulFunctionCall","src":"5666:23:1"},{"kind":"number","nativeSrc":"5691:3:1","nodeType":"YulLiteral","src":"5691:3:1","type":"","value":"160"}],"functionName":{"name":"slt","nativeSrc":"5662:3:1","nodeType":"YulIdentifier","src":"5662:3:1"},"nativeSrc":"5662:33:1","nodeType":"YulFunctionCall","src":"5662:33:1"},"nativeSrc":"5659:53:1","nodeType":"YulIf","src":"5659:53:1"},{"nativeSrc":"5721:39:1","nodeType":"YulAssignment","src":"5721:39:1","value":{"arguments":[{"name":"headStart","nativeSrc":"5750:9:1","nodeType":"YulIdentifier","src":"5750:9:1"}],"functionName":{"name":"abi_decode_address","nativeSrc":"5731:18:1","nodeType":"YulIdentifier","src":"5731:18:1"},"nativeSrc":"5731:29:1","nodeType":"YulFunctionCall","src":"5731:29:1"},"variableNames":[{"name":"value0","nativeSrc":"5721:6:1","nodeType":"YulIdentifier","src":"5721:6:1"}]},{"nativeSrc":"5769:48:1","nodeType":"YulAssignment","src":"5769:48:1","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5802:9:1","nodeType":"YulIdentifier","src":"5802:9:1"},{"kind":"number","nativeSrc":"5813:2:1","nodeType":"YulLiteral","src":"5813:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"5798:3:1","nodeType":"YulIdentifier","src":"5798:3:1"},"nativeSrc":"5798:18:1","nodeType":"YulFunctionCall","src":"5798:18:1"}],"functionName":{"name":"abi_decode_address","nativeSrc":"5779:18:1","nodeType":"YulIdentifier","src":"5779:18:1"},"nativeSrc":"5779:38:1","nodeType":"YulFunctionCall","src":"5779:38:1"},"variableNames":[{"name":"value1","nativeSrc":"5769:6:1","nodeType":"YulIdentifier","src":"5769:6:1"}]},{"nativeSrc":"5826:48:1","nodeType":"YulAssignment","src":"5826:48:1","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5859:9:1","nodeType":"YulIdentifier","src":"5859:9:1"},{"kind":"number","nativeSrc":"5870:2:1","nodeType":"YulLiteral","src":"5870:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"5855:3:1","nodeType":"YulIdentifier","src":"5855:3:1"},"nativeSrc":"5855:18:1","nodeType":"YulFunctionCall","src":"5855:18:1"}],"functionName":{"name":"abi_decode_address","nativeSrc":"5836:18:1","nodeType":"YulIdentifier","src":"5836:18:1"},"nativeSrc":"5836:38:1","nodeType":"YulFunctionCall","src":"5836:38:1"},"variableNames":[{"name":"value2","nativeSrc":"5826:6:1","nodeType":"YulIdentifier","src":"5826:6:1"}]},{"nativeSrc":"5883:14:1","nodeType":"YulVariableDeclaration","src":"5883:14:1","value":{"kind":"number","nativeSrc":"5896:1:1","nodeType":"YulLiteral","src":"5896:1:1","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"5887:5:1","nodeType":"YulTypedName","src":"5887:5:1","type":""}]},{"nativeSrc":"5906:41:1","nodeType":"YulAssignment","src":"5906:41:1","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"5932:9:1","nodeType":"YulIdentifier","src":"5932:9:1"},{"kind":"number","nativeSrc":"5943:2:1","nodeType":"YulLiteral","src":"5943:2:1","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"5928:3:1","nodeType":"YulIdentifier","src":"5928:3:1"},"nativeSrc":"5928:18:1","nodeType":"YulFunctionCall","src":"5928:18:1"}],"functionName":{"name":"calldataload","nativeSrc":"5915:12:1","nodeType":"YulIdentifier","src":"5915:12:1"},"nativeSrc":"5915:32:1","nodeType":"YulFunctionCall","src":"5915:32:1"},"variableNames":[{"name":"value","nativeSrc":"5906:5:1","nodeType":"YulIdentifier","src":"5906:5:1"}]},{"nativeSrc":"5956:15:1","nodeType":"YulAssignment","src":"5956:15:1","value":{"name":"value","nativeSrc":"5966:5:1","nodeType":"YulIdentifier","src":"5966:5:1"},"variableNames":[{"name":"value3","nativeSrc":"5956:6:1","nodeType":"YulIdentifier","src":"5956:6:1"}]},{"nativeSrc":"5980:16:1","nodeType":"YulVariableDeclaration","src":"5980:16:1","value":{"kind":"number","nativeSrc":"5995:1:1","nodeType":"YulLiteral","src":"5995:1:1","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"5984:7:1","nodeType":"YulTypedName","src":"5984:7:1","type":""}]},{"nativeSrc":"6005:44:1","nodeType":"YulAssignment","src":"6005:44:1","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"6033:9:1","nodeType":"YulIdentifier","src":"6033:9:1"},{"kind":"number","nativeSrc":"6044:3:1","nodeType":"YulLiteral","src":"6044:3:1","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"6029:3:1","nodeType":"YulIdentifier","src":"6029:3:1"},"nativeSrc":"6029:19:1","nodeType":"YulFunctionCall","src":"6029:19:1"}],"functionName":{"name":"calldataload","nativeSrc":"6016:12:1","nodeType":"YulIdentifier","src":"6016:12:1"},"nativeSrc":"6016:33:1","nodeType":"YulFunctionCall","src":"6016:33:1"},"variableNames":[{"name":"value_1","nativeSrc":"6005:7:1","nodeType":"YulIdentifier","src":"6005:7:1"}]},{"nativeSrc":"6058:17:1","nodeType":"YulAssignment","src":"6058:17:1","value":{"name":"value_1","nativeSrc":"6068:7:1","nodeType":"YulIdentifier","src":"6068:7:1"},"variableNames":[{"name":"value4","nativeSrc":"6058:6:1","nodeType":"YulIdentifier","src":"6058:6:1"}]}]},"name":"abi_decode_tuple_t_addresst_addresst_addresst_uint256t_uint256","nativeSrc":"5511:570:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"5583:9:1","nodeType":"YulTypedName","src":"5583:9:1","type":""},{"name":"dataEnd","nativeSrc":"5594:7:1","nodeType":"YulTypedName","src":"5594:7:1","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"5606:6:1","nodeType":"YulTypedName","src":"5606:6:1","type":""},{"name":"value1","nativeSrc":"5614:6:1","nodeType":"YulTypedName","src":"5614:6:1","type":""},{"name":"value2","nativeSrc":"5622:6:1","nodeType":"YulTypedName","src":"5622:6:1","type":""},{"name":"value3","nativeSrc":"5630:6:1","nodeType":"YulTypedName","src":"5630:6:1","type":""},{"name":"value4","nativeSrc":"5638:6:1","nodeType":"YulTypedName","src":"5638:6:1","type":""}],"src":"5511:570:1"},{"body":{"nativeSrc":"6173:213:1","nodeType":"YulBlock","src":"6173:213:1","statements":[{"body":{"nativeSrc":"6219:16:1","nodeType":"YulBlock","src":"6219:16:1","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"6228:1:1","nodeType":"YulLiteral","src":"6228:1:1","type":"","value":"0"},{"kind":"number","nativeSrc":"6231:1:1","nodeType":"YulLiteral","src":"6231:1:1","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"6221:6:1","nodeType":"YulIdentifier","src":"6221:6:1"},"nativeSrc":"6221:12:1","nodeType":"YulFunctionCall","src":"6221:12:1"},"nativeSrc":"6221:12:1","nodeType":"YulExpressionStatement","src":"6221:12:1"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"6194:7:1","nodeType":"YulIdentifier","src":"6194:7:1"},{"name":"headStart","nativeSrc":"6203:9:1","nodeType":"YulIdentifier","src":"6203:9:1"}],"functionName":{"name":"sub","nativeSrc":"6190:3:1","nodeType":"YulIdentifier","src":"6190:3:1"},"nativeSrc":"6190:23:1","nodeType":"YulFunctionCall","src":"6190:23:1"},{"kind":"number","nativeSrc":"6215:2:1","nodeType":"YulLiteral","src":"6215:2:1","type":"","value":"64"}],"functionName":{"name":"slt","nativeSrc":"6186:3:1","nodeType":"YulIdentifier","src":"6186:3:1"},"nativeSrc":"6186:32:1","nodeType":"YulFunctionCall","src":"6186:32:1"},"nativeSrc":"6183:52:1","nodeType":"YulIf","src":"6183:52:1"},{"nativeSrc":"6244:14:1","nodeType":"YulVariableDeclaration","src":"6244:14:1","value":{"kind":"number","nativeSrc":"6257:1:1","nodeType":"YulLiteral","src":"6257:1:1","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"6248:5:1","nodeType":"YulTypedName","src":"6248:5:1","type":""}]},{"nativeSrc":"6267:32:1","nodeType":"YulAssignment","src":"6267:32:1","value":{"arguments":[{"name":"headStart","nativeSrc":"6289:9:1","nodeType":"YulIdentifier","src":"6289:9:1"}],"functionName":{"name":"calldataload","nativeSrc":"6276:12:1","nodeType":"YulIdentifier","src":"6276:12:1"},"nativeSrc":"6276:23:1","nodeType":"YulFunctionCall","src":"6276:23:1"},"variableNames":[{"name":"value","nativeSrc":"6267:5:1","nodeType":"YulIdentifier","src":"6267:5:1"}]},{"nativeSrc":"6308:15:1","nodeType":"YulAssignment","src":"6308:15:1","value":{"name":"value","nativeSrc":"6318:5:1","nodeType":"YulIdentifier","src":"6318:5:1"},"variableNames":[{"name":"value0","nativeSrc":"6308:6:1","nodeType":"YulIdentifier","src":"6308:6:1"}]},{"nativeSrc":"6332:48:1","nodeType":"YulAssignment","src":"6332:48:1","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"6365:9:1","nodeType":"YulIdentifier","src":"6365:9:1"},{"kind":"number","nativeSrc":"6376:2:1","nodeType":"YulLiteral","src":"6376:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"6361:3:1","nodeType":"YulIdentifier","src":"6361:3:1"},"nativeSrc":"6361:18:1","nodeType":"YulFunctionCall","src":"6361:18:1"}],"functionName":{"name":"abi_decode_address","nativeSrc":"6342:18:1","nodeType":"YulIdentifier","src":"6342:18:1"},"nativeSrc":"6342:38:1","nodeType":"YulFunctionCall","src":"6342:38:1"},"variableNames":[{"name":"value1","nativeSrc":"6332:6:1","nodeType":"YulIdentifier","src":"6332:6:1"}]}]},"name":"abi_decode_tuple_t_uint256t_address","nativeSrc":"6086:300:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"6131:9:1","nodeType":"YulTypedName","src":"6131:9:1","type":""},{"name":"dataEnd","nativeSrc":"6142:7:1","nodeType":"YulTypedName","src":"6142:7:1","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"6154:6:1","nodeType":"YulTypedName","src":"6154:6:1","type":""},{"name":"value1","nativeSrc":"6162:6:1","nodeType":"YulTypedName","src":"6162:6:1","type":""}],"src":"6086:300:1"},{"body":{"nativeSrc":"6423:95:1","nodeType":"YulBlock","src":"6423:95:1","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"6440:1:1","nodeType":"YulLiteral","src":"6440:1:1","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"6447:3:1","nodeType":"YulLiteral","src":"6447:3:1","type":"","value":"224"},{"kind":"number","nativeSrc":"6452:10:1","nodeType":"YulLiteral","src":"6452:10:1","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"6443:3:1","nodeType":"YulIdentifier","src":"6443:3:1"},"nativeSrc":"6443:20:1","nodeType":"YulFunctionCall","src":"6443:20:1"}],"functionName":{"name":"mstore","nativeSrc":"6433:6:1","nodeType":"YulIdentifier","src":"6433:6:1"},"nativeSrc":"6433:31:1","nodeType":"YulFunctionCall","src":"6433:31:1"},"nativeSrc":"6433:31:1","nodeType":"YulExpressionStatement","src":"6433:31:1"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"6480:1:1","nodeType":"YulLiteral","src":"6480:1:1","type":"","value":"4"},{"kind":"number","nativeSrc":"6483:4:1","nodeType":"YulLiteral","src":"6483:4:1","type":"","value":"0x41"}],"functionName":{"name":"mstore","nativeSrc":"6473:6:1","nodeType":"YulIdentifier","src":"6473:6:1"},"nativeSrc":"6473:15:1","nodeType":"YulFunctionCall","src":"6473:15:1"},"nativeSrc":"6473:15:1","nodeType":"YulExpressionStatement","src":"6473:15:1"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"6504:1:1","nodeType":"YulLiteral","src":"6504:1:1","type":"","value":"0"},{"kind":"number","nativeSrc":"6507:4:1","nodeType":"YulLiteral","src":"6507:4:1","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"6497:6:1","nodeType":"YulIdentifier","src":"6497:6:1"},"nativeSrc":"6497:15:1","nodeType":"YulFunctionCall","src":"6497:15:1"},"nativeSrc":"6497:15:1","nodeType":"YulExpressionStatement","src":"6497:15:1"}]},"name":"panic_error_0x41","nativeSrc":"6391:127:1","nodeType":"YulFunctionDefinition","src":"6391:127:1"},{"body":{"nativeSrc":"6569:207:1","nodeType":"YulBlock","src":"6569:207:1","statements":[{"nativeSrc":"6579:19:1","nodeType":"YulAssignment","src":"6579:19:1","value":{"arguments":[{"kind":"number","nativeSrc":"6595:2:1","nodeType":"YulLiteral","src":"6595:2:1","type":"","value":"64"}],"functionName":{"name":"mload","nativeSrc":"6589:5:1","nodeType":"YulIdentifier","src":"6589:5:1"},"nativeSrc":"6589:9:1","nodeType":"YulFunctionCall","src":"6589:9:1"},"variableNames":[{"name":"memPtr","nativeSrc":"6579:6:1","nodeType":"YulIdentifier","src":"6579:6:1"}]},{"nativeSrc":"6607:35:1","nodeType":"YulVariableDeclaration","src":"6607:35:1","value":{"arguments":[{"name":"memPtr","nativeSrc":"6629:6:1","nodeType":"YulIdentifier","src":"6629:6:1"},{"kind":"number","nativeSrc":"6637:4:1","nodeType":"YulLiteral","src":"6637:4:1","type":"","value":"0x60"}],"functionName":{"name":"add","nativeSrc":"6625:3:1","nodeType":"YulIdentifier","src":"6625:3:1"},"nativeSrc":"6625:17:1","nodeType":"YulFunctionCall","src":"6625:17:1"},"variables":[{"name":"newFreePtr","nativeSrc":"6611:10:1","nodeType":"YulTypedName","src":"6611:10:1","type":""}]},{"body":{"nativeSrc":"6717:22:1","nodeType":"YulBlock","src":"6717:22:1","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"6719:16:1","nodeType":"YulIdentifier","src":"6719:16:1"},"nativeSrc":"6719:18:1","nodeType":"YulFunctionCall","src":"6719:18:1"},"nativeSrc":"6719:18:1","nodeType":"YulExpressionStatement","src":"6719:18:1"}]},"condition":{"arguments":[{"arguments":[{"name":"newFreePtr","nativeSrc":"6660:10:1","nodeType":"YulIdentifier","src":"6660:10:1"},{"kind":"number","nativeSrc":"6672:18:1","nodeType":"YulLiteral","src":"6672:18:1","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"6657:2:1","nodeType":"YulIdentifier","src":"6657:2:1"},"nativeSrc":"6657:34:1","nodeType":"YulFunctionCall","src":"6657:34:1"},{"arguments":[{"name":"newFreePtr","nativeSrc":"6696:10:1","nodeType":"YulIdentifier","src":"6696:10:1"},{"name":"memPtr","nativeSrc":"6708:6:1","nodeType":"YulIdentifier","src":"6708:6:1"}],"functionName":{"name":"lt","nativeSrc":"6693:2:1","nodeType":"YulIdentifier","src":"6693:2:1"},"nativeSrc":"6693:22:1","nodeType":"YulFunctionCall","src":"6693:22:1"}],"functionName":{"name":"or","nativeSrc":"6654:2:1","nodeType":"YulIdentifier","src":"6654:2:1"},"nativeSrc":"6654:62:1","nodeType":"YulFunctionCall","src":"6654:62:1"},"nativeSrc":"6651:88:1","nodeType":"YulIf","src":"6651:88:1"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"6755:2:1","nodeType":"YulLiteral","src":"6755:2:1","type":"","value":"64"},{"name":"newFreePtr","nativeSrc":"6759:10:1","nodeType":"YulIdentifier","src":"6759:10:1"}],"functionName":{"name":"mstore","nativeSrc":"6748:6:1","nodeType":"YulIdentifier","src":"6748:6:1"},"nativeSrc":"6748:22:1","nodeType":"YulFunctionCall","src":"6748:22:1"},"nativeSrc":"6748:22:1","nodeType":"YulExpressionStatement","src":"6748:22:1"}]},"name":"allocate_memory_4360","nativeSrc":"6523:253:1","nodeType":"YulFunctionDefinition","returnVariables":[{"name":"memPtr","nativeSrc":"6558:6:1","nodeType":"YulTypedName","src":"6558:6:1","type":""}],"src":"6523:253:1"},{"body":{"nativeSrc":"6826:230:1","nodeType":"YulBlock","src":"6826:230:1","statements":[{"nativeSrc":"6836:19:1","nodeType":"YulAssignment","src":"6836:19:1","value":{"arguments":[{"kind":"number","nativeSrc":"6852:2:1","nodeType":"YulLiteral","src":"6852:2:1","type":"","value":"64"}],"functionName":{"name":"mload","nativeSrc":"6846:5:1","nodeType":"YulIdentifier","src":"6846:5:1"},"nativeSrc":"6846:9:1","nodeType":"YulFunctionCall","src":"6846:9:1"},"variableNames":[{"name":"memPtr","nativeSrc":"6836:6:1","nodeType":"YulIdentifier","src":"6836:6:1"}]},{"nativeSrc":"6864:58:1","nodeType":"YulVariableDeclaration","src":"6864:58:1","value":{"arguments":[{"name":"memPtr","nativeSrc":"6886:6:1","nodeType":"YulIdentifier","src":"6886:6:1"},{"arguments":[{"arguments":[{"name":"size","nativeSrc":"6902:4:1","nodeType":"YulIdentifier","src":"6902:4:1"},{"kind":"number","nativeSrc":"6908:2:1","nodeType":"YulLiteral","src":"6908:2:1","type":"","value":"31"}],"functionName":{"name":"add","nativeSrc":"6898:3:1","nodeType":"YulIdentifier","src":"6898:3:1"},"nativeSrc":"6898:13:1","nodeType":"YulFunctionCall","src":"6898:13:1"},{"arguments":[{"kind":"number","nativeSrc":"6917:2:1","nodeType":"YulLiteral","src":"6917:2:1","type":"","value":"31"}],"functionName":{"name":"not","nativeSrc":"6913:3:1","nodeType":"YulIdentifier","src":"6913:3:1"},"nativeSrc":"6913:7:1","nodeType":"YulFunctionCall","src":"6913:7:1"}],"functionName":{"name":"and","nativeSrc":"6894:3:1","nodeType":"YulIdentifier","src":"6894:3:1"},"nativeSrc":"6894:27:1","nodeType":"YulFunctionCall","src":"6894:27:1"}],"functionName":{"name":"add","nativeSrc":"6882:3:1","nodeType":"YulIdentifier","src":"6882:3:1"},"nativeSrc":"6882:40:1","nodeType":"YulFunctionCall","src":"6882:40:1"},"variables":[{"name":"newFreePtr","nativeSrc":"6868:10:1","nodeType":"YulTypedName","src":"6868:10:1","type":""}]},{"body":{"nativeSrc":"6997:22:1","nodeType":"YulBlock","src":"6997:22:1","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"6999:16:1","nodeType":"YulIdentifier","src":"6999:16:1"},"nativeSrc":"6999:18:1","nodeType":"YulFunctionCall","src":"6999:18:1"},"nativeSrc":"6999:18:1","nodeType":"YulExpressionStatement","src":"6999:18:1"}]},"condition":{"arguments":[{"arguments":[{"name":"newFreePtr","nativeSrc":"6940:10:1","nodeType":"YulIdentifier","src":"6940:10:1"},{"kind":"number","nativeSrc":"6952:18:1","nodeType":"YulLiteral","src":"6952:18:1","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"6937:2:1","nodeType":"YulIdentifier","src":"6937:2:1"},"nativeSrc":"6937:34:1","nodeType":"YulFunctionCall","src":"6937:34:1"},{"arguments":[{"name":"newFreePtr","nativeSrc":"6976:10:1","nodeType":"YulIdentifier","src":"6976:10:1"},{"name":"memPtr","nativeSrc":"6988:6:1","nodeType":"YulIdentifier","src":"6988:6:1"}],"functionName":{"name":"lt","nativeSrc":"6973:2:1","nodeType":"YulIdentifier","src":"6973:2:1"},"nativeSrc":"6973:22:1","nodeType":"YulFunctionCall","src":"6973:22:1"}],"functionName":{"name":"or","nativeSrc":"6934:2:1","nodeType":"YulIdentifier","src":"6934:2:1"},"nativeSrc":"6934:62:1","nodeType":"YulFunctionCall","src":"6934:62:1"},"nativeSrc":"6931:88:1","nodeType":"YulIf","src":"6931:88:1"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"7035:2:1","nodeType":"YulLiteral","src":"7035:2:1","type":"","value":"64"},{"name":"newFreePtr","nativeSrc":"7039:10:1","nodeType":"YulIdentifier","src":"7039:10:1"}],"functionName":{"name":"mstore","nativeSrc":"7028:6:1","nodeType":"YulIdentifier","src":"7028:6:1"},"nativeSrc":"7028:22:1","nodeType":"YulFunctionCall","src":"7028:22:1"},"nativeSrc":"7028:22:1","nodeType":"YulExpressionStatement","src":"7028:22:1"}]},"name":"allocate_memory","nativeSrc":"6781:275:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"size","nativeSrc":"6806:4:1","nodeType":"YulTypedName","src":"6806:4:1","type":""}],"returnVariables":[{"name":"memPtr","nativeSrc":"6815:6:1","nodeType":"YulTypedName","src":"6815:6:1","type":""}],"src":"6781:275:1"},{"body":{"nativeSrc":"7189:1308:1","nodeType":"YulBlock","src":"7189:1308:1","statements":[{"body":{"nativeSrc":"7235:16:1","nodeType":"YulBlock","src":"7235:16:1","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"7244:1:1","nodeType":"YulLiteral","src":"7244:1:1","type":"","value":"0"},{"kind":"number","nativeSrc":"7247:1:1","nodeType":"YulLiteral","src":"7247:1:1","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"7237:6:1","nodeType":"YulIdentifier","src":"7237:6:1"},"nativeSrc":"7237:12:1","nodeType":"YulFunctionCall","src":"7237:12:1"},"nativeSrc":"7237:12:1","nodeType":"YulExpressionStatement","src":"7237:12:1"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"7210:7:1","nodeType":"YulIdentifier","src":"7210:7:1"},{"name":"headStart","nativeSrc":"7219:9:1","nodeType":"YulIdentifier","src":"7219:9:1"}],"functionName":{"name":"sub","nativeSrc":"7206:3:1","nodeType":"YulIdentifier","src":"7206:3:1"},"nativeSrc":"7206:23:1","nodeType":"YulFunctionCall","src":"7206:23:1"},{"kind":"number","nativeSrc":"7231:2:1","nodeType":"YulLiteral","src":"7231:2:1","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"7202:3:1","nodeType":"YulIdentifier","src":"7202:3:1"},"nativeSrc":"7202:32:1","nodeType":"YulFunctionCall","src":"7202:32:1"},"nativeSrc":"7199:52:1","nodeType":"YulIf","src":"7199:52:1"},{"nativeSrc":"7260:37:1","nodeType":"YulVariableDeclaration","src":"7260:37:1","value":{"arguments":[{"name":"headStart","nativeSrc":"7287:9:1","nodeType":"YulIdentifier","src":"7287:9:1"}],"functionName":{"name":"calldataload","nativeSrc":"7274:12:1","nodeType":"YulIdentifier","src":"7274:12:1"},"nativeSrc":"7274:23:1","nodeType":"YulFunctionCall","src":"7274:23:1"},"variables":[{"name":"offset","nativeSrc":"7264:6:1","nodeType":"YulTypedName","src":"7264:6:1","type":""}]},{"body":{"nativeSrc":"7340:16:1","nodeType":"YulBlock","src":"7340:16:1","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"7349:1:1","nodeType":"YulLiteral","src":"7349:1:1","type":"","value":"0"},{"kind":"number","nativeSrc":"7352:1:1","nodeType":"YulLiteral","src":"7352:1:1","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"7342:6:1","nodeType":"YulIdentifier","src":"7342:6:1"},"nativeSrc":"7342:12:1","nodeType":"YulFunctionCall","src":"7342:12:1"},"nativeSrc":"7342:12:1","nodeType":"YulExpressionStatement","src":"7342:12:1"}]},"condition":{"arguments":[{"name":"offset","nativeSrc":"7312:6:1","nodeType":"YulIdentifier","src":"7312:6:1"},{"kind":"number","nativeSrc":"7320:18:1","nodeType":"YulLiteral","src":"7320:18:1","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"7309:2:1","nodeType":"YulIdentifier","src":"7309:2:1"},"nativeSrc":"7309:30:1","nodeType":"YulFunctionCall","src":"7309:30:1"},"nativeSrc":"7306:50:1","nodeType":"YulIf","src":"7306:50:1"},{"nativeSrc":"7365:32:1","nodeType":"YulVariableDeclaration","src":"7365:32:1","value":{"arguments":[{"name":"headStart","nativeSrc":"7379:9:1","nodeType":"YulIdentifier","src":"7379:9:1"},{"name":"offset","nativeSrc":"7390:6:1","nodeType":"YulIdentifier","src":"7390:6:1"}],"functionName":{"name":"add","nativeSrc":"7375:3:1","nodeType":"YulIdentifier","src":"7375:3:1"},"nativeSrc":"7375:22:1","nodeType":"YulFunctionCall","src":"7375:22:1"},"variables":[{"name":"_1","nativeSrc":"7369:2:1","nodeType":"YulTypedName","src":"7369:2:1","type":""}]},{"body":{"nativeSrc":"7445:16:1","nodeType":"YulBlock","src":"7445:16:1","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"7454:1:1","nodeType":"YulLiteral","src":"7454:1:1","type":"","value":"0"},{"kind":"number","nativeSrc":"7457:1:1","nodeType":"YulLiteral","src":"7457:1:1","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"7447:6:1","nodeType":"YulIdentifier","src":"7447:6:1"},"nativeSrc":"7447:12:1","nodeType":"YulFunctionCall","src":"7447:12:1"},"nativeSrc":"7447:12:1","nodeType":"YulExpressionStatement","src":"7447:12:1"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"7424:2:1","nodeType":"YulIdentifier","src":"7424:2:1"},{"kind":"number","nativeSrc":"7428:4:1","nodeType":"YulLiteral","src":"7428:4:1","type":"","value":"0x1f"}],"functionName":{"name":"add","nativeSrc":"7420:3:1","nodeType":"YulIdentifier","src":"7420:3:1"},"nativeSrc":"7420:13:1","nodeType":"YulFunctionCall","src":"7420:13:1"},{"name":"dataEnd","nativeSrc":"7435:7:1","nodeType":"YulIdentifier","src":"7435:7:1"}],"functionName":{"name":"slt","nativeSrc":"7416:3:1","nodeType":"YulIdentifier","src":"7416:3:1"},"nativeSrc":"7416:27:1","nodeType":"YulFunctionCall","src":"7416:27:1"}],"functionName":{"name":"iszero","nativeSrc":"7409:6:1","nodeType":"YulIdentifier","src":"7409:6:1"},"nativeSrc":"7409:35:1","nodeType":"YulFunctionCall","src":"7409:35:1"},"nativeSrc":"7406:55:1","nodeType":"YulIf","src":"7406:55:1"},{"nativeSrc":"7470:30:1","nodeType":"YulVariableDeclaration","src":"7470:30:1","value":{"arguments":[{"name":"_1","nativeSrc":"7497:2:1","nodeType":"YulIdentifier","src":"7497:2:1"}],"functionName":{"name":"calldataload","nativeSrc":"7484:12:1","nodeType":"YulIdentifier","src":"7484:12:1"},"nativeSrc":"7484:16:1","nodeType":"YulFunctionCall","src":"7484:16:1"},"variables":[{"name":"length","nativeSrc":"7474:6:1","nodeType":"YulTypedName","src":"7474:6:1","type":""}]},{"body":{"nativeSrc":"7543:22:1","nodeType":"YulBlock","src":"7543:22:1","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x41","nativeSrc":"7545:16:1","nodeType":"YulIdentifier","src":"7545:16:1"},"nativeSrc":"7545:18:1","nodeType":"YulFunctionCall","src":"7545:18:1"},"nativeSrc":"7545:18:1","nodeType":"YulExpressionStatement","src":"7545:18:1"}]},"condition":{"arguments":[{"name":"length","nativeSrc":"7515:6:1","nodeType":"YulIdentifier","src":"7515:6:1"},{"kind":"number","nativeSrc":"7523:18:1","nodeType":"YulLiteral","src":"7523:18:1","type":"","value":"0xffffffffffffffff"}],"functionName":{"name":"gt","nativeSrc":"7512:2:1","nodeType":"YulIdentifier","src":"7512:2:1"},"nativeSrc":"7512:30:1","nodeType":"YulFunctionCall","src":"7512:30:1"},"nativeSrc":"7509:56:1","nodeType":"YulIf","src":"7509:56:1"},{"nativeSrc":"7574:51:1","nodeType":"YulVariableDeclaration","src":"7574:51:1","value":{"arguments":[{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"7609:1:1","nodeType":"YulLiteral","src":"7609:1:1","type":"","value":"5"},{"name":"length","nativeSrc":"7612:6:1","nodeType":"YulIdentifier","src":"7612:6:1"}],"functionName":{"name":"shl","nativeSrc":"7605:3:1","nodeType":"YulIdentifier","src":"7605:3:1"},"nativeSrc":"7605:14:1","nodeType":"YulFunctionCall","src":"7605:14:1"},{"kind":"number","nativeSrc":"7621:2:1","nodeType":"YulLiteral","src":"7621:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"7601:3:1","nodeType":"YulIdentifier","src":"7601:3:1"},"nativeSrc":"7601:23:1","nodeType":"YulFunctionCall","src":"7601:23:1"}],"functionName":{"name":"allocate_memory","nativeSrc":"7585:15:1","nodeType":"YulIdentifier","src":"7585:15:1"},"nativeSrc":"7585:40:1","nodeType":"YulFunctionCall","src":"7585:40:1"},"variables":[{"name":"dst","nativeSrc":"7578:3:1","nodeType":"YulTypedName","src":"7578:3:1","type":""}]},{"nativeSrc":"7634:16:1","nodeType":"YulVariableDeclaration","src":"7634:16:1","value":{"name":"dst","nativeSrc":"7647:3:1","nodeType":"YulIdentifier","src":"7647:3:1"},"variables":[{"name":"array","nativeSrc":"7638:5:1","nodeType":"YulTypedName","src":"7638:5:1","type":""}]},{"expression":{"arguments":[{"name":"dst","nativeSrc":"7666:3:1","nodeType":"YulIdentifier","src":"7666:3:1"},{"name":"length","nativeSrc":"7671:6:1","nodeType":"YulIdentifier","src":"7671:6:1"}],"functionName":{"name":"mstore","nativeSrc":"7659:6:1","nodeType":"YulIdentifier","src":"7659:6:1"},"nativeSrc":"7659:19:1","nodeType":"YulFunctionCall","src":"7659:19:1"},"nativeSrc":"7659:19:1","nodeType":"YulExpressionStatement","src":"7659:19:1"},{"nativeSrc":"7687:19:1","nodeType":"YulAssignment","src":"7687:19:1","value":{"arguments":[{"name":"dst","nativeSrc":"7698:3:1","nodeType":"YulIdentifier","src":"7698:3:1"},{"kind":"number","nativeSrc":"7703:2:1","nodeType":"YulLiteral","src":"7703:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"7694:3:1","nodeType":"YulIdentifier","src":"7694:3:1"},"nativeSrc":"7694:12:1","nodeType":"YulFunctionCall","src":"7694:12:1"},"variableNames":[{"name":"dst","nativeSrc":"7687:3:1","nodeType":"YulIdentifier","src":"7687:3:1"}]},{"nativeSrc":"7715:49:1","nodeType":"YulVariableDeclaration","src":"7715:49:1","value":{"arguments":[{"arguments":[{"name":"_1","nativeSrc":"7737:2:1","nodeType":"YulIdentifier","src":"7737:2:1"},{"arguments":[{"name":"length","nativeSrc":"7745:6:1","nodeType":"YulIdentifier","src":"7745:6:1"},{"kind":"number","nativeSrc":"7753:4:1","nodeType":"YulLiteral","src":"7753:4:1","type":"","value":"0x60"}],"functionName":{"name":"mul","nativeSrc":"7741:3:1","nodeType":"YulIdentifier","src":"7741:3:1"},"nativeSrc":"7741:17:1","nodeType":"YulFunctionCall","src":"7741:17:1"}],"functionName":{"name":"add","nativeSrc":"7733:3:1","nodeType":"YulIdentifier","src":"7733:3:1"},"nativeSrc":"7733:26:1","nodeType":"YulFunctionCall","src":"7733:26:1"},{"kind":"number","nativeSrc":"7761:2:1","nodeType":"YulLiteral","src":"7761:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"7729:3:1","nodeType":"YulIdentifier","src":"7729:3:1"},"nativeSrc":"7729:35:1","nodeType":"YulFunctionCall","src":"7729:35:1"},"variables":[{"name":"srcEnd","nativeSrc":"7719:6:1","nodeType":"YulTypedName","src":"7719:6:1","type":""}]},{"body":{"nativeSrc":"7796:16:1","nodeType":"YulBlock","src":"7796:16:1","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"7805:1:1","nodeType":"YulLiteral","src":"7805:1:1","type":"","value":"0"},{"kind":"number","nativeSrc":"7808:1:1","nodeType":"YulLiteral","src":"7808:1:1","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"7798:6:1","nodeType":"YulIdentifier","src":"7798:6:1"},"nativeSrc":"7798:12:1","nodeType":"YulFunctionCall","src":"7798:12:1"},"nativeSrc":"7798:12:1","nodeType":"YulExpressionStatement","src":"7798:12:1"}]},"condition":{"arguments":[{"name":"srcEnd","nativeSrc":"7779:6:1","nodeType":"YulIdentifier","src":"7779:6:1"},{"name":"dataEnd","nativeSrc":"7787:7:1","nodeType":"YulIdentifier","src":"7787:7:1"}],"functionName":{"name":"gt","nativeSrc":"7776:2:1","nodeType":"YulIdentifier","src":"7776:2:1"},"nativeSrc":"7776:19:1","nodeType":"YulFunctionCall","src":"7776:19:1"},"nativeSrc":"7773:39:1","nodeType":"YulIf","src":"7773:39:1"},{"nativeSrc":"7821:22:1","nodeType":"YulVariableDeclaration","src":"7821:22:1","value":{"arguments":[{"name":"_1","nativeSrc":"7836:2:1","nodeType":"YulIdentifier","src":"7836:2:1"},{"kind":"number","nativeSrc":"7840:2:1","nodeType":"YulLiteral","src":"7840:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"7832:3:1","nodeType":"YulIdentifier","src":"7832:3:1"},"nativeSrc":"7832:11:1","nodeType":"YulFunctionCall","src":"7832:11:1"},"variables":[{"name":"src","nativeSrc":"7825:3:1","nodeType":"YulTypedName","src":"7825:3:1","type":""}]},{"body":{"nativeSrc":"7910:557:1","nodeType":"YulBlock","src":"7910:557:1","statements":[{"body":{"nativeSrc":"7956:16:1","nodeType":"YulBlock","src":"7956:16:1","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"7965:1:1","nodeType":"YulLiteral","src":"7965:1:1","type":"","value":"0"},{"kind":"number","nativeSrc":"7968:1:1","nodeType":"YulLiteral","src":"7968:1:1","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"7958:6:1","nodeType":"YulIdentifier","src":"7958:6:1"},"nativeSrc":"7958:12:1","nodeType":"YulFunctionCall","src":"7958:12:1"},"nativeSrc":"7958:12:1","nodeType":"YulExpressionStatement","src":"7958:12:1"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"7935:7:1","nodeType":"YulIdentifier","src":"7935:7:1"},{"name":"src","nativeSrc":"7944:3:1","nodeType":"YulIdentifier","src":"7944:3:1"}],"functionName":{"name":"sub","nativeSrc":"7931:3:1","nodeType":"YulIdentifier","src":"7931:3:1"},"nativeSrc":"7931:17:1","nodeType":"YulFunctionCall","src":"7931:17:1"},{"kind":"number","nativeSrc":"7950:4:1","nodeType":"YulLiteral","src":"7950:4:1","type":"","value":"0x60"}],"functionName":{"name":"slt","nativeSrc":"7927:3:1","nodeType":"YulIdentifier","src":"7927:3:1"},"nativeSrc":"7927:28:1","nodeType":"YulFunctionCall","src":"7927:28:1"},"nativeSrc":"7924:48:1","nodeType":"YulIf","src":"7924:48:1"},{"nativeSrc":"7985:35:1","nodeType":"YulVariableDeclaration","src":"7985:35:1","value":{"arguments":[],"functionName":{"name":"allocate_memory_4360","nativeSrc":"7998:20:1","nodeType":"YulIdentifier","src":"7998:20:1"},"nativeSrc":"7998:22:1","nodeType":"YulFunctionCall","src":"7998:22:1"},"variables":[{"name":"value","nativeSrc":"7989:5:1","nodeType":"YulTypedName","src":"7989:5:1","type":""}]},{"nativeSrc":"8033:32:1","nodeType":"YulVariableDeclaration","src":"8033:32:1","value":{"arguments":[{"name":"src","nativeSrc":"8061:3:1","nodeType":"YulIdentifier","src":"8061:3:1"}],"functionName":{"name":"calldataload","nativeSrc":"8048:12:1","nodeType":"YulIdentifier","src":"8048:12:1"},"nativeSrc":"8048:17:1","nodeType":"YulFunctionCall","src":"8048:17:1"},"variables":[{"name":"value_1","nativeSrc":"8037:7:1","nodeType":"YulTypedName","src":"8037:7:1","type":""}]},{"body":{"nativeSrc":"8151:16:1","nodeType":"YulBlock","src":"8151:16:1","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"8160:1:1","nodeType":"YulLiteral","src":"8160:1:1","type":"","value":"0"},{"kind":"number","nativeSrc":"8163:1:1","nodeType":"YulLiteral","src":"8163:1:1","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"8153:6:1","nodeType":"YulIdentifier","src":"8153:6:1"},"nativeSrc":"8153:12:1","nodeType":"YulFunctionCall","src":"8153:12:1"},"nativeSrc":"8153:12:1","nodeType":"YulExpressionStatement","src":"8153:12:1"}]},"condition":{"arguments":[{"arguments":[{"name":"value_1","nativeSrc":"8091:7:1","nodeType":"YulIdentifier","src":"8091:7:1"},{"arguments":[{"name":"value_1","nativeSrc":"8104:7:1","nodeType":"YulIdentifier","src":"8104:7:1"},{"kind":"number","nativeSrc":"8113:34:1","nodeType":"YulLiteral","src":"8113:34:1","type":"","value":"0xffffffffffffffffffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"8100:3:1","nodeType":"YulIdentifier","src":"8100:3:1"},"nativeSrc":"8100:48:1","nodeType":"YulFunctionCall","src":"8100:48:1"}],"functionName":{"name":"eq","nativeSrc":"8088:2:1","nodeType":"YulIdentifier","src":"8088:2:1"},"nativeSrc":"8088:61:1","nodeType":"YulFunctionCall","src":"8088:61:1"}],"functionName":{"name":"iszero","nativeSrc":"8081:6:1","nodeType":"YulIdentifier","src":"8081:6:1"},"nativeSrc":"8081:69:1","nodeType":"YulFunctionCall","src":"8081:69:1"},"nativeSrc":"8078:89:1","nodeType":"YulIf","src":"8078:89:1"},{"expression":{"arguments":[{"name":"value","nativeSrc":"8187:5:1","nodeType":"YulIdentifier","src":"8187:5:1"},{"name":"value_1","nativeSrc":"8194:7:1","nodeType":"YulIdentifier","src":"8194:7:1"}],"functionName":{"name":"mstore","nativeSrc":"8180:6:1","nodeType":"YulIdentifier","src":"8180:6:1"},"nativeSrc":"8180:22:1","nodeType":"YulFunctionCall","src":"8180:22:1"},"nativeSrc":"8180:22:1","nodeType":"YulExpressionStatement","src":"8180:22:1"},{"nativeSrc":"8215:16:1","nodeType":"YulVariableDeclaration","src":"8215:16:1","value":{"kind":"number","nativeSrc":"8230:1:1","nodeType":"YulLiteral","src":"8230:1:1","type":"","value":"0"},"variables":[{"name":"value_2","nativeSrc":"8219:7:1","nodeType":"YulTypedName","src":"8219:7:1","type":""}]},{"nativeSrc":"8244:37:1","nodeType":"YulAssignment","src":"8244:37:1","value":{"arguments":[{"arguments":[{"name":"src","nativeSrc":"8272:3:1","nodeType":"YulIdentifier","src":"8272:3:1"},{"kind":"number","nativeSrc":"8277:2:1","nodeType":"YulLiteral","src":"8277:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"8268:3:1","nodeType":"YulIdentifier","src":"8268:3:1"},"nativeSrc":"8268:12:1","nodeType":"YulFunctionCall","src":"8268:12:1"}],"functionName":{"name":"calldataload","nativeSrc":"8255:12:1","nodeType":"YulIdentifier","src":"8255:12:1"},"nativeSrc":"8255:26:1","nodeType":"YulFunctionCall","src":"8255:26:1"},"variableNames":[{"name":"value_2","nativeSrc":"8244:7:1","nodeType":"YulIdentifier","src":"8244:7:1"}]},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"8305:5:1","nodeType":"YulIdentifier","src":"8305:5:1"},{"kind":"number","nativeSrc":"8312:2:1","nodeType":"YulLiteral","src":"8312:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"8301:3:1","nodeType":"YulIdentifier","src":"8301:3:1"},"nativeSrc":"8301:14:1","nodeType":"YulFunctionCall","src":"8301:14:1"},{"name":"value_2","nativeSrc":"8317:7:1","nodeType":"YulIdentifier","src":"8317:7:1"}],"functionName":{"name":"mstore","nativeSrc":"8294:6:1","nodeType":"YulIdentifier","src":"8294:6:1"},"nativeSrc":"8294:31:1","nodeType":"YulFunctionCall","src":"8294:31:1"},"nativeSrc":"8294:31:1","nodeType":"YulExpressionStatement","src":"8294:31:1"},{"expression":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"8349:5:1","nodeType":"YulIdentifier","src":"8349:5:1"},{"kind":"number","nativeSrc":"8356:2:1","nodeType":"YulLiteral","src":"8356:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"8345:3:1","nodeType":"YulIdentifier","src":"8345:3:1"},"nativeSrc":"8345:14:1","nodeType":"YulFunctionCall","src":"8345:14:1"},{"arguments":[{"arguments":[{"name":"src","nativeSrc":"8384:3:1","nodeType":"YulIdentifier","src":"8384:3:1"},{"kind":"number","nativeSrc":"8389:2:1","nodeType":"YulLiteral","src":"8389:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"8380:3:1","nodeType":"YulIdentifier","src":"8380:3:1"},"nativeSrc":"8380:12:1","nodeType":"YulFunctionCall","src":"8380:12:1"}],"functionName":{"name":"abi_decode_address","nativeSrc":"8361:18:1","nodeType":"YulIdentifier","src":"8361:18:1"},"nativeSrc":"8361:32:1","nodeType":"YulFunctionCall","src":"8361:32:1"}],"functionName":{"name":"mstore","nativeSrc":"8338:6:1","nodeType":"YulIdentifier","src":"8338:6:1"},"nativeSrc":"8338:56:1","nodeType":"YulFunctionCall","src":"8338:56:1"},"nativeSrc":"8338:56:1","nodeType":"YulExpressionStatement","src":"8338:56:1"},{"expression":{"arguments":[{"name":"dst","nativeSrc":"8414:3:1","nodeType":"YulIdentifier","src":"8414:3:1"},{"name":"value","nativeSrc":"8419:5:1","nodeType":"YulIdentifier","src":"8419:5:1"}],"functionName":{"name":"mstore","nativeSrc":"8407:6:1","nodeType":"YulIdentifier","src":"8407:6:1"},"nativeSrc":"8407:18:1","nodeType":"YulFunctionCall","src":"8407:18:1"},"nativeSrc":"8407:18:1","nodeType":"YulExpressionStatement","src":"8407:18:1"},{"nativeSrc":"8438:19:1","nodeType":"YulAssignment","src":"8438:19:1","value":{"arguments":[{"name":"dst","nativeSrc":"8449:3:1","nodeType":"YulIdentifier","src":"8449:3:1"},{"kind":"number","nativeSrc":"8454:2:1","nodeType":"YulLiteral","src":"8454:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"8445:3:1","nodeType":"YulIdentifier","src":"8445:3:1"},"nativeSrc":"8445:12:1","nodeType":"YulFunctionCall","src":"8445:12:1"},"variableNames":[{"name":"dst","nativeSrc":"8438:3:1","nodeType":"YulIdentifier","src":"8438:3:1"}]}]},"condition":{"arguments":[{"name":"src","nativeSrc":"7863:3:1","nodeType":"YulIdentifier","src":"7863:3:1"},{"name":"srcEnd","nativeSrc":"7868:6:1","nodeType":"YulIdentifier","src":"7868:6:1"}],"functionName":{"name":"lt","nativeSrc":"7860:2:1","nodeType":"YulIdentifier","src":"7860:2:1"},"nativeSrc":"7860:15:1","nodeType":"YulFunctionCall","src":"7860:15:1"},"nativeSrc":"7852:615:1","nodeType":"YulForLoop","post":{"nativeSrc":"7876:25:1","nodeType":"YulBlock","src":"7876:25:1","statements":[{"nativeSrc":"7878:21:1","nodeType":"YulAssignment","src":"7878:21:1","value":{"arguments":[{"name":"src","nativeSrc":"7889:3:1","nodeType":"YulIdentifier","src":"7889:3:1"},{"kind":"number","nativeSrc":"7894:4:1","nodeType":"YulLiteral","src":"7894:4:1","type":"","value":"0x60"}],"functionName":{"name":"add","nativeSrc":"7885:3:1","nodeType":"YulIdentifier","src":"7885:3:1"},"nativeSrc":"7885:14:1","nodeType":"YulFunctionCall","src":"7885:14:1"},"variableNames":[{"name":"src","nativeSrc":"7878:3:1","nodeType":"YulIdentifier","src":"7878:3:1"}]}]},"pre":{"nativeSrc":"7856:3:1","nodeType":"YulBlock","src":"7856:3:1","statements":[]},"src":"7852:615:1"},{"nativeSrc":"8476:15:1","nodeType":"YulAssignment","src":"8476:15:1","value":{"name":"array","nativeSrc":"8486:5:1","nodeType":"YulIdentifier","src":"8486:5:1"},"variableNames":[{"name":"value0","nativeSrc":"8476:6:1","nodeType":"YulIdentifier","src":"8476:6:1"}]}]},"name":"abi_decode_tuple_t_array$_t_struct$_AssetConfigInput_$129_memory_ptr_$dyn_memory_ptr","nativeSrc":"7061:1436:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"7155:9:1","nodeType":"YulTypedName","src":"7155:9:1","type":""},{"name":"dataEnd","nativeSrc":"7166:7:1","nodeType":"YulTypedName","src":"7166:7:1","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"7178:6:1","nodeType":"YulTypedName","src":"7178:6:1","type":""}],"src":"7061:1436:1"},{"body":{"nativeSrc":"8625:282:1","nodeType":"YulBlock","src":"8625:282:1","statements":[{"body":{"nativeSrc":"8671:16:1","nodeType":"YulBlock","src":"8671:16:1","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"8680:1:1","nodeType":"YulLiteral","src":"8680:1:1","type":"","value":"0"},{"kind":"number","nativeSrc":"8683:1:1","nodeType":"YulLiteral","src":"8683:1:1","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"8673:6:1","nodeType":"YulIdentifier","src":"8673:6:1"},"nativeSrc":"8673:12:1","nodeType":"YulFunctionCall","src":"8673:12:1"},"nativeSrc":"8673:12:1","nodeType":"YulExpressionStatement","src":"8673:12:1"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"8646:7:1","nodeType":"YulIdentifier","src":"8646:7:1"},{"name":"headStart","nativeSrc":"8655:9:1","nodeType":"YulIdentifier","src":"8655:9:1"}],"functionName":{"name":"sub","nativeSrc":"8642:3:1","nodeType":"YulIdentifier","src":"8642:3:1"},"nativeSrc":"8642:23:1","nodeType":"YulFunctionCall","src":"8642:23:1"},{"kind":"number","nativeSrc":"8667:2:1","nodeType":"YulLiteral","src":"8667:2:1","type":"","value":"96"}],"functionName":{"name":"slt","nativeSrc":"8638:3:1","nodeType":"YulIdentifier","src":"8638:3:1"},"nativeSrc":"8638:32:1","nodeType":"YulFunctionCall","src":"8638:32:1"},"nativeSrc":"8635:52:1","nodeType":"YulIf","src":"8635:52:1"},{"nativeSrc":"8696:39:1","nodeType":"YulAssignment","src":"8696:39:1","value":{"arguments":[{"name":"headStart","nativeSrc":"8725:9:1","nodeType":"YulIdentifier","src":"8725:9:1"}],"functionName":{"name":"abi_decode_address","nativeSrc":"8706:18:1","nodeType":"YulIdentifier","src":"8706:18:1"},"nativeSrc":"8706:29:1","nodeType":"YulFunctionCall","src":"8706:29:1"},"variableNames":[{"name":"value0","nativeSrc":"8696:6:1","nodeType":"YulIdentifier","src":"8696:6:1"}]},{"nativeSrc":"8744:14:1","nodeType":"YulVariableDeclaration","src":"8744:14:1","value":{"kind":"number","nativeSrc":"8757:1:1","nodeType":"YulLiteral","src":"8757:1:1","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"8748:5:1","nodeType":"YulTypedName","src":"8748:5:1","type":""}]},{"nativeSrc":"8767:41:1","nodeType":"YulAssignment","src":"8767:41:1","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"8793:9:1","nodeType":"YulIdentifier","src":"8793:9:1"},{"kind":"number","nativeSrc":"8804:2:1","nodeType":"YulLiteral","src":"8804:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"8789:3:1","nodeType":"YulIdentifier","src":"8789:3:1"},"nativeSrc":"8789:18:1","nodeType":"YulFunctionCall","src":"8789:18:1"}],"functionName":{"name":"calldataload","nativeSrc":"8776:12:1","nodeType":"YulIdentifier","src":"8776:12:1"},"nativeSrc":"8776:32:1","nodeType":"YulFunctionCall","src":"8776:32:1"},"variableNames":[{"name":"value","nativeSrc":"8767:5:1","nodeType":"YulIdentifier","src":"8767:5:1"}]},{"nativeSrc":"8817:15:1","nodeType":"YulAssignment","src":"8817:15:1","value":{"name":"value","nativeSrc":"8827:5:1","nodeType":"YulIdentifier","src":"8827:5:1"},"variableNames":[{"name":"value1","nativeSrc":"8817:6:1","nodeType":"YulIdentifier","src":"8817:6:1"}]},{"nativeSrc":"8841:60:1","nodeType":"YulAssignment","src":"8841:60:1","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"8886:9:1","nodeType":"YulIdentifier","src":"8886:9:1"},{"kind":"number","nativeSrc":"8897:2:1","nodeType":"YulLiteral","src":"8897:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"8882:3:1","nodeType":"YulIdentifier","src":"8882:3:1"},"nativeSrc":"8882:18:1","nodeType":"YulFunctionCall","src":"8882:18:1"}],"functionName":{"name":"abi_decode_enum_DelegationType","nativeSrc":"8851:30:1","nodeType":"YulIdentifier","src":"8851:30:1"},"nativeSrc":"8851:50:1","nodeType":"YulFunctionCall","src":"8851:50:1"},"variableNames":[{"name":"value2","nativeSrc":"8841:6:1","nodeType":"YulIdentifier","src":"8841:6:1"}]}]},"name":"abi_decode_tuple_t_addresst_uint256t_enum$_DelegationType_$1088","nativeSrc":"8502:405:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"8575:9:1","nodeType":"YulTypedName","src":"8575:9:1","type":""},{"name":"dataEnd","nativeSrc":"8586:7:1","nodeType":"YulTypedName","src":"8586:7:1","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"8598:6:1","nodeType":"YulTypedName","src":"8598:6:1","type":""},{"name":"value1","nativeSrc":"8606:6:1","nodeType":"YulTypedName","src":"8606:6:1","type":""},{"name":"value2","nativeSrc":"8614:6:1","nodeType":"YulTypedName","src":"8614:6:1","type":""}],"src":"8502:405:1"},{"body":{"nativeSrc":"9035:102:1","nodeType":"YulBlock","src":"9035:102:1","statements":[{"nativeSrc":"9045:26:1","nodeType":"YulAssignment","src":"9045:26:1","value":{"arguments":[{"name":"headStart","nativeSrc":"9057:9:1","nodeType":"YulIdentifier","src":"9057:9:1"},{"kind":"number","nativeSrc":"9068:2:1","nodeType":"YulLiteral","src":"9068:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"9053:3:1","nodeType":"YulIdentifier","src":"9053:3:1"},"nativeSrc":"9053:18:1","nodeType":"YulFunctionCall","src":"9053:18:1"},"variableNames":[{"name":"tail","nativeSrc":"9045:4:1","nodeType":"YulIdentifier","src":"9045:4:1"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"9087:9:1","nodeType":"YulIdentifier","src":"9087:9:1"},{"arguments":[{"name":"value0","nativeSrc":"9102:6:1","nodeType":"YulIdentifier","src":"9102:6:1"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"9118:3:1","nodeType":"YulLiteral","src":"9118:3:1","type":"","value":"160"},{"kind":"number","nativeSrc":"9123:1:1","nodeType":"YulLiteral","src":"9123:1:1","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"9114:3:1","nodeType":"YulIdentifier","src":"9114:3:1"},"nativeSrc":"9114:11:1","nodeType":"YulFunctionCall","src":"9114:11:1"},{"kind":"number","nativeSrc":"9127:1:1","nodeType":"YulLiteral","src":"9127:1:1","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"9110:3:1","nodeType":"YulIdentifier","src":"9110:3:1"},"nativeSrc":"9110:19:1","nodeType":"YulFunctionCall","src":"9110:19:1"}],"functionName":{"name":"and","nativeSrc":"9098:3:1","nodeType":"YulIdentifier","src":"9098:3:1"},"nativeSrc":"9098:32:1","nodeType":"YulFunctionCall","src":"9098:32:1"}],"functionName":{"name":"mstore","nativeSrc":"9080:6:1","nodeType":"YulIdentifier","src":"9080:6:1"},"nativeSrc":"9080:51:1","nodeType":"YulFunctionCall","src":"9080:51:1"},"nativeSrc":"9080:51:1","nodeType":"YulExpressionStatement","src":"9080:51:1"}]},"name":"abi_encode_tuple_t_contract$_ITransferHook_$1885__to_t_address__fromStack_reversed","nativeSrc":"8912:225:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"9004:9:1","nodeType":"YulTypedName","src":"9004:9:1","type":""},{"name":"value0","nativeSrc":"9015:6:1","nodeType":"YulTypedName","src":"9015:6:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"9026:4:1","nodeType":"YulTypedName","src":"9026:4:1","type":""}],"src":"8912:225:1"},{"body":{"nativeSrc":"9189:109:1","nodeType":"YulBlock","src":"9189:109:1","statements":[{"nativeSrc":"9199:29:1","nodeType":"YulAssignment","src":"9199:29:1","value":{"arguments":[{"name":"offset","nativeSrc":"9221:6:1","nodeType":"YulIdentifier","src":"9221:6:1"}],"functionName":{"name":"calldataload","nativeSrc":"9208:12:1","nodeType":"YulIdentifier","src":"9208:12:1"},"nativeSrc":"9208:20:1","nodeType":"YulFunctionCall","src":"9208:20:1"},"variableNames":[{"name":"value","nativeSrc":"9199:5:1","nodeType":"YulIdentifier","src":"9199:5:1"}]},{"body":{"nativeSrc":"9276:16:1","nodeType":"YulBlock","src":"9276:16:1","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"9285:1:1","nodeType":"YulLiteral","src":"9285:1:1","type":"","value":"0"},{"kind":"number","nativeSrc":"9288:1:1","nodeType":"YulLiteral","src":"9288:1:1","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"9278:6:1","nodeType":"YulIdentifier","src":"9278:6:1"},"nativeSrc":"9278:12:1","nodeType":"YulFunctionCall","src":"9278:12:1"},"nativeSrc":"9278:12:1","nodeType":"YulExpressionStatement","src":"9278:12:1"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"9250:5:1","nodeType":"YulIdentifier","src":"9250:5:1"},{"arguments":[{"name":"value","nativeSrc":"9261:5:1","nodeType":"YulIdentifier","src":"9261:5:1"},{"kind":"number","nativeSrc":"9268:4:1","nodeType":"YulLiteral","src":"9268:4:1","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"9257:3:1","nodeType":"YulIdentifier","src":"9257:3:1"},"nativeSrc":"9257:16:1","nodeType":"YulFunctionCall","src":"9257:16:1"}],"functionName":{"name":"eq","nativeSrc":"9247:2:1","nodeType":"YulIdentifier","src":"9247:2:1"},"nativeSrc":"9247:27:1","nodeType":"YulFunctionCall","src":"9247:27:1"}],"functionName":{"name":"iszero","nativeSrc":"9240:6:1","nodeType":"YulIdentifier","src":"9240:6:1"},"nativeSrc":"9240:35:1","nodeType":"YulFunctionCall","src":"9240:35:1"},"nativeSrc":"9237:55:1","nodeType":"YulIf","src":"9237:55:1"}]},"name":"abi_decode_uint8","nativeSrc":"9142:156:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"offset","nativeSrc":"9168:6:1","nodeType":"YulTypedName","src":"9168:6:1","type":""}],"returnVariables":[{"name":"value","nativeSrc":"9179:5:1","nodeType":"YulTypedName","src":"9179:5:1","type":""}],"src":"9142:156:1"},{"body":{"nativeSrc":"9456:580:1","nodeType":"YulBlock","src":"9456:580:1","statements":[{"body":{"nativeSrc":"9503:16:1","nodeType":"YulBlock","src":"9503:16:1","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"9512:1:1","nodeType":"YulLiteral","src":"9512:1:1","type":"","value":"0"},{"kind":"number","nativeSrc":"9515:1:1","nodeType":"YulLiteral","src":"9515:1:1","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"9505:6:1","nodeType":"YulIdentifier","src":"9505:6:1"},"nativeSrc":"9505:12:1","nodeType":"YulFunctionCall","src":"9505:12:1"},"nativeSrc":"9505:12:1","nodeType":"YulExpressionStatement","src":"9505:12:1"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"9477:7:1","nodeType":"YulIdentifier","src":"9477:7:1"},{"name":"headStart","nativeSrc":"9486:9:1","nodeType":"YulIdentifier","src":"9486:9:1"}],"functionName":{"name":"sub","nativeSrc":"9473:3:1","nodeType":"YulIdentifier","src":"9473:3:1"},"nativeSrc":"9473:23:1","nodeType":"YulFunctionCall","src":"9473:23:1"},{"kind":"number","nativeSrc":"9498:3:1","nodeType":"YulLiteral","src":"9498:3:1","type":"","value":"192"}],"functionName":{"name":"slt","nativeSrc":"9469:3:1","nodeType":"YulIdentifier","src":"9469:3:1"},"nativeSrc":"9469:33:1","nodeType":"YulFunctionCall","src":"9469:33:1"},"nativeSrc":"9466:53:1","nodeType":"YulIf","src":"9466:53:1"},{"nativeSrc":"9528:39:1","nodeType":"YulAssignment","src":"9528:39:1","value":{"arguments":[{"name":"headStart","nativeSrc":"9557:9:1","nodeType":"YulIdentifier","src":"9557:9:1"}],"functionName":{"name":"abi_decode_address","nativeSrc":"9538:18:1","nodeType":"YulIdentifier","src":"9538:18:1"},"nativeSrc":"9538:29:1","nodeType":"YulFunctionCall","src":"9538:29:1"},"variableNames":[{"name":"value0","nativeSrc":"9528:6:1","nodeType":"YulIdentifier","src":"9528:6:1"}]},{"nativeSrc":"9576:14:1","nodeType":"YulVariableDeclaration","src":"9576:14:1","value":{"kind":"number","nativeSrc":"9589:1:1","nodeType":"YulLiteral","src":"9589:1:1","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"9580:5:1","nodeType":"YulTypedName","src":"9580:5:1","type":""}]},{"nativeSrc":"9599:41:1","nodeType":"YulAssignment","src":"9599:41:1","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"9625:9:1","nodeType":"YulIdentifier","src":"9625:9:1"},{"kind":"number","nativeSrc":"9636:2:1","nodeType":"YulLiteral","src":"9636:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"9621:3:1","nodeType":"YulIdentifier","src":"9621:3:1"},"nativeSrc":"9621:18:1","nodeType":"YulFunctionCall","src":"9621:18:1"}],"functionName":{"name":"calldataload","nativeSrc":"9608:12:1","nodeType":"YulIdentifier","src":"9608:12:1"},"nativeSrc":"9608:32:1","nodeType":"YulFunctionCall","src":"9608:32:1"},"variableNames":[{"name":"value","nativeSrc":"9599:5:1","nodeType":"YulIdentifier","src":"9599:5:1"}]},{"nativeSrc":"9649:15:1","nodeType":"YulAssignment","src":"9649:15:1","value":{"name":"value","nativeSrc":"9659:5:1","nodeType":"YulIdentifier","src":"9659:5:1"},"variableNames":[{"name":"value1","nativeSrc":"9649:6:1","nodeType":"YulIdentifier","src":"9649:6:1"}]},{"nativeSrc":"9673:16:1","nodeType":"YulVariableDeclaration","src":"9673:16:1","value":{"kind":"number","nativeSrc":"9688:1:1","nodeType":"YulLiteral","src":"9688:1:1","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"9677:7:1","nodeType":"YulTypedName","src":"9677:7:1","type":""}]},{"nativeSrc":"9698:43:1","nodeType":"YulAssignment","src":"9698:43:1","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"9726:9:1","nodeType":"YulIdentifier","src":"9726:9:1"},{"kind":"number","nativeSrc":"9737:2:1","nodeType":"YulLiteral","src":"9737:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"9722:3:1","nodeType":"YulIdentifier","src":"9722:3:1"},"nativeSrc":"9722:18:1","nodeType":"YulFunctionCall","src":"9722:18:1"}],"functionName":{"name":"calldataload","nativeSrc":"9709:12:1","nodeType":"YulIdentifier","src":"9709:12:1"},"nativeSrc":"9709:32:1","nodeType":"YulFunctionCall","src":"9709:32:1"},"variableNames":[{"name":"value_1","nativeSrc":"9698:7:1","nodeType":"YulIdentifier","src":"9698:7:1"}]},{"nativeSrc":"9750:17:1","nodeType":"YulAssignment","src":"9750:17:1","value":{"name":"value_1","nativeSrc":"9760:7:1","nodeType":"YulIdentifier","src":"9760:7:1"},"variableNames":[{"name":"value2","nativeSrc":"9750:6:1","nodeType":"YulIdentifier","src":"9750:6:1"}]},{"nativeSrc":"9776:46:1","nodeType":"YulAssignment","src":"9776:46:1","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"9807:9:1","nodeType":"YulIdentifier","src":"9807:9:1"},{"kind":"number","nativeSrc":"9818:2:1","nodeType":"YulLiteral","src":"9818:2:1","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"9803:3:1","nodeType":"YulIdentifier","src":"9803:3:1"},"nativeSrc":"9803:18:1","nodeType":"YulFunctionCall","src":"9803:18:1"}],"functionName":{"name":"abi_decode_uint8","nativeSrc":"9786:16:1","nodeType":"YulIdentifier","src":"9786:16:1"},"nativeSrc":"9786:36:1","nodeType":"YulFunctionCall","src":"9786:36:1"},"variableNames":[{"name":"value3","nativeSrc":"9776:6:1","nodeType":"YulIdentifier","src":"9776:6:1"}]},{"nativeSrc":"9831:16:1","nodeType":"YulVariableDeclaration","src":"9831:16:1","value":{"kind":"number","nativeSrc":"9846:1:1","nodeType":"YulLiteral","src":"9846:1:1","type":"","value":"0"},"variables":[{"name":"value_2","nativeSrc":"9835:7:1","nodeType":"YulTypedName","src":"9835:7:1","type":""}]},{"nativeSrc":"9856:44:1","nodeType":"YulAssignment","src":"9856:44:1","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"9884:9:1","nodeType":"YulIdentifier","src":"9884:9:1"},{"kind":"number","nativeSrc":"9895:3:1","nodeType":"YulLiteral","src":"9895:3:1","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"9880:3:1","nodeType":"YulIdentifier","src":"9880:3:1"},"nativeSrc":"9880:19:1","nodeType":"YulFunctionCall","src":"9880:19:1"}],"functionName":{"name":"calldataload","nativeSrc":"9867:12:1","nodeType":"YulIdentifier","src":"9867:12:1"},"nativeSrc":"9867:33:1","nodeType":"YulFunctionCall","src":"9867:33:1"},"variableNames":[{"name":"value_2","nativeSrc":"9856:7:1","nodeType":"YulIdentifier","src":"9856:7:1"}]},{"nativeSrc":"9909:17:1","nodeType":"YulAssignment","src":"9909:17:1","value":{"name":"value_2","nativeSrc":"9919:7:1","nodeType":"YulIdentifier","src":"9919:7:1"},"variableNames":[{"name":"value4","nativeSrc":"9909:6:1","nodeType":"YulIdentifier","src":"9909:6:1"}]},{"nativeSrc":"9935:16:1","nodeType":"YulVariableDeclaration","src":"9935:16:1","value":{"kind":"number","nativeSrc":"9950:1:1","nodeType":"YulLiteral","src":"9950:1:1","type":"","value":"0"},"variables":[{"name":"value_3","nativeSrc":"9939:7:1","nodeType":"YulTypedName","src":"9939:7:1","type":""}]},{"nativeSrc":"9960:44:1","nodeType":"YulAssignment","src":"9960:44:1","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"9988:9:1","nodeType":"YulIdentifier","src":"9988:9:1"},{"kind":"number","nativeSrc":"9999:3:1","nodeType":"YulLiteral","src":"9999:3:1","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"9984:3:1","nodeType":"YulIdentifier","src":"9984:3:1"},"nativeSrc":"9984:19:1","nodeType":"YulFunctionCall","src":"9984:19:1"}],"functionName":{"name":"calldataload","nativeSrc":"9971:12:1","nodeType":"YulIdentifier","src":"9971:12:1"},"nativeSrc":"9971:33:1","nodeType":"YulFunctionCall","src":"9971:33:1"},"variableNames":[{"name":"value_3","nativeSrc":"9960:7:1","nodeType":"YulIdentifier","src":"9960:7:1"}]},{"nativeSrc":"10013:17:1","nodeType":"YulAssignment","src":"10013:17:1","value":{"name":"value_3","nativeSrc":"10023:7:1","nodeType":"YulIdentifier","src":"10023:7:1"},"variableNames":[{"name":"value5","nativeSrc":"10013:6:1","nodeType":"YulIdentifier","src":"10013:6:1"}]}]},"name":"abi_decode_tuple_t_addresst_uint256t_uint256t_uint8t_bytes32t_bytes32","nativeSrc":"9303:733:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"9382:9:1","nodeType":"YulTypedName","src":"9382:9:1","type":""},{"name":"dataEnd","nativeSrc":"9393:7:1","nodeType":"YulTypedName","src":"9393:7:1","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"9405:6:1","nodeType":"YulTypedName","src":"9405:6:1","type":""},{"name":"value1","nativeSrc":"9413:6:1","nodeType":"YulTypedName","src":"9413:6:1","type":""},{"name":"value2","nativeSrc":"9421:6:1","nodeType":"YulTypedName","src":"9421:6:1","type":""},{"name":"value3","nativeSrc":"9429:6:1","nodeType":"YulTypedName","src":"9429:6:1","type":""},{"name":"value4","nativeSrc":"9437:6:1","nodeType":"YulTypedName","src":"9437:6:1","type":""},{"name":"value5","nativeSrc":"9445:6:1","nodeType":"YulTypedName","src":"9445:6:1","type":""}],"src":"9303:733:1"},{"body":{"nativeSrc":"10211:638:1","nodeType":"YulBlock","src":"10211:638:1","statements":[{"body":{"nativeSrc":"10258:16:1","nodeType":"YulBlock","src":"10258:16:1","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"10267:1:1","nodeType":"YulLiteral","src":"10267:1:1","type":"","value":"0"},{"kind":"number","nativeSrc":"10270:1:1","nodeType":"YulLiteral","src":"10270:1:1","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"10260:6:1","nodeType":"YulIdentifier","src":"10260:6:1"},"nativeSrc":"10260:12:1","nodeType":"YulFunctionCall","src":"10260:12:1"},"nativeSrc":"10260:12:1","nodeType":"YulExpressionStatement","src":"10260:12:1"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"10232:7:1","nodeType":"YulIdentifier","src":"10232:7:1"},{"name":"headStart","nativeSrc":"10241:9:1","nodeType":"YulIdentifier","src":"10241:9:1"}],"functionName":{"name":"sub","nativeSrc":"10228:3:1","nodeType":"YulIdentifier","src":"10228:3:1"},"nativeSrc":"10228:23:1","nodeType":"YulFunctionCall","src":"10228:23:1"},{"kind":"number","nativeSrc":"10253:3:1","nodeType":"YulLiteral","src":"10253:3:1","type":"","value":"224"}],"functionName":{"name":"slt","nativeSrc":"10224:3:1","nodeType":"YulIdentifier","src":"10224:3:1"},"nativeSrc":"10224:33:1","nodeType":"YulFunctionCall","src":"10224:33:1"},"nativeSrc":"10221:53:1","nodeType":"YulIf","src":"10221:53:1"},{"nativeSrc":"10283:39:1","nodeType":"YulAssignment","src":"10283:39:1","value":{"arguments":[{"name":"headStart","nativeSrc":"10312:9:1","nodeType":"YulIdentifier","src":"10312:9:1"}],"functionName":{"name":"abi_decode_address","nativeSrc":"10293:18:1","nodeType":"YulIdentifier","src":"10293:18:1"},"nativeSrc":"10293:29:1","nodeType":"YulFunctionCall","src":"10293:29:1"},"variableNames":[{"name":"value0","nativeSrc":"10283:6:1","nodeType":"YulIdentifier","src":"10283:6:1"}]},{"nativeSrc":"10331:48:1","nodeType":"YulAssignment","src":"10331:48:1","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"10364:9:1","nodeType":"YulIdentifier","src":"10364:9:1"},{"kind":"number","nativeSrc":"10375:2:1","nodeType":"YulLiteral","src":"10375:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"10360:3:1","nodeType":"YulIdentifier","src":"10360:3:1"},"nativeSrc":"10360:18:1","nodeType":"YulFunctionCall","src":"10360:18:1"}],"functionName":{"name":"abi_decode_address","nativeSrc":"10341:18:1","nodeType":"YulIdentifier","src":"10341:18:1"},"nativeSrc":"10341:38:1","nodeType":"YulFunctionCall","src":"10341:38:1"},"variableNames":[{"name":"value1","nativeSrc":"10331:6:1","nodeType":"YulIdentifier","src":"10331:6:1"}]},{"nativeSrc":"10388:14:1","nodeType":"YulVariableDeclaration","src":"10388:14:1","value":{"kind":"number","nativeSrc":"10401:1:1","nodeType":"YulLiteral","src":"10401:1:1","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"10392:5:1","nodeType":"YulTypedName","src":"10392:5:1","type":""}]},{"nativeSrc":"10411:41:1","nodeType":"YulAssignment","src":"10411:41:1","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"10437:9:1","nodeType":"YulIdentifier","src":"10437:9:1"},{"kind":"number","nativeSrc":"10448:2:1","nodeType":"YulLiteral","src":"10448:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"10433:3:1","nodeType":"YulIdentifier","src":"10433:3:1"},"nativeSrc":"10433:18:1","nodeType":"YulFunctionCall","src":"10433:18:1"}],"functionName":{"name":"calldataload","nativeSrc":"10420:12:1","nodeType":"YulIdentifier","src":"10420:12:1"},"nativeSrc":"10420:32:1","nodeType":"YulFunctionCall","src":"10420:32:1"},"variableNames":[{"name":"value","nativeSrc":"10411:5:1","nodeType":"YulIdentifier","src":"10411:5:1"}]},{"nativeSrc":"10461:15:1","nodeType":"YulAssignment","src":"10461:15:1","value":{"name":"value","nativeSrc":"10471:5:1","nodeType":"YulIdentifier","src":"10471:5:1"},"variableNames":[{"name":"value2","nativeSrc":"10461:6:1","nodeType":"YulIdentifier","src":"10461:6:1"}]},{"nativeSrc":"10485:16:1","nodeType":"YulVariableDeclaration","src":"10485:16:1","value":{"kind":"number","nativeSrc":"10500:1:1","nodeType":"YulLiteral","src":"10500:1:1","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"10489:7:1","nodeType":"YulTypedName","src":"10489:7:1","type":""}]},{"nativeSrc":"10510:43:1","nodeType":"YulAssignment","src":"10510:43:1","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"10538:9:1","nodeType":"YulIdentifier","src":"10538:9:1"},{"kind":"number","nativeSrc":"10549:2:1","nodeType":"YulLiteral","src":"10549:2:1","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"10534:3:1","nodeType":"YulIdentifier","src":"10534:3:1"},"nativeSrc":"10534:18:1","nodeType":"YulFunctionCall","src":"10534:18:1"}],"functionName":{"name":"calldataload","nativeSrc":"10521:12:1","nodeType":"YulIdentifier","src":"10521:12:1"},"nativeSrc":"10521:32:1","nodeType":"YulFunctionCall","src":"10521:32:1"},"variableNames":[{"name":"value_1","nativeSrc":"10510:7:1","nodeType":"YulIdentifier","src":"10510:7:1"}]},{"nativeSrc":"10562:17:1","nodeType":"YulAssignment","src":"10562:17:1","value":{"name":"value_1","nativeSrc":"10572:7:1","nodeType":"YulIdentifier","src":"10572:7:1"},"variableNames":[{"name":"value3","nativeSrc":"10562:6:1","nodeType":"YulIdentifier","src":"10562:6:1"}]},{"nativeSrc":"10588:47:1","nodeType":"YulAssignment","src":"10588:47:1","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"10619:9:1","nodeType":"YulIdentifier","src":"10619:9:1"},{"kind":"number","nativeSrc":"10630:3:1","nodeType":"YulLiteral","src":"10630:3:1","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"10615:3:1","nodeType":"YulIdentifier","src":"10615:3:1"},"nativeSrc":"10615:19:1","nodeType":"YulFunctionCall","src":"10615:19:1"}],"functionName":{"name":"abi_decode_uint8","nativeSrc":"10598:16:1","nodeType":"YulIdentifier","src":"10598:16:1"},"nativeSrc":"10598:37:1","nodeType":"YulFunctionCall","src":"10598:37:1"},"variableNames":[{"name":"value4","nativeSrc":"10588:6:1","nodeType":"YulIdentifier","src":"10588:6:1"}]},{"nativeSrc":"10644:16:1","nodeType":"YulVariableDeclaration","src":"10644:16:1","value":{"kind":"number","nativeSrc":"10659:1:1","nodeType":"YulLiteral","src":"10659:1:1","type":"","value":"0"},"variables":[{"name":"value_2","nativeSrc":"10648:7:1","nodeType":"YulTypedName","src":"10648:7:1","type":""}]},{"nativeSrc":"10669:44:1","nodeType":"YulAssignment","src":"10669:44:1","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"10697:9:1","nodeType":"YulIdentifier","src":"10697:9:1"},{"kind":"number","nativeSrc":"10708:3:1","nodeType":"YulLiteral","src":"10708:3:1","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"10693:3:1","nodeType":"YulIdentifier","src":"10693:3:1"},"nativeSrc":"10693:19:1","nodeType":"YulFunctionCall","src":"10693:19:1"}],"functionName":{"name":"calldataload","nativeSrc":"10680:12:1","nodeType":"YulIdentifier","src":"10680:12:1"},"nativeSrc":"10680:33:1","nodeType":"YulFunctionCall","src":"10680:33:1"},"variableNames":[{"name":"value_2","nativeSrc":"10669:7:1","nodeType":"YulIdentifier","src":"10669:7:1"}]},{"nativeSrc":"10722:17:1","nodeType":"YulAssignment","src":"10722:17:1","value":{"name":"value_2","nativeSrc":"10732:7:1","nodeType":"YulIdentifier","src":"10732:7:1"},"variableNames":[{"name":"value5","nativeSrc":"10722:6:1","nodeType":"YulIdentifier","src":"10722:6:1"}]},{"nativeSrc":"10748:16:1","nodeType":"YulVariableDeclaration","src":"10748:16:1","value":{"kind":"number","nativeSrc":"10763:1:1","nodeType":"YulLiteral","src":"10763:1:1","type":"","value":"0"},"variables":[{"name":"value_3","nativeSrc":"10752:7:1","nodeType":"YulTypedName","src":"10752:7:1","type":""}]},{"nativeSrc":"10773:44:1","nodeType":"YulAssignment","src":"10773:44:1","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"10801:9:1","nodeType":"YulIdentifier","src":"10801:9:1"},{"kind":"number","nativeSrc":"10812:3:1","nodeType":"YulLiteral","src":"10812:3:1","type":"","value":"192"}],"functionName":{"name":"add","nativeSrc":"10797:3:1","nodeType":"YulIdentifier","src":"10797:3:1"},"nativeSrc":"10797:19:1","nodeType":"YulFunctionCall","src":"10797:19:1"}],"functionName":{"name":"calldataload","nativeSrc":"10784:12:1","nodeType":"YulIdentifier","src":"10784:12:1"},"nativeSrc":"10784:33:1","nodeType":"YulFunctionCall","src":"10784:33:1"},"variableNames":[{"name":"value_3","nativeSrc":"10773:7:1","nodeType":"YulIdentifier","src":"10773:7:1"}]},{"nativeSrc":"10826:17:1","nodeType":"YulAssignment","src":"10826:17:1","value":{"name":"value_3","nativeSrc":"10836:7:1","nodeType":"YulIdentifier","src":"10836:7:1"},"variableNames":[{"name":"value6","nativeSrc":"10826:6:1","nodeType":"YulIdentifier","src":"10826:6:1"}]}]},"name":"abi_decode_tuple_t_addresst_addresst_uint256t_uint256t_uint8t_bytes32t_bytes32","nativeSrc":"10041:808:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"10129:9:1","nodeType":"YulTypedName","src":"10129:9:1","type":""},{"name":"dataEnd","nativeSrc":"10140:7:1","nodeType":"YulTypedName","src":"10140:7:1","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"10152:6:1","nodeType":"YulTypedName","src":"10152:6:1","type":""},{"name":"value1","nativeSrc":"10160:6:1","nodeType":"YulTypedName","src":"10160:6:1","type":""},{"name":"value2","nativeSrc":"10168:6:1","nodeType":"YulTypedName","src":"10168:6:1","type":""},{"name":"value3","nativeSrc":"10176:6:1","nodeType":"YulTypedName","src":"10176:6:1","type":""},{"name":"value4","nativeSrc":"10184:6:1","nodeType":"YulTypedName","src":"10184:6:1","type":""},{"name":"value5","nativeSrc":"10192:6:1","nodeType":"YulTypedName","src":"10192:6:1","type":""},{"name":"value6","nativeSrc":"10200:6:1","nodeType":"YulTypedName","src":"10200:6:1","type":""}],"src":"10041:808:1"},{"body":{"nativeSrc":"10958:316:1","nodeType":"YulBlock","src":"10958:316:1","statements":[{"body":{"nativeSrc":"11004:16:1","nodeType":"YulBlock","src":"11004:16:1","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"11013:1:1","nodeType":"YulLiteral","src":"11013:1:1","type":"","value":"0"},{"kind":"number","nativeSrc":"11016:1:1","nodeType":"YulLiteral","src":"11016:1:1","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"11006:6:1","nodeType":"YulIdentifier","src":"11006:6:1"},"nativeSrc":"11006:12:1","nodeType":"YulFunctionCall","src":"11006:12:1"},"nativeSrc":"11006:12:1","nodeType":"YulExpressionStatement","src":"11006:12:1"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"10979:7:1","nodeType":"YulIdentifier","src":"10979:7:1"},{"name":"headStart","nativeSrc":"10988:9:1","nodeType":"YulIdentifier","src":"10988:9:1"}],"functionName":{"name":"sub","nativeSrc":"10975:3:1","nodeType":"YulIdentifier","src":"10975:3:1"},"nativeSrc":"10975:23:1","nodeType":"YulFunctionCall","src":"10975:23:1"},{"kind":"number","nativeSrc":"11000:2:1","nodeType":"YulLiteral","src":"11000:2:1","type":"","value":"96"}],"functionName":{"name":"slt","nativeSrc":"10971:3:1","nodeType":"YulIdentifier","src":"10971:3:1"},"nativeSrc":"10971:32:1","nodeType":"YulFunctionCall","src":"10971:32:1"},"nativeSrc":"10968:52:1","nodeType":"YulIf","src":"10968:52:1"},{"nativeSrc":"11029:39:1","nodeType":"YulAssignment","src":"11029:39:1","value":{"arguments":[{"name":"headStart","nativeSrc":"11058:9:1","nodeType":"YulIdentifier","src":"11058:9:1"}],"functionName":{"name":"abi_decode_address","nativeSrc":"11039:18:1","nodeType":"YulIdentifier","src":"11039:18:1"},"nativeSrc":"11039:29:1","nodeType":"YulFunctionCall","src":"11039:29:1"},"variableNames":[{"name":"value0","nativeSrc":"11029:6:1","nodeType":"YulIdentifier","src":"11029:6:1"}]},{"nativeSrc":"11077:14:1","nodeType":"YulVariableDeclaration","src":"11077:14:1","value":{"kind":"number","nativeSrc":"11090:1:1","nodeType":"YulLiteral","src":"11090:1:1","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"11081:5:1","nodeType":"YulTypedName","src":"11081:5:1","type":""}]},{"nativeSrc":"11100:41:1","nodeType":"YulAssignment","src":"11100:41:1","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"11126:9:1","nodeType":"YulIdentifier","src":"11126:9:1"},{"kind":"number","nativeSrc":"11137:2:1","nodeType":"YulLiteral","src":"11137:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"11122:3:1","nodeType":"YulIdentifier","src":"11122:3:1"},"nativeSrc":"11122:18:1","nodeType":"YulFunctionCall","src":"11122:18:1"}],"functionName":{"name":"calldataload","nativeSrc":"11109:12:1","nodeType":"YulIdentifier","src":"11109:12:1"},"nativeSrc":"11109:32:1","nodeType":"YulFunctionCall","src":"11109:32:1"},"variableNames":[{"name":"value","nativeSrc":"11100:5:1","nodeType":"YulIdentifier","src":"11100:5:1"}]},{"nativeSrc":"11150:15:1","nodeType":"YulAssignment","src":"11150:15:1","value":{"name":"value","nativeSrc":"11160:5:1","nodeType":"YulIdentifier","src":"11160:5:1"},"variableNames":[{"name":"value1","nativeSrc":"11150:6:1","nodeType":"YulIdentifier","src":"11150:6:1"}]},{"nativeSrc":"11174:16:1","nodeType":"YulVariableDeclaration","src":"11174:16:1","value":{"kind":"number","nativeSrc":"11189:1:1","nodeType":"YulLiteral","src":"11189:1:1","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"11178:7:1","nodeType":"YulTypedName","src":"11178:7:1","type":""}]},{"nativeSrc":"11199:43:1","nodeType":"YulAssignment","src":"11199:43:1","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"11227:9:1","nodeType":"YulIdentifier","src":"11227:9:1"},{"kind":"number","nativeSrc":"11238:2:1","nodeType":"YulLiteral","src":"11238:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"11223:3:1","nodeType":"YulIdentifier","src":"11223:3:1"},"nativeSrc":"11223:18:1","nodeType":"YulFunctionCall","src":"11223:18:1"}],"functionName":{"name":"calldataload","nativeSrc":"11210:12:1","nodeType":"YulIdentifier","src":"11210:12:1"},"nativeSrc":"11210:32:1","nodeType":"YulFunctionCall","src":"11210:32:1"},"variableNames":[{"name":"value_1","nativeSrc":"11199:7:1","nodeType":"YulIdentifier","src":"11199:7:1"}]},{"nativeSrc":"11251:17:1","nodeType":"YulAssignment","src":"11251:17:1","value":{"name":"value_1","nativeSrc":"11261:7:1","nodeType":"YulIdentifier","src":"11261:7:1"},"variableNames":[{"name":"value2","nativeSrc":"11251:6:1","nodeType":"YulIdentifier","src":"11251:6:1"}]}]},"name":"abi_decode_tuple_t_addresst_uint256t_uint256","nativeSrc":"10854:420:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"10908:9:1","nodeType":"YulTypedName","src":"10908:9:1","type":""},{"name":"dataEnd","nativeSrc":"10919:7:1","nodeType":"YulTypedName","src":"10919:7:1","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"10931:6:1","nodeType":"YulTypedName","src":"10931:6:1","type":""},{"name":"value1","nativeSrc":"10939:6:1","nodeType":"YulTypedName","src":"10939:6:1","type":""},{"name":"value2","nativeSrc":"10947:6:1","nodeType":"YulTypedName","src":"10947:6:1","type":""}],"src":"10854:420:1"},{"body":{"nativeSrc":"11436:244:1","nodeType":"YulBlock","src":"11436:244:1","statements":[{"nativeSrc":"11446:26:1","nodeType":"YulAssignment","src":"11446:26:1","value":{"arguments":[{"name":"headStart","nativeSrc":"11458:9:1","nodeType":"YulIdentifier","src":"11458:9:1"},{"kind":"number","nativeSrc":"11469:2:1","nodeType":"YulLiteral","src":"11469:2:1","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"11454:3:1","nodeType":"YulIdentifier","src":"11454:3:1"},"nativeSrc":"11454:18:1","nodeType":"YulFunctionCall","src":"11454:18:1"},"variableNames":[{"name":"tail","nativeSrc":"11446:4:1","nodeType":"YulIdentifier","src":"11446:4:1"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"11488:9:1","nodeType":"YulIdentifier","src":"11488:9:1"},{"arguments":[{"name":"value0","nativeSrc":"11503:6:1","nodeType":"YulIdentifier","src":"11503:6:1"},{"kind":"number","nativeSrc":"11511:34:1","nodeType":"YulLiteral","src":"11511:34:1","type":"","value":"0xffffffffffffffffffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"11499:3:1","nodeType":"YulIdentifier","src":"11499:3:1"},"nativeSrc":"11499:47:1","nodeType":"YulFunctionCall","src":"11499:47:1"}],"functionName":{"name":"mstore","nativeSrc":"11481:6:1","nodeType":"YulIdentifier","src":"11481:6:1"},"nativeSrc":"11481:66:1","nodeType":"YulFunctionCall","src":"11481:66:1"},"nativeSrc":"11481:66:1","nodeType":"YulExpressionStatement","src":"11481:66:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"11567:9:1","nodeType":"YulIdentifier","src":"11567:9:1"},{"kind":"number","nativeSrc":"11578:2:1","nodeType":"YulLiteral","src":"11578:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"11563:3:1","nodeType":"YulIdentifier","src":"11563:3:1"},"nativeSrc":"11563:18:1","nodeType":"YulFunctionCall","src":"11563:18:1"},{"arguments":[{"name":"value1","nativeSrc":"11587:6:1","nodeType":"YulIdentifier","src":"11587:6:1"},{"kind":"number","nativeSrc":"11595:34:1","nodeType":"YulLiteral","src":"11595:34:1","type":"","value":"0xffffffffffffffffffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"11583:3:1","nodeType":"YulIdentifier","src":"11583:3:1"},"nativeSrc":"11583:47:1","nodeType":"YulFunctionCall","src":"11583:47:1"}],"functionName":{"name":"mstore","nativeSrc":"11556:6:1","nodeType":"YulIdentifier","src":"11556:6:1"},"nativeSrc":"11556:75:1","nodeType":"YulFunctionCall","src":"11556:75:1"},"nativeSrc":"11556:75:1","nodeType":"YulExpressionStatement","src":"11556:75:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"11651:9:1","nodeType":"YulIdentifier","src":"11651:9:1"},{"kind":"number","nativeSrc":"11662:2:1","nodeType":"YulLiteral","src":"11662:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"11647:3:1","nodeType":"YulIdentifier","src":"11647:3:1"},"nativeSrc":"11647:18:1","nodeType":"YulFunctionCall","src":"11647:18:1"},{"name":"value2","nativeSrc":"11667:6:1","nodeType":"YulIdentifier","src":"11667:6:1"}],"functionName":{"name":"mstore","nativeSrc":"11640:6:1","nodeType":"YulIdentifier","src":"11640:6:1"},"nativeSrc":"11640:34:1","nodeType":"YulFunctionCall","src":"11640:34:1"},"nativeSrc":"11640:34:1","nodeType":"YulExpressionStatement","src":"11640:34:1"}]},"name":"abi_encode_tuple_t_uint128_t_uint128_t_uint256__to_t_uint128_t_uint128_t_uint256__fromStack_reversed","nativeSrc":"11279:401:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"11389:9:1","nodeType":"YulTypedName","src":"11389:9:1","type":""},{"name":"value2","nativeSrc":"11400:6:1","nodeType":"YulTypedName","src":"11400:6:1","type":""},{"name":"value1","nativeSrc":"11408:6:1","nodeType":"YulTypedName","src":"11408:6:1","type":""},{"name":"value0","nativeSrc":"11416:6:1","nodeType":"YulTypedName","src":"11416:6:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"11427:4:1","nodeType":"YulTypedName","src":"11427:4:1","type":""}],"src":"11279:401:1"},{"body":{"nativeSrc":"11874:650:1","nodeType":"YulBlock","src":"11874:650:1","statements":[{"body":{"nativeSrc":"11921:16:1","nodeType":"YulBlock","src":"11921:16:1","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"11930:1:1","nodeType":"YulLiteral","src":"11930:1:1","type":"","value":"0"},{"kind":"number","nativeSrc":"11933:1:1","nodeType":"YulLiteral","src":"11933:1:1","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"11923:6:1","nodeType":"YulIdentifier","src":"11923:6:1"},"nativeSrc":"11923:12:1","nodeType":"YulFunctionCall","src":"11923:12:1"},"nativeSrc":"11923:12:1","nodeType":"YulExpressionStatement","src":"11923:12:1"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"11895:7:1","nodeType":"YulIdentifier","src":"11895:7:1"},{"name":"headStart","nativeSrc":"11904:9:1","nodeType":"YulIdentifier","src":"11904:9:1"}],"functionName":{"name":"sub","nativeSrc":"11891:3:1","nodeType":"YulIdentifier","src":"11891:3:1"},"nativeSrc":"11891:23:1","nodeType":"YulFunctionCall","src":"11891:23:1"},{"kind":"number","nativeSrc":"11916:3:1","nodeType":"YulLiteral","src":"11916:3:1","type":"","value":"224"}],"functionName":{"name":"slt","nativeSrc":"11887:3:1","nodeType":"YulIdentifier","src":"11887:3:1"},"nativeSrc":"11887:33:1","nodeType":"YulFunctionCall","src":"11887:33:1"},"nativeSrc":"11884:53:1","nodeType":"YulIf","src":"11884:53:1"},{"nativeSrc":"11946:39:1","nodeType":"YulAssignment","src":"11946:39:1","value":{"arguments":[{"name":"headStart","nativeSrc":"11975:9:1","nodeType":"YulIdentifier","src":"11975:9:1"}],"functionName":{"name":"abi_decode_address","nativeSrc":"11956:18:1","nodeType":"YulIdentifier","src":"11956:18:1"},"nativeSrc":"11956:29:1","nodeType":"YulFunctionCall","src":"11956:29:1"},"variableNames":[{"name":"value0","nativeSrc":"11946:6:1","nodeType":"YulIdentifier","src":"11946:6:1"}]},{"nativeSrc":"11994:60:1","nodeType":"YulAssignment","src":"11994:60:1","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"12039:9:1","nodeType":"YulIdentifier","src":"12039:9:1"},{"kind":"number","nativeSrc":"12050:2:1","nodeType":"YulLiteral","src":"12050:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"12035:3:1","nodeType":"YulIdentifier","src":"12035:3:1"},"nativeSrc":"12035:18:1","nodeType":"YulFunctionCall","src":"12035:18:1"}],"functionName":{"name":"abi_decode_enum_DelegationType","nativeSrc":"12004:30:1","nodeType":"YulIdentifier","src":"12004:30:1"},"nativeSrc":"12004:50:1","nodeType":"YulFunctionCall","src":"12004:50:1"},"variableNames":[{"name":"value1","nativeSrc":"11994:6:1","nodeType":"YulIdentifier","src":"11994:6:1"}]},{"nativeSrc":"12063:14:1","nodeType":"YulVariableDeclaration","src":"12063:14:1","value":{"kind":"number","nativeSrc":"12076:1:1","nodeType":"YulLiteral","src":"12076:1:1","type":"","value":"0"},"variables":[{"name":"value","nativeSrc":"12067:5:1","nodeType":"YulTypedName","src":"12067:5:1","type":""}]},{"nativeSrc":"12086:41:1","nodeType":"YulAssignment","src":"12086:41:1","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"12112:9:1","nodeType":"YulIdentifier","src":"12112:9:1"},{"kind":"number","nativeSrc":"12123:2:1","nodeType":"YulLiteral","src":"12123:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"12108:3:1","nodeType":"YulIdentifier","src":"12108:3:1"},"nativeSrc":"12108:18:1","nodeType":"YulFunctionCall","src":"12108:18:1"}],"functionName":{"name":"calldataload","nativeSrc":"12095:12:1","nodeType":"YulIdentifier","src":"12095:12:1"},"nativeSrc":"12095:32:1","nodeType":"YulFunctionCall","src":"12095:32:1"},"variableNames":[{"name":"value","nativeSrc":"12086:5:1","nodeType":"YulIdentifier","src":"12086:5:1"}]},{"nativeSrc":"12136:15:1","nodeType":"YulAssignment","src":"12136:15:1","value":{"name":"value","nativeSrc":"12146:5:1","nodeType":"YulIdentifier","src":"12146:5:1"},"variableNames":[{"name":"value2","nativeSrc":"12136:6:1","nodeType":"YulIdentifier","src":"12136:6:1"}]},{"nativeSrc":"12160:16:1","nodeType":"YulVariableDeclaration","src":"12160:16:1","value":{"kind":"number","nativeSrc":"12175:1:1","nodeType":"YulLiteral","src":"12175:1:1","type":"","value":"0"},"variables":[{"name":"value_1","nativeSrc":"12164:7:1","nodeType":"YulTypedName","src":"12164:7:1","type":""}]},{"nativeSrc":"12185:43:1","nodeType":"YulAssignment","src":"12185:43:1","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"12213:9:1","nodeType":"YulIdentifier","src":"12213:9:1"},{"kind":"number","nativeSrc":"12224:2:1","nodeType":"YulLiteral","src":"12224:2:1","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"12209:3:1","nodeType":"YulIdentifier","src":"12209:3:1"},"nativeSrc":"12209:18:1","nodeType":"YulFunctionCall","src":"12209:18:1"}],"functionName":{"name":"calldataload","nativeSrc":"12196:12:1","nodeType":"YulIdentifier","src":"12196:12:1"},"nativeSrc":"12196:32:1","nodeType":"YulFunctionCall","src":"12196:32:1"},"variableNames":[{"name":"value_1","nativeSrc":"12185:7:1","nodeType":"YulIdentifier","src":"12185:7:1"}]},{"nativeSrc":"12237:17:1","nodeType":"YulAssignment","src":"12237:17:1","value":{"name":"value_1","nativeSrc":"12247:7:1","nodeType":"YulIdentifier","src":"12247:7:1"},"variableNames":[{"name":"value3","nativeSrc":"12237:6:1","nodeType":"YulIdentifier","src":"12237:6:1"}]},{"nativeSrc":"12263:47:1","nodeType":"YulAssignment","src":"12263:47:1","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"12294:9:1","nodeType":"YulIdentifier","src":"12294:9:1"},{"kind":"number","nativeSrc":"12305:3:1","nodeType":"YulLiteral","src":"12305:3:1","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"12290:3:1","nodeType":"YulIdentifier","src":"12290:3:1"},"nativeSrc":"12290:19:1","nodeType":"YulFunctionCall","src":"12290:19:1"}],"functionName":{"name":"abi_decode_uint8","nativeSrc":"12273:16:1","nodeType":"YulIdentifier","src":"12273:16:1"},"nativeSrc":"12273:37:1","nodeType":"YulFunctionCall","src":"12273:37:1"},"variableNames":[{"name":"value4","nativeSrc":"12263:6:1","nodeType":"YulIdentifier","src":"12263:6:1"}]},{"nativeSrc":"12319:16:1","nodeType":"YulVariableDeclaration","src":"12319:16:1","value":{"kind":"number","nativeSrc":"12334:1:1","nodeType":"YulLiteral","src":"12334:1:1","type":"","value":"0"},"variables":[{"name":"value_2","nativeSrc":"12323:7:1","nodeType":"YulTypedName","src":"12323:7:1","type":""}]},{"nativeSrc":"12344:44:1","nodeType":"YulAssignment","src":"12344:44:1","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"12372:9:1","nodeType":"YulIdentifier","src":"12372:9:1"},{"kind":"number","nativeSrc":"12383:3:1","nodeType":"YulLiteral","src":"12383:3:1","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"12368:3:1","nodeType":"YulIdentifier","src":"12368:3:1"},"nativeSrc":"12368:19:1","nodeType":"YulFunctionCall","src":"12368:19:1"}],"functionName":{"name":"calldataload","nativeSrc":"12355:12:1","nodeType":"YulIdentifier","src":"12355:12:1"},"nativeSrc":"12355:33:1","nodeType":"YulFunctionCall","src":"12355:33:1"},"variableNames":[{"name":"value_2","nativeSrc":"12344:7:1","nodeType":"YulIdentifier","src":"12344:7:1"}]},{"nativeSrc":"12397:17:1","nodeType":"YulAssignment","src":"12397:17:1","value":{"name":"value_2","nativeSrc":"12407:7:1","nodeType":"YulIdentifier","src":"12407:7:1"},"variableNames":[{"name":"value5","nativeSrc":"12397:6:1","nodeType":"YulIdentifier","src":"12397:6:1"}]},{"nativeSrc":"12423:16:1","nodeType":"YulVariableDeclaration","src":"12423:16:1","value":{"kind":"number","nativeSrc":"12438:1:1","nodeType":"YulLiteral","src":"12438:1:1","type":"","value":"0"},"variables":[{"name":"value_3","nativeSrc":"12427:7:1","nodeType":"YulTypedName","src":"12427:7:1","type":""}]},{"nativeSrc":"12448:44:1","nodeType":"YulAssignment","src":"12448:44:1","value":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"12476:9:1","nodeType":"YulIdentifier","src":"12476:9:1"},{"kind":"number","nativeSrc":"12487:3:1","nodeType":"YulLiteral","src":"12487:3:1","type":"","value":"192"}],"functionName":{"name":"add","nativeSrc":"12472:3:1","nodeType":"YulIdentifier","src":"12472:3:1"},"nativeSrc":"12472:19:1","nodeType":"YulFunctionCall","src":"12472:19:1"}],"functionName":{"name":"calldataload","nativeSrc":"12459:12:1","nodeType":"YulIdentifier","src":"12459:12:1"},"nativeSrc":"12459:33:1","nodeType":"YulFunctionCall","src":"12459:33:1"},"variableNames":[{"name":"value_3","nativeSrc":"12448:7:1","nodeType":"YulIdentifier","src":"12448:7:1"}]},{"nativeSrc":"12501:17:1","nodeType":"YulAssignment","src":"12501:17:1","value":{"name":"value_3","nativeSrc":"12511:7:1","nodeType":"YulIdentifier","src":"12511:7:1"},"variableNames":[{"name":"value6","nativeSrc":"12501:6:1","nodeType":"YulIdentifier","src":"12501:6:1"}]}]},"name":"abi_decode_tuple_t_addresst_enum$_DelegationType_$1088t_uint256t_uint256t_uint8t_bytes32t_bytes32","nativeSrc":"11685:839:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"11792:9:1","nodeType":"YulTypedName","src":"11792:9:1","type":""},{"name":"dataEnd","nativeSrc":"11803:7:1","nodeType":"YulTypedName","src":"11803:7:1","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"11815:6:1","nodeType":"YulTypedName","src":"11815:6:1","type":""},{"name":"value1","nativeSrc":"11823:6:1","nodeType":"YulTypedName","src":"11823:6:1","type":""},{"name":"value2","nativeSrc":"11831:6:1","nodeType":"YulTypedName","src":"11831:6:1","type":""},{"name":"value3","nativeSrc":"11839:6:1","nodeType":"YulTypedName","src":"11839:6:1","type":""},{"name":"value4","nativeSrc":"11847:6:1","nodeType":"YulTypedName","src":"11847:6:1","type":""},{"name":"value5","nativeSrc":"11855:6:1","nodeType":"YulTypedName","src":"11855:6:1","type":""},{"name":"value6","nativeSrc":"11863:6:1","nodeType":"YulTypedName","src":"11863:6:1","type":""}],"src":"11685:839:1"},{"body":{"nativeSrc":"12703:175:1","nodeType":"YulBlock","src":"12703:175:1","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"12720:9:1","nodeType":"YulIdentifier","src":"12720:9:1"},{"kind":"number","nativeSrc":"12731:2:1","nodeType":"YulLiteral","src":"12731:2:1","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"12713:6:1","nodeType":"YulIdentifier","src":"12713:6:1"},"nativeSrc":"12713:21:1","nodeType":"YulFunctionCall","src":"12713:21:1"},"nativeSrc":"12713:21:1","nodeType":"YulExpressionStatement","src":"12713:21:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"12754:9:1","nodeType":"YulIdentifier","src":"12754:9:1"},{"kind":"number","nativeSrc":"12765:2:1","nodeType":"YulLiteral","src":"12765:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"12750:3:1","nodeType":"YulIdentifier","src":"12750:3:1"},"nativeSrc":"12750:18:1","nodeType":"YulFunctionCall","src":"12750:18:1"},{"kind":"number","nativeSrc":"12770:2:1","nodeType":"YulLiteral","src":"12770:2:1","type":"","value":"25"}],"functionName":{"name":"mstore","nativeSrc":"12743:6:1","nodeType":"YulIdentifier","src":"12743:6:1"},"nativeSrc":"12743:30:1","nodeType":"YulFunctionCall","src":"12743:30:1"},"nativeSrc":"12743:30:1","nodeType":"YulExpressionStatement","src":"12743:30:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"12793:9:1","nodeType":"YulIdentifier","src":"12793:9:1"},{"kind":"number","nativeSrc":"12804:2:1","nodeType":"YulLiteral","src":"12804:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"12789:3:1","nodeType":"YulIdentifier","src":"12789:3:1"},"nativeSrc":"12789:18:1","nodeType":"YulFunctionCall","src":"12789:18:1"},{"hexValue":"43414c4c45525f4e4f545f534c415348494e475f41444d494e","kind":"string","nativeSrc":"12809:27:1","nodeType":"YulLiteral","src":"12809:27:1","type":"","value":"CALLER_NOT_SLASHING_ADMIN"}],"functionName":{"name":"mstore","nativeSrc":"12782:6:1","nodeType":"YulIdentifier","src":"12782:6:1"},"nativeSrc":"12782:55:1","nodeType":"YulFunctionCall","src":"12782:55:1"},"nativeSrc":"12782:55:1","nodeType":"YulExpressionStatement","src":"12782:55:1"},{"nativeSrc":"12846:26:1","nodeType":"YulAssignment","src":"12846:26:1","value":{"arguments":[{"name":"headStart","nativeSrc":"12858:9:1","nodeType":"YulIdentifier","src":"12858:9:1"},{"kind":"number","nativeSrc":"12869:2:1","nodeType":"YulLiteral","src":"12869:2:1","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"12854:3:1","nodeType":"YulIdentifier","src":"12854:3:1"},"nativeSrc":"12854:18:1","nodeType":"YulFunctionCall","src":"12854:18:1"},"variableNames":[{"name":"tail","nativeSrc":"12846:4:1","nodeType":"YulIdentifier","src":"12846:4:1"}]}]},"name":"abi_encode_tuple_t_stringliteral_6fb33ededa50927431023a1ca5722fb9abe7b87aeeb47e46d1f13b646b0719ba__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"12529:349:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"12680:9:1","nodeType":"YulTypedName","src":"12680:9:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"12694:4:1","nodeType":"YulTypedName","src":"12694:4:1","type":""}],"src":"12529:349:1"},{"body":{"nativeSrc":"13057:179:1","nodeType":"YulBlock","src":"13057:179:1","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"13074:9:1","nodeType":"YulIdentifier","src":"13074:9:1"},{"kind":"number","nativeSrc":"13085:2:1","nodeType":"YulLiteral","src":"13085:2:1","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"13067:6:1","nodeType":"YulIdentifier","src":"13067:6:1"},"nativeSrc":"13067:21:1","nodeType":"YulFunctionCall","src":"13067:21:1"},"nativeSrc":"13067:21:1","nodeType":"YulExpressionStatement","src":"13067:21:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"13108:9:1","nodeType":"YulIdentifier","src":"13108:9:1"},{"kind":"number","nativeSrc":"13119:2:1","nodeType":"YulLiteral","src":"13119:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"13104:3:1","nodeType":"YulIdentifier","src":"13104:3:1"},"nativeSrc":"13104:18:1","nodeType":"YulFunctionCall","src":"13104:18:1"},{"kind":"number","nativeSrc":"13124:2:1","nodeType":"YulLiteral","src":"13124:2:1","type":"","value":"29"}],"functionName":{"name":"mstore","nativeSrc":"13097:6:1","nodeType":"YulIdentifier","src":"13097:6:1"},"nativeSrc":"13097:30:1","nodeType":"YulFunctionCall","src":"13097:30:1"},"nativeSrc":"13097:30:1","nodeType":"YulExpressionStatement","src":"13097:30:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"13147:9:1","nodeType":"YulIdentifier","src":"13147:9:1"},{"kind":"number","nativeSrc":"13158:2:1","nodeType":"YulLiteral","src":"13158:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"13143:3:1","nodeType":"YulIdentifier","src":"13143:3:1"},"nativeSrc":"13143:18:1","nodeType":"YulFunctionCall","src":"13143:18:1"},{"hexValue":"50524556494f55535f534c415348494e475f4e4f545f534554544c4544","kind":"string","nativeSrc":"13163:31:1","nodeType":"YulLiteral","src":"13163:31:1","type":"","value":"PREVIOUS_SLASHING_NOT_SETTLED"}],"functionName":{"name":"mstore","nativeSrc":"13136:6:1","nodeType":"YulIdentifier","src":"13136:6:1"},"nativeSrc":"13136:59:1","nodeType":"YulFunctionCall","src":"13136:59:1"},"nativeSrc":"13136:59:1","nodeType":"YulExpressionStatement","src":"13136:59:1"},{"nativeSrc":"13204:26:1","nodeType":"YulAssignment","src":"13204:26:1","value":{"arguments":[{"name":"headStart","nativeSrc":"13216:9:1","nodeType":"YulIdentifier","src":"13216:9:1"},{"kind":"number","nativeSrc":"13227:2:1","nodeType":"YulLiteral","src":"13227:2:1","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"13212:3:1","nodeType":"YulIdentifier","src":"13212:3:1"},"nativeSrc":"13212:18:1","nodeType":"YulFunctionCall","src":"13212:18:1"},"variableNames":[{"name":"tail","nativeSrc":"13204:4:1","nodeType":"YulIdentifier","src":"13204:4:1"}]}]},"name":"abi_encode_tuple_t_stringliteral_f77daace20469de8df4d27824d8f88ae642c918133f638a98e78576c5af835a5__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"12883:353:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"13034:9:1","nodeType":"YulTypedName","src":"13034:9:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"13048:4:1","nodeType":"YulTypedName","src":"13048:4:1","type":""}],"src":"12883:353:1"},{"body":{"nativeSrc":"13415:161:1","nodeType":"YulBlock","src":"13415:161:1","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"13432:9:1","nodeType":"YulIdentifier","src":"13432:9:1"},{"kind":"number","nativeSrc":"13443:2:1","nodeType":"YulLiteral","src":"13443:2:1","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"13425:6:1","nodeType":"YulIdentifier","src":"13425:6:1"},"nativeSrc":"13425:21:1","nodeType":"YulFunctionCall","src":"13425:21:1"},"nativeSrc":"13425:21:1","nodeType":"YulExpressionStatement","src":"13425:21:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"13466:9:1","nodeType":"YulIdentifier","src":"13466:9:1"},{"kind":"number","nativeSrc":"13477:2:1","nodeType":"YulLiteral","src":"13477:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"13462:3:1","nodeType":"YulIdentifier","src":"13462:3:1"},"nativeSrc":"13462:18:1","nodeType":"YulFunctionCall","src":"13462:18:1"},{"kind":"number","nativeSrc":"13482:2:1","nodeType":"YulLiteral","src":"13482:2:1","type":"","value":"11"}],"functionName":{"name":"mstore","nativeSrc":"13455:6:1","nodeType":"YulIdentifier","src":"13455:6:1"},"nativeSrc":"13455:30:1","nodeType":"YulFunctionCall","src":"13455:30:1"},"nativeSrc":"13455:30:1","nodeType":"YulExpressionStatement","src":"13455:30:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"13505:9:1","nodeType":"YulIdentifier","src":"13505:9:1"},{"kind":"number","nativeSrc":"13516:2:1","nodeType":"YulLiteral","src":"13516:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"13501:3:1","nodeType":"YulIdentifier","src":"13501:3:1"},"nativeSrc":"13501:18:1","nodeType":"YulFunctionCall","src":"13501:18:1"},{"hexValue":"5a45524f5f414d4f554e54","kind":"string","nativeSrc":"13521:13:1","nodeType":"YulLiteral","src":"13521:13:1","type":"","value":"ZERO_AMOUNT"}],"functionName":{"name":"mstore","nativeSrc":"13494:6:1","nodeType":"YulIdentifier","src":"13494:6:1"},"nativeSrc":"13494:41:1","nodeType":"YulFunctionCall","src":"13494:41:1"},"nativeSrc":"13494:41:1","nodeType":"YulExpressionStatement","src":"13494:41:1"},{"nativeSrc":"13544:26:1","nodeType":"YulAssignment","src":"13544:26:1","value":{"arguments":[{"name":"headStart","nativeSrc":"13556:9:1","nodeType":"YulIdentifier","src":"13556:9:1"},{"kind":"number","nativeSrc":"13567:2:1","nodeType":"YulLiteral","src":"13567:2:1","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"13552:3:1","nodeType":"YulIdentifier","src":"13552:3:1"},"nativeSrc":"13552:18:1","nodeType":"YulFunctionCall","src":"13552:18:1"},"variableNames":[{"name":"tail","nativeSrc":"13544:4:1","nodeType":"YulIdentifier","src":"13544:4:1"}]}]},"name":"abi_encode_tuple_t_stringliteral_ad8e292265788ac5c19f708ed96612bf3229f5fbdf9e1b9b3466c3f5a1b60243__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"13241:335:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"13392:9:1","nodeType":"YulTypedName","src":"13392:9:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"13406:4:1","nodeType":"YulTypedName","src":"13406:4:1","type":""}],"src":"13241:335:1"},{"body":{"nativeSrc":"13613:95:1","nodeType":"YulBlock","src":"13613:95:1","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"13630:1:1","nodeType":"YulLiteral","src":"13630:1:1","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"13637:3:1","nodeType":"YulLiteral","src":"13637:3:1","type":"","value":"224"},{"kind":"number","nativeSrc":"13642:10:1","nodeType":"YulLiteral","src":"13642:10:1","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"13633:3:1","nodeType":"YulIdentifier","src":"13633:3:1"},"nativeSrc":"13633:20:1","nodeType":"YulFunctionCall","src":"13633:20:1"}],"functionName":{"name":"mstore","nativeSrc":"13623:6:1","nodeType":"YulIdentifier","src":"13623:6:1"},"nativeSrc":"13623:31:1","nodeType":"YulFunctionCall","src":"13623:31:1"},"nativeSrc":"13623:31:1","nodeType":"YulExpressionStatement","src":"13623:31:1"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"13670:1:1","nodeType":"YulLiteral","src":"13670:1:1","type":"","value":"4"},{"kind":"number","nativeSrc":"13673:4:1","nodeType":"YulLiteral","src":"13673:4:1","type":"","value":"0x11"}],"functionName":{"name":"mstore","nativeSrc":"13663:6:1","nodeType":"YulIdentifier","src":"13663:6:1"},"nativeSrc":"13663:15:1","nodeType":"YulFunctionCall","src":"13663:15:1"},"nativeSrc":"13663:15:1","nodeType":"YulExpressionStatement","src":"13663:15:1"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"13694:1:1","nodeType":"YulLiteral","src":"13694:1:1","type":"","value":"0"},{"kind":"number","nativeSrc":"13697:4:1","nodeType":"YulLiteral","src":"13697:4:1","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"13687:6:1","nodeType":"YulIdentifier","src":"13687:6:1"},"nativeSrc":"13687:15:1","nodeType":"YulFunctionCall","src":"13687:15:1"},"nativeSrc":"13687:15:1","nodeType":"YulExpressionStatement","src":"13687:15:1"}]},"name":"panic_error_0x11","nativeSrc":"13581:127:1","nodeType":"YulFunctionDefinition","src":"13581:127:1"},{"body":{"nativeSrc":"13762:79:1","nodeType":"YulBlock","src":"13762:79:1","statements":[{"nativeSrc":"13772:17:1","nodeType":"YulAssignment","src":"13772:17:1","value":{"arguments":[{"name":"x","nativeSrc":"13784:1:1","nodeType":"YulIdentifier","src":"13784:1:1"},{"name":"y","nativeSrc":"13787:1:1","nodeType":"YulIdentifier","src":"13787:1:1"}],"functionName":{"name":"sub","nativeSrc":"13780:3:1","nodeType":"YulIdentifier","src":"13780:3:1"},"nativeSrc":"13780:9:1","nodeType":"YulFunctionCall","src":"13780:9:1"},"variableNames":[{"name":"diff","nativeSrc":"13772:4:1","nodeType":"YulIdentifier","src":"13772:4:1"}]},{"body":{"nativeSrc":"13813:22:1","nodeType":"YulBlock","src":"13813:22:1","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"13815:16:1","nodeType":"YulIdentifier","src":"13815:16:1"},"nativeSrc":"13815:18:1","nodeType":"YulFunctionCall","src":"13815:18:1"},"nativeSrc":"13815:18:1","nodeType":"YulExpressionStatement","src":"13815:18:1"}]},"condition":{"arguments":[{"name":"diff","nativeSrc":"13804:4:1","nodeType":"YulIdentifier","src":"13804:4:1"},{"name":"x","nativeSrc":"13810:1:1","nodeType":"YulIdentifier","src":"13810:1:1"}],"functionName":{"name":"gt","nativeSrc":"13801:2:1","nodeType":"YulIdentifier","src":"13801:2:1"},"nativeSrc":"13801:11:1","nodeType":"YulFunctionCall","src":"13801:11:1"},"nativeSrc":"13798:37:1","nodeType":"YulIf","src":"13798:37:1"}]},"name":"checked_sub_t_uint256","nativeSrc":"13713:128:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"13744:1:1","nodeType":"YulTypedName","src":"13744:1:1","type":""},{"name":"y","nativeSrc":"13747:1:1","nodeType":"YulTypedName","src":"13747:1:1","type":""}],"returnVariables":[{"name":"diff","nativeSrc":"13753:4:1","nodeType":"YulTypedName","src":"13753:4:1","type":""}],"src":"13713:128:1"},{"body":{"nativeSrc":"14020:170:1","nodeType":"YulBlock","src":"14020:170:1","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"14037:9:1","nodeType":"YulIdentifier","src":"14037:9:1"},{"kind":"number","nativeSrc":"14048:2:1","nodeType":"YulLiteral","src":"14048:2:1","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"14030:6:1","nodeType":"YulIdentifier","src":"14030:6:1"},"nativeSrc":"14030:21:1","nodeType":"YulFunctionCall","src":"14030:21:1"},"nativeSrc":"14030:21:1","nodeType":"YulExpressionStatement","src":"14030:21:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"14071:9:1","nodeType":"YulIdentifier","src":"14071:9:1"},{"kind":"number","nativeSrc":"14082:2:1","nodeType":"YulLiteral","src":"14082:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"14067:3:1","nodeType":"YulIdentifier","src":"14067:3:1"},"nativeSrc":"14067:18:1","nodeType":"YulFunctionCall","src":"14067:18:1"},{"kind":"number","nativeSrc":"14087:2:1","nodeType":"YulLiteral","src":"14087:2:1","type":"","value":"20"}],"functionName":{"name":"mstore","nativeSrc":"14060:6:1","nodeType":"YulIdentifier","src":"14060:6:1"},"nativeSrc":"14060:30:1","nodeType":"YulFunctionCall","src":"14060:30:1"},"nativeSrc":"14060:30:1","nodeType":"YulExpressionStatement","src":"14060:30:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"14110:9:1","nodeType":"YulIdentifier","src":"14110:9:1"},{"kind":"number","nativeSrc":"14121:2:1","nodeType":"YulLiteral","src":"14121:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"14106:3:1","nodeType":"YulIdentifier","src":"14106:3:1"},"nativeSrc":"14106:18:1","nodeType":"YulFunctionCall","src":"14106:18:1"},{"hexValue":"52454d41494e494e475f4c545f4d494e494d554d","kind":"string","nativeSrc":"14126:22:1","nodeType":"YulLiteral","src":"14126:22:1","type":"","value":"REMAINING_LT_MINIMUM"}],"functionName":{"name":"mstore","nativeSrc":"14099:6:1","nodeType":"YulIdentifier","src":"14099:6:1"},"nativeSrc":"14099:50:1","nodeType":"YulFunctionCall","src":"14099:50:1"},"nativeSrc":"14099:50:1","nodeType":"YulExpressionStatement","src":"14099:50:1"},{"nativeSrc":"14158:26:1","nodeType":"YulAssignment","src":"14158:26:1","value":{"arguments":[{"name":"headStart","nativeSrc":"14170:9:1","nodeType":"YulIdentifier","src":"14170:9:1"},{"kind":"number","nativeSrc":"14181:2:1","nodeType":"YulLiteral","src":"14181:2:1","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"14166:3:1","nodeType":"YulIdentifier","src":"14166:3:1"},"nativeSrc":"14166:18:1","nodeType":"YulFunctionCall","src":"14166:18:1"},"variableNames":[{"name":"tail","nativeSrc":"14158:4:1","nodeType":"YulIdentifier","src":"14158:4:1"}]}]},"name":"abi_encode_tuple_t_stringliteral_e42e312e91b2c7decf2c17d44adbe92f5dbd21dd2fe6c255c257f03ae436b4f4__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"13846:344:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"13997:9:1","nodeType":"YulTypedName","src":"13997:9:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"14011:4:1","nodeType":"YulTypedName","src":"14011:4:1","type":""}],"src":"13846:344:1"},{"body":{"nativeSrc":"14250:325:1","nodeType":"YulBlock","src":"14250:325:1","statements":[{"nativeSrc":"14260:22:1","nodeType":"YulAssignment","src":"14260:22:1","value":{"arguments":[{"kind":"number","nativeSrc":"14274:1:1","nodeType":"YulLiteral","src":"14274:1:1","type":"","value":"1"},{"name":"data","nativeSrc":"14277:4:1","nodeType":"YulIdentifier","src":"14277:4:1"}],"functionName":{"name":"shr","nativeSrc":"14270:3:1","nodeType":"YulIdentifier","src":"14270:3:1"},"nativeSrc":"14270:12:1","nodeType":"YulFunctionCall","src":"14270:12:1"},"variableNames":[{"name":"length","nativeSrc":"14260:6:1","nodeType":"YulIdentifier","src":"14260:6:1"}]},{"nativeSrc":"14291:38:1","nodeType":"YulVariableDeclaration","src":"14291:38:1","value":{"arguments":[{"name":"data","nativeSrc":"14321:4:1","nodeType":"YulIdentifier","src":"14321:4:1"},{"kind":"number","nativeSrc":"14327:1:1","nodeType":"YulLiteral","src":"14327:1:1","type":"","value":"1"}],"functionName":{"name":"and","nativeSrc":"14317:3:1","nodeType":"YulIdentifier","src":"14317:3:1"},"nativeSrc":"14317:12:1","nodeType":"YulFunctionCall","src":"14317:12:1"},"variables":[{"name":"outOfPlaceEncoding","nativeSrc":"14295:18:1","nodeType":"YulTypedName","src":"14295:18:1","type":""}]},{"body":{"nativeSrc":"14368:31:1","nodeType":"YulBlock","src":"14368:31:1","statements":[{"nativeSrc":"14370:27:1","nodeType":"YulAssignment","src":"14370:27:1","value":{"arguments":[{"name":"length","nativeSrc":"14384:6:1","nodeType":"YulIdentifier","src":"14384:6:1"},{"kind":"number","nativeSrc":"14392:4:1","nodeType":"YulLiteral","src":"14392:4:1","type":"","value":"0x7f"}],"functionName":{"name":"and","nativeSrc":"14380:3:1","nodeType":"YulIdentifier","src":"14380:3:1"},"nativeSrc":"14380:17:1","nodeType":"YulFunctionCall","src":"14380:17:1"},"variableNames":[{"name":"length","nativeSrc":"14370:6:1","nodeType":"YulIdentifier","src":"14370:6:1"}]}]},"condition":{"arguments":[{"name":"outOfPlaceEncoding","nativeSrc":"14348:18:1","nodeType":"YulIdentifier","src":"14348:18:1"}],"functionName":{"name":"iszero","nativeSrc":"14341:6:1","nodeType":"YulIdentifier","src":"14341:6:1"},"nativeSrc":"14341:26:1","nodeType":"YulFunctionCall","src":"14341:26:1"},"nativeSrc":"14338:61:1","nodeType":"YulIf","src":"14338:61:1"},{"body":{"nativeSrc":"14458:111:1","nodeType":"YulBlock","src":"14458:111:1","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"14479:1:1","nodeType":"YulLiteral","src":"14479:1:1","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"14486:3:1","nodeType":"YulLiteral","src":"14486:3:1","type":"","value":"224"},{"kind":"number","nativeSrc":"14491:10:1","nodeType":"YulLiteral","src":"14491:10:1","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"14482:3:1","nodeType":"YulIdentifier","src":"14482:3:1"},"nativeSrc":"14482:20:1","nodeType":"YulFunctionCall","src":"14482:20:1"}],"functionName":{"name":"mstore","nativeSrc":"14472:6:1","nodeType":"YulIdentifier","src":"14472:6:1"},"nativeSrc":"14472:31:1","nodeType":"YulFunctionCall","src":"14472:31:1"},"nativeSrc":"14472:31:1","nodeType":"YulExpressionStatement","src":"14472:31:1"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"14523:1:1","nodeType":"YulLiteral","src":"14523:1:1","type":"","value":"4"},{"kind":"number","nativeSrc":"14526:4:1","nodeType":"YulLiteral","src":"14526:4:1","type":"","value":"0x22"}],"functionName":{"name":"mstore","nativeSrc":"14516:6:1","nodeType":"YulIdentifier","src":"14516:6:1"},"nativeSrc":"14516:15:1","nodeType":"YulFunctionCall","src":"14516:15:1"},"nativeSrc":"14516:15:1","nodeType":"YulExpressionStatement","src":"14516:15:1"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"14551:1:1","nodeType":"YulLiteral","src":"14551:1:1","type":"","value":"0"},{"kind":"number","nativeSrc":"14554:4:1","nodeType":"YulLiteral","src":"14554:4:1","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"14544:6:1","nodeType":"YulIdentifier","src":"14544:6:1"},"nativeSrc":"14544:15:1","nodeType":"YulFunctionCall","src":"14544:15:1"},"nativeSrc":"14544:15:1","nodeType":"YulExpressionStatement","src":"14544:15:1"}]},"condition":{"arguments":[{"name":"outOfPlaceEncoding","nativeSrc":"14414:18:1","nodeType":"YulIdentifier","src":"14414:18:1"},{"arguments":[{"name":"length","nativeSrc":"14437:6:1","nodeType":"YulIdentifier","src":"14437:6:1"},{"kind":"number","nativeSrc":"14445:2:1","nodeType":"YulLiteral","src":"14445:2:1","type":"","value":"32"}],"functionName":{"name":"lt","nativeSrc":"14434:2:1","nodeType":"YulIdentifier","src":"14434:2:1"},"nativeSrc":"14434:14:1","nodeType":"YulFunctionCall","src":"14434:14:1"}],"functionName":{"name":"eq","nativeSrc":"14411:2:1","nodeType":"YulIdentifier","src":"14411:2:1"},"nativeSrc":"14411:38:1","nodeType":"YulFunctionCall","src":"14411:38:1"},"nativeSrc":"14408:161:1","nodeType":"YulIf","src":"14408:161:1"}]},"name":"extract_byte_array_length","nativeSrc":"14195:380:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"data","nativeSrc":"14230:4:1","nodeType":"YulTypedName","src":"14230:4:1","type":""}],"returnVariables":[{"name":"length","nativeSrc":"14239:6:1","nodeType":"YulTypedName","src":"14239:6:1","type":""}],"src":"14195:380:1"},{"body":{"nativeSrc":"14754:173:1","nodeType":"YulBlock","src":"14754:173:1","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"14771:9:1","nodeType":"YulIdentifier","src":"14771:9:1"},{"kind":"number","nativeSrc":"14782:2:1","nodeType":"YulLiteral","src":"14782:2:1","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"14764:6:1","nodeType":"YulIdentifier","src":"14764:6:1"},"nativeSrc":"14764:21:1","nodeType":"YulFunctionCall","src":"14764:21:1"},"nativeSrc":"14764:21:1","nodeType":"YulExpressionStatement","src":"14764:21:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"14805:9:1","nodeType":"YulIdentifier","src":"14805:9:1"},{"kind":"number","nativeSrc":"14816:2:1","nodeType":"YulLiteral","src":"14816:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"14801:3:1","nodeType":"YulIdentifier","src":"14801:3:1"},"nativeSrc":"14801:18:1","nodeType":"YulFunctionCall","src":"14801:18:1"},{"kind":"number","nativeSrc":"14821:2:1","nodeType":"YulLiteral","src":"14821:2:1","type":"","value":"23"}],"functionName":{"name":"mstore","nativeSrc":"14794:6:1","nodeType":"YulIdentifier","src":"14794:6:1"},"nativeSrc":"14794:30:1","nodeType":"YulFunctionCall","src":"14794:30:1"},"nativeSrc":"14794:30:1","nodeType":"YulExpressionStatement","src":"14794:30:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"14844:9:1","nodeType":"YulIdentifier","src":"14844:9:1"},{"kind":"number","nativeSrc":"14855:2:1","nodeType":"YulLiteral","src":"14855:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"14840:3:1","nodeType":"YulIdentifier","src":"14840:3:1"},"nativeSrc":"14840:18:1","nodeType":"YulFunctionCall","src":"14840:18:1"},{"hexValue":"43414c4c45525f4e4f545f434c41494d5f48454c504552","kind":"string","nativeSrc":"14860:25:1","nodeType":"YulLiteral","src":"14860:25:1","type":"","value":"CALLER_NOT_CLAIM_HELPER"}],"functionName":{"name":"mstore","nativeSrc":"14833:6:1","nodeType":"YulIdentifier","src":"14833:6:1"},"nativeSrc":"14833:53:1","nodeType":"YulFunctionCall","src":"14833:53:1"},"nativeSrc":"14833:53:1","nodeType":"YulExpressionStatement","src":"14833:53:1"},{"nativeSrc":"14895:26:1","nodeType":"YulAssignment","src":"14895:26:1","value":{"arguments":[{"name":"headStart","nativeSrc":"14907:9:1","nodeType":"YulIdentifier","src":"14907:9:1"},{"kind":"number","nativeSrc":"14918:2:1","nodeType":"YulLiteral","src":"14918:2:1","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"14903:3:1","nodeType":"YulIdentifier","src":"14903:3:1"},"nativeSrc":"14903:18:1","nodeType":"YulFunctionCall","src":"14903:18:1"},"variableNames":[{"name":"tail","nativeSrc":"14895:4:1","nodeType":"YulIdentifier","src":"14895:4:1"}]}]},"name":"abi_encode_tuple_t_stringliteral_2783cc94d2815145fca23f61c101ffc8ff8c6a01d5b51321a6791062a0684adf__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"14580:347:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"14731:9:1","nodeType":"YulTypedName","src":"14731:9:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"14745:4:1","nodeType":"YulTypedName","src":"14745:4:1","type":""}],"src":"14580:347:1"},{"body":{"nativeSrc":"14980:77:1","nodeType":"YulBlock","src":"14980:77:1","statements":[{"nativeSrc":"14990:16:1","nodeType":"YulAssignment","src":"14990:16:1","value":{"arguments":[{"name":"x","nativeSrc":"15001:1:1","nodeType":"YulIdentifier","src":"15001:1:1"},{"name":"y","nativeSrc":"15004:1:1","nodeType":"YulIdentifier","src":"15004:1:1"}],"functionName":{"name":"add","nativeSrc":"14997:3:1","nodeType":"YulIdentifier","src":"14997:3:1"},"nativeSrc":"14997:9:1","nodeType":"YulFunctionCall","src":"14997:9:1"},"variableNames":[{"name":"sum","nativeSrc":"14990:3:1","nodeType":"YulIdentifier","src":"14990:3:1"}]},{"body":{"nativeSrc":"15029:22:1","nodeType":"YulBlock","src":"15029:22:1","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"15031:16:1","nodeType":"YulIdentifier","src":"15031:16:1"},"nativeSrc":"15031:18:1","nodeType":"YulFunctionCall","src":"15031:18:1"},"nativeSrc":"15031:18:1","nodeType":"YulExpressionStatement","src":"15031:18:1"}]},"condition":{"arguments":[{"name":"x","nativeSrc":"15021:1:1","nodeType":"YulIdentifier","src":"15021:1:1"},{"name":"sum","nativeSrc":"15024:3:1","nodeType":"YulIdentifier","src":"15024:3:1"}],"functionName":{"name":"gt","nativeSrc":"15018:2:1","nodeType":"YulIdentifier","src":"15018:2:1"},"nativeSrc":"15018:10:1","nodeType":"YulFunctionCall","src":"15018:10:1"},"nativeSrc":"15015:36:1","nodeType":"YulIf","src":"15015:36:1"}]},"name":"checked_add_t_uint256","nativeSrc":"14932:125:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"14963:1:1","nodeType":"YulTypedName","src":"14963:1:1","type":""},{"name":"y","nativeSrc":"14966:1:1","nodeType":"YulTypedName","src":"14966:1:1","type":""}],"returnVariables":[{"name":"sum","nativeSrc":"14972:3:1","nodeType":"YulTypedName","src":"14972:3:1","type":""}],"src":"14932:125:1"},{"body":{"nativeSrc":"15236:167:1","nodeType":"YulBlock","src":"15236:167:1","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"15253:9:1","nodeType":"YulIdentifier","src":"15253:9:1"},{"kind":"number","nativeSrc":"15264:2:1","nodeType":"YulLiteral","src":"15264:2:1","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"15246:6:1","nodeType":"YulIdentifier","src":"15246:6:1"},"nativeSrc":"15246:21:1","nodeType":"YulFunctionCall","src":"15246:21:1"},"nativeSrc":"15246:21:1","nodeType":"YulExpressionStatement","src":"15246:21:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"15287:9:1","nodeType":"YulIdentifier","src":"15287:9:1"},{"kind":"number","nativeSrc":"15298:2:1","nodeType":"YulLiteral","src":"15298:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"15283:3:1","nodeType":"YulIdentifier","src":"15283:3:1"},"nativeSrc":"15283:18:1","nodeType":"YulFunctionCall","src":"15283:18:1"},{"kind":"number","nativeSrc":"15303:2:1","nodeType":"YulLiteral","src":"15303:2:1","type":"","value":"17"}],"functionName":{"name":"mstore","nativeSrc":"15276:6:1","nodeType":"YulIdentifier","src":"15276:6:1"},"nativeSrc":"15276:30:1","nodeType":"YulFunctionCall","src":"15276:30:1"},"nativeSrc":"15276:30:1","nodeType":"YulExpressionStatement","src":"15276:30:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"15326:9:1","nodeType":"YulIdentifier","src":"15326:9:1"},{"kind":"number","nativeSrc":"15337:2:1","nodeType":"YulLiteral","src":"15337:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"15322:3:1","nodeType":"YulIdentifier","src":"15322:3:1"},"nativeSrc":"15322:18:1","nodeType":"YulFunctionCall","src":"15322:18:1"},{"hexValue":"414d4f554e545f4c545f4d494e494d554d","kind":"string","nativeSrc":"15342:19:1","nodeType":"YulLiteral","src":"15342:19:1","type":"","value":"AMOUNT_LT_MINIMUM"}],"functionName":{"name":"mstore","nativeSrc":"15315:6:1","nodeType":"YulIdentifier","src":"15315:6:1"},"nativeSrc":"15315:47:1","nodeType":"YulFunctionCall","src":"15315:47:1"},"nativeSrc":"15315:47:1","nodeType":"YulExpressionStatement","src":"15315:47:1"},{"nativeSrc":"15371:26:1","nodeType":"YulAssignment","src":"15371:26:1","value":{"arguments":[{"name":"headStart","nativeSrc":"15383:9:1","nodeType":"YulIdentifier","src":"15383:9:1"},{"kind":"number","nativeSrc":"15394:2:1","nodeType":"YulLiteral","src":"15394:2:1","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"15379:3:1","nodeType":"YulIdentifier","src":"15379:3:1"},"nativeSrc":"15379:18:1","nodeType":"YulFunctionCall","src":"15379:18:1"},"variableNames":[{"name":"tail","nativeSrc":"15371:4:1","nodeType":"YulIdentifier","src":"15371:4:1"}]}]},"name":"abi_encode_tuple_t_stringliteral_621f50d6436d0a4dd01bdd0a290cbd90a33871f85d2f75ec24041520fb128387__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"15062:341:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"15213:9:1","nodeType":"YulTypedName","src":"15213:9:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"15227:4:1","nodeType":"YulTypedName","src":"15227:4:1","type":""}],"src":"15062:341:1"},{"body":{"nativeSrc":"15582:167:1","nodeType":"YulBlock","src":"15582:167:1","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"15599:9:1","nodeType":"YulIdentifier","src":"15599:9:1"},{"kind":"number","nativeSrc":"15610:2:1","nodeType":"YulLiteral","src":"15610:2:1","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"15592:6:1","nodeType":"YulIdentifier","src":"15592:6:1"},"nativeSrc":"15592:21:1","nodeType":"YulFunctionCall","src":"15592:21:1"},"nativeSrc":"15592:21:1","nodeType":"YulExpressionStatement","src":"15592:21:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"15633:9:1","nodeType":"YulIdentifier","src":"15633:9:1"},{"kind":"number","nativeSrc":"15644:2:1","nodeType":"YulLiteral","src":"15644:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"15629:3:1","nodeType":"YulIdentifier","src":"15629:3:1"},"nativeSrc":"15629:18:1","nodeType":"YulFunctionCall","src":"15629:18:1"},{"kind":"number","nativeSrc":"15649:2:1","nodeType":"YulLiteral","src":"15649:2:1","type":"","value":"17"}],"functionName":{"name":"mstore","nativeSrc":"15622:6:1","nodeType":"YulIdentifier","src":"15622:6:1"},"nativeSrc":"15622:30:1","nodeType":"YulFunctionCall","src":"15622:30:1"},"nativeSrc":"15622:30:1","nodeType":"YulExpressionStatement","src":"15622:30:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"15672:9:1","nodeType":"YulIdentifier","src":"15672:9:1"},{"kind":"number","nativeSrc":"15683:2:1","nodeType":"YulLiteral","src":"15683:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"15668:3:1","nodeType":"YulIdentifier","src":"15668:3:1"},"nativeSrc":"15668:18:1","nodeType":"YulFunctionCall","src":"15668:18:1"},{"hexValue":"5348415245535f4c545f4d494e494d554d","kind":"string","nativeSrc":"15688:19:1","nodeType":"YulLiteral","src":"15688:19:1","type":"","value":"SHARES_LT_MINIMUM"}],"functionName":{"name":"mstore","nativeSrc":"15661:6:1","nodeType":"YulIdentifier","src":"15661:6:1"},"nativeSrc":"15661:47:1","nodeType":"YulFunctionCall","src":"15661:47:1"},"nativeSrc":"15661:47:1","nodeType":"YulExpressionStatement","src":"15661:47:1"},{"nativeSrc":"15717:26:1","nodeType":"YulAssignment","src":"15717:26:1","value":{"arguments":[{"name":"headStart","nativeSrc":"15729:9:1","nodeType":"YulIdentifier","src":"15729:9:1"},{"kind":"number","nativeSrc":"15740:2:1","nodeType":"YulLiteral","src":"15740:2:1","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"15725:3:1","nodeType":"YulIdentifier","src":"15725:3:1"},"nativeSrc":"15725:18:1","nodeType":"YulFunctionCall","src":"15725:18:1"},"variableNames":[{"name":"tail","nativeSrc":"15717:4:1","nodeType":"YulIdentifier","src":"15717:4:1"}]}]},"name":"abi_encode_tuple_t_stringliteral_5407ed0094c102003a23cbee6bcb44020e6bb1be4fa76486e3d76e28e8ab8c65__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"15408:341:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"15559:9:1","nodeType":"YulTypedName","src":"15559:9:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"15573:4:1","nodeType":"YulTypedName","src":"15573:4:1","type":""}],"src":"15408:341:1"},{"body":{"nativeSrc":"15806:116:1","nodeType":"YulBlock","src":"15806:116:1","statements":[{"nativeSrc":"15816:20:1","nodeType":"YulAssignment","src":"15816:20:1","value":{"arguments":[{"name":"x","nativeSrc":"15831:1:1","nodeType":"YulIdentifier","src":"15831:1:1"},{"name":"y","nativeSrc":"15834:1:1","nodeType":"YulIdentifier","src":"15834:1:1"}],"functionName":{"name":"mul","nativeSrc":"15827:3:1","nodeType":"YulIdentifier","src":"15827:3:1"},"nativeSrc":"15827:9:1","nodeType":"YulFunctionCall","src":"15827:9:1"},"variableNames":[{"name":"product","nativeSrc":"15816:7:1","nodeType":"YulIdentifier","src":"15816:7:1"}]},{"body":{"nativeSrc":"15894:22:1","nodeType":"YulBlock","src":"15894:22:1","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"15896:16:1","nodeType":"YulIdentifier","src":"15896:16:1"},"nativeSrc":"15896:18:1","nodeType":"YulFunctionCall","src":"15896:18:1"},"nativeSrc":"15896:18:1","nodeType":"YulExpressionStatement","src":"15896:18:1"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"x","nativeSrc":"15865:1:1","nodeType":"YulIdentifier","src":"15865:1:1"}],"functionName":{"name":"iszero","nativeSrc":"15858:6:1","nodeType":"YulIdentifier","src":"15858:6:1"},"nativeSrc":"15858:9:1","nodeType":"YulFunctionCall","src":"15858:9:1"},{"arguments":[{"name":"y","nativeSrc":"15872:1:1","nodeType":"YulIdentifier","src":"15872:1:1"},{"arguments":[{"name":"product","nativeSrc":"15879:7:1","nodeType":"YulIdentifier","src":"15879:7:1"},{"name":"x","nativeSrc":"15888:1:1","nodeType":"YulIdentifier","src":"15888:1:1"}],"functionName":{"name":"div","nativeSrc":"15875:3:1","nodeType":"YulIdentifier","src":"15875:3:1"},"nativeSrc":"15875:15:1","nodeType":"YulFunctionCall","src":"15875:15:1"}],"functionName":{"name":"eq","nativeSrc":"15869:2:1","nodeType":"YulIdentifier","src":"15869:2:1"},"nativeSrc":"15869:22:1","nodeType":"YulFunctionCall","src":"15869:22:1"}],"functionName":{"name":"or","nativeSrc":"15855:2:1","nodeType":"YulIdentifier","src":"15855:2:1"},"nativeSrc":"15855:37:1","nodeType":"YulFunctionCall","src":"15855:37:1"}],"functionName":{"name":"iszero","nativeSrc":"15848:6:1","nodeType":"YulIdentifier","src":"15848:6:1"},"nativeSrc":"15848:45:1","nodeType":"YulFunctionCall","src":"15848:45:1"},"nativeSrc":"15845:71:1","nodeType":"YulIf","src":"15845:71:1"}]},"name":"checked_mul_t_uint256","nativeSrc":"15754:168:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"15785:1:1","nodeType":"YulTypedName","src":"15785:1:1","type":""},{"name":"y","nativeSrc":"15788:1:1","nodeType":"YulTypedName","src":"15788:1:1","type":""}],"returnVariables":[{"name":"product","nativeSrc":"15794:7:1","nodeType":"YulTypedName","src":"15794:7:1","type":""}],"src":"15754:168:1"},{"body":{"nativeSrc":"15959:95:1","nodeType":"YulBlock","src":"15959:95:1","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"15976:1:1","nodeType":"YulLiteral","src":"15976:1:1","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"15983:3:1","nodeType":"YulLiteral","src":"15983:3:1","type":"","value":"224"},{"kind":"number","nativeSrc":"15988:10:1","nodeType":"YulLiteral","src":"15988:10:1","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"15979:3:1","nodeType":"YulIdentifier","src":"15979:3:1"},"nativeSrc":"15979:20:1","nodeType":"YulFunctionCall","src":"15979:20:1"}],"functionName":{"name":"mstore","nativeSrc":"15969:6:1","nodeType":"YulIdentifier","src":"15969:6:1"},"nativeSrc":"15969:31:1","nodeType":"YulFunctionCall","src":"15969:31:1"},"nativeSrc":"15969:31:1","nodeType":"YulExpressionStatement","src":"15969:31:1"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"16016:1:1","nodeType":"YulLiteral","src":"16016:1:1","type":"","value":"4"},{"kind":"number","nativeSrc":"16019:4:1","nodeType":"YulLiteral","src":"16019:4:1","type":"","value":"0x12"}],"functionName":{"name":"mstore","nativeSrc":"16009:6:1","nodeType":"YulIdentifier","src":"16009:6:1"},"nativeSrc":"16009:15:1","nodeType":"YulFunctionCall","src":"16009:15:1"},"nativeSrc":"16009:15:1","nodeType":"YulExpressionStatement","src":"16009:15:1"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"16040:1:1","nodeType":"YulLiteral","src":"16040:1:1","type":"","value":"0"},{"kind":"number","nativeSrc":"16043:4:1","nodeType":"YulLiteral","src":"16043:4:1","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"16033:6:1","nodeType":"YulIdentifier","src":"16033:6:1"},"nativeSrc":"16033:15:1","nodeType":"YulFunctionCall","src":"16033:15:1"},"nativeSrc":"16033:15:1","nodeType":"YulExpressionStatement","src":"16033:15:1"}]},"name":"panic_error_0x12","nativeSrc":"15927:127:1","nodeType":"YulFunctionDefinition","src":"15927:127:1"},{"body":{"nativeSrc":"16105:171:1","nodeType":"YulBlock","src":"16105:171:1","statements":[{"body":{"nativeSrc":"16136:111:1","nodeType":"YulBlock","src":"16136:111:1","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"16157:1:1","nodeType":"YulLiteral","src":"16157:1:1","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"16164:3:1","nodeType":"YulLiteral","src":"16164:3:1","type":"","value":"224"},{"kind":"number","nativeSrc":"16169:10:1","nodeType":"YulLiteral","src":"16169:10:1","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"16160:3:1","nodeType":"YulIdentifier","src":"16160:3:1"},"nativeSrc":"16160:20:1","nodeType":"YulFunctionCall","src":"16160:20:1"}],"functionName":{"name":"mstore","nativeSrc":"16150:6:1","nodeType":"YulIdentifier","src":"16150:6:1"},"nativeSrc":"16150:31:1","nodeType":"YulFunctionCall","src":"16150:31:1"},"nativeSrc":"16150:31:1","nodeType":"YulExpressionStatement","src":"16150:31:1"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"16201:1:1","nodeType":"YulLiteral","src":"16201:1:1","type":"","value":"4"},{"kind":"number","nativeSrc":"16204:4:1","nodeType":"YulLiteral","src":"16204:4:1","type":"","value":"0x12"}],"functionName":{"name":"mstore","nativeSrc":"16194:6:1","nodeType":"YulIdentifier","src":"16194:6:1"},"nativeSrc":"16194:15:1","nodeType":"YulFunctionCall","src":"16194:15:1"},"nativeSrc":"16194:15:1","nodeType":"YulExpressionStatement","src":"16194:15:1"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"16229:1:1","nodeType":"YulLiteral","src":"16229:1:1","type":"","value":"0"},{"kind":"number","nativeSrc":"16232:4:1","nodeType":"YulLiteral","src":"16232:4:1","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"16222:6:1","nodeType":"YulIdentifier","src":"16222:6:1"},"nativeSrc":"16222:15:1","nodeType":"YulFunctionCall","src":"16222:15:1"},"nativeSrc":"16222:15:1","nodeType":"YulExpressionStatement","src":"16222:15:1"}]},"condition":{"arguments":[{"name":"y","nativeSrc":"16125:1:1","nodeType":"YulIdentifier","src":"16125:1:1"}],"functionName":{"name":"iszero","nativeSrc":"16118:6:1","nodeType":"YulIdentifier","src":"16118:6:1"},"nativeSrc":"16118:9:1","nodeType":"YulFunctionCall","src":"16118:9:1"},"nativeSrc":"16115:132:1","nodeType":"YulIf","src":"16115:132:1"},{"nativeSrc":"16256:14:1","nodeType":"YulAssignment","src":"16256:14:1","value":{"arguments":[{"name":"x","nativeSrc":"16265:1:1","nodeType":"YulIdentifier","src":"16265:1:1"},{"name":"y","nativeSrc":"16268:1:1","nodeType":"YulIdentifier","src":"16268:1:1"}],"functionName":{"name":"div","nativeSrc":"16261:3:1","nodeType":"YulIdentifier","src":"16261:3:1"},"nativeSrc":"16261:9:1","nodeType":"YulFunctionCall","src":"16261:9:1"},"variableNames":[{"name":"r","nativeSrc":"16256:1:1","nodeType":"YulIdentifier","src":"16256:1:1"}]}]},"name":"checked_div_t_uint256","nativeSrc":"16059:217:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"16090:1:1","nodeType":"YulTypedName","src":"16090:1:1","type":""},{"name":"y","nativeSrc":"16093:1:1","nodeType":"YulTypedName","src":"16093:1:1","type":""}],"returnVariables":[{"name":"r","nativeSrc":"16099:1:1","nodeType":"YulTypedName","src":"16099:1:1","type":""}],"src":"16059:217:1"},{"body":{"nativeSrc":"16455:175:1","nodeType":"YulBlock","src":"16455:175:1","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"16472:9:1","nodeType":"YulIdentifier","src":"16472:9:1"},{"kind":"number","nativeSrc":"16483:2:1","nodeType":"YulLiteral","src":"16483:2:1","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"16465:6:1","nodeType":"YulIdentifier","src":"16465:6:1"},"nativeSrc":"16465:21:1","nodeType":"YulFunctionCall","src":"16465:21:1"},"nativeSrc":"16465:21:1","nodeType":"YulExpressionStatement","src":"16465:21:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"16506:9:1","nodeType":"YulIdentifier","src":"16506:9:1"},{"kind":"number","nativeSrc":"16517:2:1","nodeType":"YulLiteral","src":"16517:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"16502:3:1","nodeType":"YulIdentifier","src":"16502:3:1"},"nativeSrc":"16502:18:1","nodeType":"YulFunctionCall","src":"16502:18:1"},{"kind":"number","nativeSrc":"16522:2:1","nodeType":"YulLiteral","src":"16522:2:1","type":"","value":"25"}],"functionName":{"name":"mstore","nativeSrc":"16495:6:1","nodeType":"YulIdentifier","src":"16495:6:1"},"nativeSrc":"16495:30:1","nodeType":"YulFunctionCall","src":"16495:30:1"},"nativeSrc":"16495:30:1","nodeType":"YulExpressionStatement","src":"16495:30:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"16545:9:1","nodeType":"YulIdentifier","src":"16545:9:1"},{"kind":"number","nativeSrc":"16556:2:1","nodeType":"YulLiteral","src":"16556:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"16541:3:1","nodeType":"YulIdentifier","src":"16541:3:1"},"nativeSrc":"16541:18:1","nodeType":"YulFunctionCall","src":"16541:18:1"},{"hexValue":"43414c4c45525f4e4f545f434f4f4c444f574e5f41444d494e","kind":"string","nativeSrc":"16561:27:1","nodeType":"YulLiteral","src":"16561:27:1","type":"","value":"CALLER_NOT_COOLDOWN_ADMIN"}],"functionName":{"name":"mstore","nativeSrc":"16534:6:1","nodeType":"YulIdentifier","src":"16534:6:1"},"nativeSrc":"16534:55:1","nodeType":"YulFunctionCall","src":"16534:55:1"},"nativeSrc":"16534:55:1","nodeType":"YulExpressionStatement","src":"16534:55:1"},{"nativeSrc":"16598:26:1","nodeType":"YulAssignment","src":"16598:26:1","value":{"arguments":[{"name":"headStart","nativeSrc":"16610:9:1","nodeType":"YulIdentifier","src":"16610:9:1"},{"kind":"number","nativeSrc":"16621:2:1","nodeType":"YulLiteral","src":"16621:2:1","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"16606:3:1","nodeType":"YulIdentifier","src":"16606:3:1"},"nativeSrc":"16606:18:1","nodeType":"YulFunctionCall","src":"16606:18:1"},"variableNames":[{"name":"tail","nativeSrc":"16598:4:1","nodeType":"YulIdentifier","src":"16598:4:1"}]}]},"name":"abi_encode_tuple_t_stringliteral_d49ebb848086492947fc93c9ef60d839aa895187a88d01c0575e0469055263d2__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"16281:349:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"16432:9:1","nodeType":"YulTypedName","src":"16432:9:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"16446:4:1","nodeType":"YulTypedName","src":"16446:4:1","type":""}],"src":"16281:349:1"},{"body":{"nativeSrc":"16667:95:1","nodeType":"YulBlock","src":"16667:95:1","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"16684:1:1","nodeType":"YulLiteral","src":"16684:1:1","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"16691:3:1","nodeType":"YulLiteral","src":"16691:3:1","type":"","value":"224"},{"kind":"number","nativeSrc":"16696:10:1","nodeType":"YulLiteral","src":"16696:10:1","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"16687:3:1","nodeType":"YulIdentifier","src":"16687:3:1"},"nativeSrc":"16687:20:1","nodeType":"YulFunctionCall","src":"16687:20:1"}],"functionName":{"name":"mstore","nativeSrc":"16677:6:1","nodeType":"YulIdentifier","src":"16677:6:1"},"nativeSrc":"16677:31:1","nodeType":"YulFunctionCall","src":"16677:31:1"},"nativeSrc":"16677:31:1","nodeType":"YulExpressionStatement","src":"16677:31:1"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"16724:1:1","nodeType":"YulLiteral","src":"16724:1:1","type":"","value":"4"},{"kind":"number","nativeSrc":"16727:4:1","nodeType":"YulLiteral","src":"16727:4:1","type":"","value":"0x32"}],"functionName":{"name":"mstore","nativeSrc":"16717:6:1","nodeType":"YulIdentifier","src":"16717:6:1"},"nativeSrc":"16717:15:1","nodeType":"YulFunctionCall","src":"16717:15:1"},"nativeSrc":"16717:15:1","nodeType":"YulExpressionStatement","src":"16717:15:1"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"16748:1:1","nodeType":"YulLiteral","src":"16748:1:1","type":"","value":"0"},{"kind":"number","nativeSrc":"16751:4:1","nodeType":"YulLiteral","src":"16751:4:1","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"16741:6:1","nodeType":"YulIdentifier","src":"16741:6:1"},"nativeSrc":"16741:15:1","nodeType":"YulFunctionCall","src":"16741:15:1"},"nativeSrc":"16741:15:1","nodeType":"YulExpressionStatement","src":"16741:15:1"}]},"name":"panic_error_0x32","nativeSrc":"16635:127:1","nodeType":"YulFunctionDefinition","src":"16635:127:1"},{"body":{"nativeSrc":"16941:227:1","nodeType":"YulBlock","src":"16941:227:1","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"16958:9:1","nodeType":"YulIdentifier","src":"16958:9:1"},{"kind":"number","nativeSrc":"16969:2:1","nodeType":"YulLiteral","src":"16969:2:1","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"16951:6:1","nodeType":"YulIdentifier","src":"16951:6:1"},"nativeSrc":"16951:21:1","nodeType":"YulFunctionCall","src":"16951:21:1"},"nativeSrc":"16951:21:1","nodeType":"YulExpressionStatement","src":"16951:21:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"16992:9:1","nodeType":"YulIdentifier","src":"16992:9:1"},{"kind":"number","nativeSrc":"17003:2:1","nodeType":"YulLiteral","src":"17003:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"16988:3:1","nodeType":"YulIdentifier","src":"16988:3:1"},"nativeSrc":"16988:18:1","nodeType":"YulFunctionCall","src":"16988:18:1"},{"kind":"number","nativeSrc":"17008:2:1","nodeType":"YulLiteral","src":"17008:2:1","type":"","value":"37"}],"functionName":{"name":"mstore","nativeSrc":"16981:6:1","nodeType":"YulIdentifier","src":"16981:6:1"},"nativeSrc":"16981:30:1","nodeType":"YulFunctionCall","src":"16981:30:1"},"nativeSrc":"16981:30:1","nodeType":"YulExpressionStatement","src":"16981:30:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"17031:9:1","nodeType":"YulIdentifier","src":"17031:9:1"},{"kind":"number","nativeSrc":"17042:2:1","nodeType":"YulLiteral","src":"17042:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"17027:3:1","nodeType":"YulIdentifier","src":"17027:3:1"},"nativeSrc":"17027:18:1","nodeType":"YulFunctionCall","src":"17027:18:1"},{"hexValue":"45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77","kind":"string","nativeSrc":"17047:34:1","nodeType":"YulLiteral","src":"17047:34:1","type":"","value":"ERC20: decreased allowance below"}],"functionName":{"name":"mstore","nativeSrc":"17020:6:1","nodeType":"YulIdentifier","src":"17020:6:1"},"nativeSrc":"17020:62:1","nodeType":"YulFunctionCall","src":"17020:62:1"},"nativeSrc":"17020:62:1","nodeType":"YulExpressionStatement","src":"17020:62:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"17102:9:1","nodeType":"YulIdentifier","src":"17102:9:1"},{"kind":"number","nativeSrc":"17113:2:1","nodeType":"YulLiteral","src":"17113:2:1","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"17098:3:1","nodeType":"YulIdentifier","src":"17098:3:1"},"nativeSrc":"17098:18:1","nodeType":"YulFunctionCall","src":"17098:18:1"},{"hexValue":"207a65726f","kind":"string","nativeSrc":"17118:7:1","nodeType":"YulLiteral","src":"17118:7:1","type":"","value":" zero"}],"functionName":{"name":"mstore","nativeSrc":"17091:6:1","nodeType":"YulIdentifier","src":"17091:6:1"},"nativeSrc":"17091:35:1","nodeType":"YulFunctionCall","src":"17091:35:1"},"nativeSrc":"17091:35:1","nodeType":"YulExpressionStatement","src":"17091:35:1"},{"nativeSrc":"17135:27:1","nodeType":"YulAssignment","src":"17135:27:1","value":{"arguments":[{"name":"headStart","nativeSrc":"17147:9:1","nodeType":"YulIdentifier","src":"17147:9:1"},{"kind":"number","nativeSrc":"17158:3:1","nodeType":"YulLiteral","src":"17158:3:1","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"17143:3:1","nodeType":"YulIdentifier","src":"17143:3:1"},"nativeSrc":"17143:19:1","nodeType":"YulFunctionCall","src":"17143:19:1"},"variableNames":[{"name":"tail","nativeSrc":"17135:4:1","nodeType":"YulIdentifier","src":"17135:4:1"}]}]},"name":"abi_encode_tuple_t_stringliteral_f8b476f7d28209d77d4a4ac1fe36b9f8259aa1bb6bddfa6e89de7e51615cf8a8__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"16767:401:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"16918:9:1","nodeType":"YulTypedName","src":"16918:9:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"16932:4:1","nodeType":"YulTypedName","src":"16932:4:1","type":""}],"src":"16767:401:1"},{"body":{"nativeSrc":"17347:236:1","nodeType":"YulBlock","src":"17347:236:1","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"17364:9:1","nodeType":"YulIdentifier","src":"17364:9:1"},{"kind":"number","nativeSrc":"17375:2:1","nodeType":"YulLiteral","src":"17375:2:1","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"17357:6:1","nodeType":"YulIdentifier","src":"17357:6:1"},"nativeSrc":"17357:21:1","nodeType":"YulFunctionCall","src":"17357:21:1"},"nativeSrc":"17357:21:1","nodeType":"YulExpressionStatement","src":"17357:21:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"17398:9:1","nodeType":"YulIdentifier","src":"17398:9:1"},{"kind":"number","nativeSrc":"17409:2:1","nodeType":"YulLiteral","src":"17409:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"17394:3:1","nodeType":"YulIdentifier","src":"17394:3:1"},"nativeSrc":"17394:18:1","nodeType":"YulFunctionCall","src":"17394:18:1"},{"kind":"number","nativeSrc":"17414:2:1","nodeType":"YulLiteral","src":"17414:2:1","type":"","value":"46"}],"functionName":{"name":"mstore","nativeSrc":"17387:6:1","nodeType":"YulIdentifier","src":"17387:6:1"},"nativeSrc":"17387:30:1","nodeType":"YulFunctionCall","src":"17387:30:1"},"nativeSrc":"17387:30:1","nodeType":"YulExpressionStatement","src":"17387:30:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"17437:9:1","nodeType":"YulIdentifier","src":"17437:9:1"},{"kind":"number","nativeSrc":"17448:2:1","nodeType":"YulLiteral","src":"17448:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"17433:3:1","nodeType":"YulIdentifier","src":"17433:3:1"},"nativeSrc":"17433:18:1","nodeType":"YulFunctionCall","src":"17433:18:1"},{"hexValue":"436f6e747261637420696e7374616e63652068617320616c7265616479206265","kind":"string","nativeSrc":"17453:34:1","nodeType":"YulLiteral","src":"17453:34:1","type":"","value":"Contract instance has already be"}],"functionName":{"name":"mstore","nativeSrc":"17426:6:1","nodeType":"YulIdentifier","src":"17426:6:1"},"nativeSrc":"17426:62:1","nodeType":"YulFunctionCall","src":"17426:62:1"},"nativeSrc":"17426:62:1","nodeType":"YulExpressionStatement","src":"17426:62:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"17508:9:1","nodeType":"YulIdentifier","src":"17508:9:1"},{"kind":"number","nativeSrc":"17519:2:1","nodeType":"YulLiteral","src":"17519:2:1","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"17504:3:1","nodeType":"YulIdentifier","src":"17504:3:1"},"nativeSrc":"17504:18:1","nodeType":"YulFunctionCall","src":"17504:18:1"},{"hexValue":"656e20696e697469616c697a6564","kind":"string","nativeSrc":"17524:16:1","nodeType":"YulLiteral","src":"17524:16:1","type":"","value":"en initialized"}],"functionName":{"name":"mstore","nativeSrc":"17497:6:1","nodeType":"YulIdentifier","src":"17497:6:1"},"nativeSrc":"17497:44:1","nodeType":"YulFunctionCall","src":"17497:44:1"},"nativeSrc":"17497:44:1","nodeType":"YulExpressionStatement","src":"17497:44:1"},{"nativeSrc":"17550:27:1","nodeType":"YulAssignment","src":"17550:27:1","value":{"arguments":[{"name":"headStart","nativeSrc":"17562:9:1","nodeType":"YulIdentifier","src":"17562:9:1"},{"kind":"number","nativeSrc":"17573:3:1","nodeType":"YulLiteral","src":"17573:3:1","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"17558:3:1","nodeType":"YulIdentifier","src":"17558:3:1"},"nativeSrc":"17558:19:1","nodeType":"YulFunctionCall","src":"17558:19:1"},"variableNames":[{"name":"tail","nativeSrc":"17550:4:1","nodeType":"YulIdentifier","src":"17550:4:1"}]}]},"name":"abi_encode_tuple_t_stringliteral_9fbba6c4dcac9134893b633b9564f36435b3f927c1d5fa152c5c14b20cecb1a4__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"17173:410:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"17324:9:1","nodeType":"YulTypedName","src":"17324:9:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"17338:4:1","nodeType":"YulTypedName","src":"17338:4:1","type":""}],"src":"17173:410:1"},{"body":{"nativeSrc":"17762:171:1","nodeType":"YulBlock","src":"17762:171:1","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"17779:9:1","nodeType":"YulIdentifier","src":"17779:9:1"},{"kind":"number","nativeSrc":"17790:2:1","nodeType":"YulLiteral","src":"17790:2:1","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"17772:6:1","nodeType":"YulIdentifier","src":"17772:6:1"},"nativeSrc":"17772:21:1","nodeType":"YulFunctionCall","src":"17772:21:1"},"nativeSrc":"17772:21:1","nodeType":"YulExpressionStatement","src":"17772:21:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"17813:9:1","nodeType":"YulIdentifier","src":"17813:9:1"},{"kind":"number","nativeSrc":"17824:2:1","nodeType":"YulLiteral","src":"17824:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"17809:3:1","nodeType":"YulIdentifier","src":"17809:3:1"},"nativeSrc":"17809:18:1","nodeType":"YulFunctionCall","src":"17809:18:1"},{"kind":"number","nativeSrc":"17829:2:1","nodeType":"YulLiteral","src":"17829:2:1","type":"","value":"21"}],"functionName":{"name":"mstore","nativeSrc":"17802:6:1","nodeType":"YulIdentifier","src":"17802:6:1"},"nativeSrc":"17802:30:1","nodeType":"YulFunctionCall","src":"17802:30:1"},"nativeSrc":"17802:30:1","nodeType":"YulExpressionStatement","src":"17802:30:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"17852:9:1","nodeType":"YulIdentifier","src":"17852:9:1"},{"kind":"number","nativeSrc":"17863:2:1","nodeType":"YulLiteral","src":"17863:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"17848:3:1","nodeType":"YulIdentifier","src":"17848:3:1"},"nativeSrc":"17848:18:1","nodeType":"YulFunctionCall","src":"17848:18:1"},{"hexValue":"43414c4c45525f4e4f545f524f4c455f41444d494e","kind":"string","nativeSrc":"17868:23:1","nodeType":"YulLiteral","src":"17868:23:1","type":"","value":"CALLER_NOT_ROLE_ADMIN"}],"functionName":{"name":"mstore","nativeSrc":"17841:6:1","nodeType":"YulIdentifier","src":"17841:6:1"},"nativeSrc":"17841:51:1","nodeType":"YulFunctionCall","src":"17841:51:1"},"nativeSrc":"17841:51:1","nodeType":"YulExpressionStatement","src":"17841:51:1"},{"nativeSrc":"17901:26:1","nodeType":"YulAssignment","src":"17901:26:1","value":{"arguments":[{"name":"headStart","nativeSrc":"17913:9:1","nodeType":"YulIdentifier","src":"17913:9:1"},{"kind":"number","nativeSrc":"17924:2:1","nodeType":"YulLiteral","src":"17924:2:1","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"17909:3:1","nodeType":"YulIdentifier","src":"17909:3:1"},"nativeSrc":"17909:18:1","nodeType":"YulFunctionCall","src":"17909:18:1"},"variableNames":[{"name":"tail","nativeSrc":"17901:4:1","nodeType":"YulIdentifier","src":"17901:4:1"}]}]},"name":"abi_encode_tuple_t_stringliteral_5e135040f8dc35152fcfe1ddf129384a9ce13d1776c5e6dc86a62f244bfcfc0b__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"17588:345:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"17739:9:1","nodeType":"YulTypedName","src":"17739:9:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"17753:4:1","nodeType":"YulTypedName","src":"17753:4:1","type":""}],"src":"17588:345:1"},{"body":{"nativeSrc":"18112:171:1","nodeType":"YulBlock","src":"18112:171:1","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"18129:9:1","nodeType":"YulIdentifier","src":"18129:9:1"},{"kind":"number","nativeSrc":"18140:2:1","nodeType":"YulLiteral","src":"18140:2:1","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"18122:6:1","nodeType":"YulIdentifier","src":"18122:6:1"},"nativeSrc":"18122:21:1","nodeType":"YulFunctionCall","src":"18122:21:1"},"nativeSrc":"18122:21:1","nodeType":"YulExpressionStatement","src":"18122:21:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"18163:9:1","nodeType":"YulIdentifier","src":"18163:9:1"},{"kind":"number","nativeSrc":"18174:2:1","nodeType":"YulLiteral","src":"18174:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"18159:3:1","nodeType":"YulIdentifier","src":"18159:3:1"},"nativeSrc":"18159:18:1","nodeType":"YulFunctionCall","src":"18159:18:1"},{"kind":"number","nativeSrc":"18179:2:1","nodeType":"YulLiteral","src":"18179:2:1","type":"","value":"21"}],"functionName":{"name":"mstore","nativeSrc":"18152:6:1","nodeType":"YulIdentifier","src":"18152:6:1"},"nativeSrc":"18152:30:1","nodeType":"YulFunctionCall","src":"18152:30:1"},"nativeSrc":"18152:30:1","nodeType":"YulExpressionStatement","src":"18152:30:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"18202:9:1","nodeType":"YulIdentifier","src":"18202:9:1"},{"kind":"number","nativeSrc":"18213:2:1","nodeType":"YulLiteral","src":"18213:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"18198:3:1","nodeType":"YulIdentifier","src":"18198:3:1"},"nativeSrc":"18198:18:1","nodeType":"YulFunctionCall","src":"18198:18:1"},{"hexValue":"4f4e4c595f454d495353494f4e5f4d414e41474552","kind":"string","nativeSrc":"18218:23:1","nodeType":"YulLiteral","src":"18218:23:1","type":"","value":"ONLY_EMISSION_MANAGER"}],"functionName":{"name":"mstore","nativeSrc":"18191:6:1","nodeType":"YulIdentifier","src":"18191:6:1"},"nativeSrc":"18191:51:1","nodeType":"YulFunctionCall","src":"18191:51:1"},"nativeSrc":"18191:51:1","nodeType":"YulExpressionStatement","src":"18191:51:1"},{"nativeSrc":"18251:26:1","nodeType":"YulAssignment","src":"18251:26:1","value":{"arguments":[{"name":"headStart","nativeSrc":"18263:9:1","nodeType":"YulIdentifier","src":"18263:9:1"},{"kind":"number","nativeSrc":"18274:2:1","nodeType":"YulLiteral","src":"18274:2:1","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"18259:3:1","nodeType":"YulIdentifier","src":"18259:3:1"},"nativeSrc":"18259:18:1","nodeType":"YulFunctionCall","src":"18259:18:1"},"variableNames":[{"name":"tail","nativeSrc":"18251:4:1","nodeType":"YulIdentifier","src":"18251:4:1"}]}]},"name":"abi_encode_tuple_t_stringliteral_a28d34ff463a8cc689c6ec4b8c995983f85d0a40987242bc4cc3cec37303c18e__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"17938:345:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"18089:9:1","nodeType":"YulTypedName","src":"18089:9:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"18103:4:1","nodeType":"YulTypedName","src":"18103:4:1","type":""}],"src":"17938:345:1"},{"body":{"nativeSrc":"18473:232:1","nodeType":"YulBlock","src":"18473:232:1","statements":[{"nativeSrc":"18483:27:1","nodeType":"YulAssignment","src":"18483:27:1","value":{"arguments":[{"name":"headStart","nativeSrc":"18495:9:1","nodeType":"YulIdentifier","src":"18495:9:1"},{"kind":"number","nativeSrc":"18506:3:1","nodeType":"YulLiteral","src":"18506:3:1","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"18491:3:1","nodeType":"YulIdentifier","src":"18491:3:1"},"nativeSrc":"18491:19:1","nodeType":"YulFunctionCall","src":"18491:19:1"},"variableNames":[{"name":"tail","nativeSrc":"18483:4:1","nodeType":"YulIdentifier","src":"18483:4:1"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"18526:9:1","nodeType":"YulIdentifier","src":"18526:9:1"},{"name":"value0","nativeSrc":"18537:6:1","nodeType":"YulIdentifier","src":"18537:6:1"}],"functionName":{"name":"mstore","nativeSrc":"18519:6:1","nodeType":"YulIdentifier","src":"18519:6:1"},"nativeSrc":"18519:25:1","nodeType":"YulFunctionCall","src":"18519:25:1"},"nativeSrc":"18519:25:1","nodeType":"YulExpressionStatement","src":"18519:25:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"18564:9:1","nodeType":"YulIdentifier","src":"18564:9:1"},{"kind":"number","nativeSrc":"18575:2:1","nodeType":"YulLiteral","src":"18575:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"18560:3:1","nodeType":"YulIdentifier","src":"18560:3:1"},"nativeSrc":"18560:18:1","nodeType":"YulFunctionCall","src":"18560:18:1"},{"arguments":[{"name":"value1","nativeSrc":"18584:6:1","nodeType":"YulIdentifier","src":"18584:6:1"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"18600:3:1","nodeType":"YulLiteral","src":"18600:3:1","type":"","value":"160"},{"kind":"number","nativeSrc":"18605:1:1","nodeType":"YulLiteral","src":"18605:1:1","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"18596:3:1","nodeType":"YulIdentifier","src":"18596:3:1"},"nativeSrc":"18596:11:1","nodeType":"YulFunctionCall","src":"18596:11:1"},{"kind":"number","nativeSrc":"18609:1:1","nodeType":"YulLiteral","src":"18609:1:1","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"18592:3:1","nodeType":"YulIdentifier","src":"18592:3:1"},"nativeSrc":"18592:19:1","nodeType":"YulFunctionCall","src":"18592:19:1"}],"functionName":{"name":"and","nativeSrc":"18580:3:1","nodeType":"YulIdentifier","src":"18580:3:1"},"nativeSrc":"18580:32:1","nodeType":"YulFunctionCall","src":"18580:32:1"}],"functionName":{"name":"mstore","nativeSrc":"18553:6:1","nodeType":"YulIdentifier","src":"18553:6:1"},"nativeSrc":"18553:60:1","nodeType":"YulFunctionCall","src":"18553:60:1"},"nativeSrc":"18553:60:1","nodeType":"YulExpressionStatement","src":"18553:60:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"18633:9:1","nodeType":"YulIdentifier","src":"18633:9:1"},{"kind":"number","nativeSrc":"18644:2:1","nodeType":"YulLiteral","src":"18644:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"18629:3:1","nodeType":"YulIdentifier","src":"18629:3:1"},"nativeSrc":"18629:18:1","nodeType":"YulFunctionCall","src":"18629:18:1"},{"name":"value2","nativeSrc":"18649:6:1","nodeType":"YulIdentifier","src":"18649:6:1"}],"functionName":{"name":"mstore","nativeSrc":"18622:6:1","nodeType":"YulIdentifier","src":"18622:6:1"},"nativeSrc":"18622:34:1","nodeType":"YulFunctionCall","src":"18622:34:1"},"nativeSrc":"18622:34:1","nodeType":"YulExpressionStatement","src":"18622:34:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"18676:9:1","nodeType":"YulIdentifier","src":"18676:9:1"},{"kind":"number","nativeSrc":"18687:2:1","nodeType":"YulLiteral","src":"18687:2:1","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"18672:3:1","nodeType":"YulIdentifier","src":"18672:3:1"},"nativeSrc":"18672:18:1","nodeType":"YulFunctionCall","src":"18672:18:1"},{"name":"value3","nativeSrc":"18692:6:1","nodeType":"YulIdentifier","src":"18692:6:1"}],"functionName":{"name":"mstore","nativeSrc":"18665:6:1","nodeType":"YulIdentifier","src":"18665:6:1"},"nativeSrc":"18665:34:1","nodeType":"YulFunctionCall","src":"18665:34:1"},"nativeSrc":"18665:34:1","nodeType":"YulExpressionStatement","src":"18665:34:1"}]},"name":"abi_encode_tuple_t_bytes32_t_address_t_uint256_t_uint256__to_t_bytes32_t_address_t_uint256_t_uint256__fromStack_reversed","nativeSrc":"18288:417:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"18418:9:1","nodeType":"YulTypedName","src":"18418:9:1","type":""},{"name":"value3","nativeSrc":"18429:6:1","nodeType":"YulTypedName","src":"18429:6:1","type":""},{"name":"value2","nativeSrc":"18437:6:1","nodeType":"YulTypedName","src":"18437:6:1","type":""},{"name":"value1","nativeSrc":"18445:6:1","nodeType":"YulTypedName","src":"18445:6:1","type":""},{"name":"value0","nativeSrc":"18453:6:1","nodeType":"YulTypedName","src":"18453:6:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"18464:4:1","nodeType":"YulTypedName","src":"18464:4:1","type":""}],"src":"18288:417:1"},{"body":{"nativeSrc":"18958:144:1","nodeType":"YulBlock","src":"18958:144:1","statements":[{"expression":{"arguments":[{"name":"pos","nativeSrc":"18975:3:1","nodeType":"YulIdentifier","src":"18975:3:1"},{"arguments":[{"kind":"number","nativeSrc":"18984:3:1","nodeType":"YulLiteral","src":"18984:3:1","type":"","value":"240"},{"kind":"number","nativeSrc":"18989:4:1","nodeType":"YulLiteral","src":"18989:4:1","type":"","value":"6401"}],"functionName":{"name":"shl","nativeSrc":"18980:3:1","nodeType":"YulIdentifier","src":"18980:3:1"},"nativeSrc":"18980:14:1","nodeType":"YulFunctionCall","src":"18980:14:1"}],"functionName":{"name":"mstore","nativeSrc":"18968:6:1","nodeType":"YulIdentifier","src":"18968:6:1"},"nativeSrc":"18968:27:1","nodeType":"YulFunctionCall","src":"18968:27:1"},"nativeSrc":"18968:27:1","nodeType":"YulExpressionStatement","src":"18968:27:1"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"19015:3:1","nodeType":"YulIdentifier","src":"19015:3:1"},{"kind":"number","nativeSrc":"19020:1:1","nodeType":"YulLiteral","src":"19020:1:1","type":"","value":"2"}],"functionName":{"name":"add","nativeSrc":"19011:3:1","nodeType":"YulIdentifier","src":"19011:3:1"},"nativeSrc":"19011:11:1","nodeType":"YulFunctionCall","src":"19011:11:1"},{"name":"value0","nativeSrc":"19024:6:1","nodeType":"YulIdentifier","src":"19024:6:1"}],"functionName":{"name":"mstore","nativeSrc":"19004:6:1","nodeType":"YulIdentifier","src":"19004:6:1"},"nativeSrc":"19004:27:1","nodeType":"YulFunctionCall","src":"19004:27:1"},"nativeSrc":"19004:27:1","nodeType":"YulExpressionStatement","src":"19004:27:1"},{"expression":{"arguments":[{"arguments":[{"name":"pos","nativeSrc":"19051:3:1","nodeType":"YulIdentifier","src":"19051:3:1"},{"kind":"number","nativeSrc":"19056:2:1","nodeType":"YulLiteral","src":"19056:2:1","type":"","value":"34"}],"functionName":{"name":"add","nativeSrc":"19047:3:1","nodeType":"YulIdentifier","src":"19047:3:1"},"nativeSrc":"19047:12:1","nodeType":"YulFunctionCall","src":"19047:12:1"},{"name":"value1","nativeSrc":"19061:6:1","nodeType":"YulIdentifier","src":"19061:6:1"}],"functionName":{"name":"mstore","nativeSrc":"19040:6:1","nodeType":"YulIdentifier","src":"19040:6:1"},"nativeSrc":"19040:28:1","nodeType":"YulFunctionCall","src":"19040:28:1"},"nativeSrc":"19040:28:1","nodeType":"YulExpressionStatement","src":"19040:28:1"},{"nativeSrc":"19077:19:1","nodeType":"YulAssignment","src":"19077:19:1","value":{"arguments":[{"name":"pos","nativeSrc":"19088:3:1","nodeType":"YulIdentifier","src":"19088:3:1"},{"kind":"number","nativeSrc":"19093:2:1","nodeType":"YulLiteral","src":"19093:2:1","type":"","value":"66"}],"functionName":{"name":"add","nativeSrc":"19084:3:1","nodeType":"YulIdentifier","src":"19084:3:1"},"nativeSrc":"19084:12:1","nodeType":"YulFunctionCall","src":"19084:12:1"},"variableNames":[{"name":"end","nativeSrc":"19077:3:1","nodeType":"YulIdentifier","src":"19077:3:1"}]}]},"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","nativeSrc":"18710:392:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nativeSrc":"18926:3:1","nodeType":"YulTypedName","src":"18926:3:1","type":""},{"name":"value1","nativeSrc":"18931:6:1","nodeType":"YulTypedName","src":"18931:6:1","type":""},{"name":"value0","nativeSrc":"18939:6:1","nodeType":"YulTypedName","src":"18939:6:1","type":""}],"returnVariables":[{"name":"end","nativeSrc":"18950:3:1","nodeType":"YulTypedName","src":"18950:3:1","type":""}],"src":"18710:392:1"},{"body":{"nativeSrc":"19288:217:1","nodeType":"YulBlock","src":"19288:217:1","statements":[{"nativeSrc":"19298:27:1","nodeType":"YulAssignment","src":"19298:27:1","value":{"arguments":[{"name":"headStart","nativeSrc":"19310:9:1","nodeType":"YulIdentifier","src":"19310:9:1"},{"kind":"number","nativeSrc":"19321:3:1","nodeType":"YulLiteral","src":"19321:3:1","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"19306:3:1","nodeType":"YulIdentifier","src":"19306:3:1"},"nativeSrc":"19306:19:1","nodeType":"YulFunctionCall","src":"19306:19:1"},"variableNames":[{"name":"tail","nativeSrc":"19298:4:1","nodeType":"YulIdentifier","src":"19298:4:1"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"19341:9:1","nodeType":"YulIdentifier","src":"19341:9:1"},{"name":"value0","nativeSrc":"19352:6:1","nodeType":"YulIdentifier","src":"19352:6:1"}],"functionName":{"name":"mstore","nativeSrc":"19334:6:1","nodeType":"YulIdentifier","src":"19334:6:1"},"nativeSrc":"19334:25:1","nodeType":"YulFunctionCall","src":"19334:25:1"},"nativeSrc":"19334:25:1","nodeType":"YulExpressionStatement","src":"19334:25:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"19379:9:1","nodeType":"YulIdentifier","src":"19379:9:1"},{"kind":"number","nativeSrc":"19390:2:1","nodeType":"YulLiteral","src":"19390:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"19375:3:1","nodeType":"YulIdentifier","src":"19375:3:1"},"nativeSrc":"19375:18:1","nodeType":"YulFunctionCall","src":"19375:18:1"},{"arguments":[{"name":"value1","nativeSrc":"19399:6:1","nodeType":"YulIdentifier","src":"19399:6:1"},{"kind":"number","nativeSrc":"19407:4:1","nodeType":"YulLiteral","src":"19407:4:1","type":"","value":"0xff"}],"functionName":{"name":"and","nativeSrc":"19395:3:1","nodeType":"YulIdentifier","src":"19395:3:1"},"nativeSrc":"19395:17:1","nodeType":"YulFunctionCall","src":"19395:17:1"}],"functionName":{"name":"mstore","nativeSrc":"19368:6:1","nodeType":"YulIdentifier","src":"19368:6:1"},"nativeSrc":"19368:45:1","nodeType":"YulFunctionCall","src":"19368:45:1"},"nativeSrc":"19368:45:1","nodeType":"YulExpressionStatement","src":"19368:45:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"19433:9:1","nodeType":"YulIdentifier","src":"19433:9:1"},{"kind":"number","nativeSrc":"19444:2:1","nodeType":"YulLiteral","src":"19444:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"19429:3:1","nodeType":"YulIdentifier","src":"19429:3:1"},"nativeSrc":"19429:18:1","nodeType":"YulFunctionCall","src":"19429:18:1"},{"name":"value2","nativeSrc":"19449:6:1","nodeType":"YulIdentifier","src":"19449:6:1"}],"functionName":{"name":"mstore","nativeSrc":"19422:6:1","nodeType":"YulIdentifier","src":"19422:6:1"},"nativeSrc":"19422:34:1","nodeType":"YulFunctionCall","src":"19422:34:1"},"nativeSrc":"19422:34:1","nodeType":"YulExpressionStatement","src":"19422:34:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"19476:9:1","nodeType":"YulIdentifier","src":"19476:9:1"},{"kind":"number","nativeSrc":"19487:2:1","nodeType":"YulLiteral","src":"19487:2:1","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"19472:3:1","nodeType":"YulIdentifier","src":"19472:3:1"},"nativeSrc":"19472:18:1","nodeType":"YulFunctionCall","src":"19472:18:1"},{"name":"value3","nativeSrc":"19492:6:1","nodeType":"YulIdentifier","src":"19492:6:1"}],"functionName":{"name":"mstore","nativeSrc":"19465:6:1","nodeType":"YulIdentifier","src":"19465:6:1"},"nativeSrc":"19465:34:1","nodeType":"YulFunctionCall","src":"19465:34:1"},"nativeSrc":"19465:34:1","nodeType":"YulExpressionStatement","src":"19465:34:1"}]},"name":"abi_encode_tuple_t_bytes32_t_uint8_t_bytes32_t_bytes32__to_t_bytes32_t_uint8_t_bytes32_t_bytes32__fromStack_reversed","nativeSrc":"19107:398:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"19233:9:1","nodeType":"YulTypedName","src":"19233:9:1","type":""},{"name":"value3","nativeSrc":"19244:6:1","nodeType":"YulTypedName","src":"19244:6:1","type":""},{"name":"value2","nativeSrc":"19252:6:1","nodeType":"YulTypedName","src":"19252:6:1","type":""},{"name":"value1","nativeSrc":"19260:6:1","nodeType":"YulTypedName","src":"19260:6:1","type":""},{"name":"value0","nativeSrc":"19268:6:1","nodeType":"YulTypedName","src":"19268:6:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"19279:4:1","nodeType":"YulTypedName","src":"19279:4:1","type":""}],"src":"19107:398:1"},{"body":{"nativeSrc":"19684:167:1","nodeType":"YulBlock","src":"19684:167:1","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"19701:9:1","nodeType":"YulIdentifier","src":"19701:9:1"},{"kind":"number","nativeSrc":"19712:2:1","nodeType":"YulLiteral","src":"19712:2:1","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"19694:6:1","nodeType":"YulIdentifier","src":"19694:6:1"},"nativeSrc":"19694:21:1","nodeType":"YulFunctionCall","src":"19694:21:1"},"nativeSrc":"19694:21:1","nodeType":"YulExpressionStatement","src":"19694:21:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"19735:9:1","nodeType":"YulIdentifier","src":"19735:9:1"},{"kind":"number","nativeSrc":"19746:2:1","nodeType":"YulLiteral","src":"19746:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"19731:3:1","nodeType":"YulIdentifier","src":"19731:3:1"},"nativeSrc":"19731:18:1","nodeType":"YulFunctionCall","src":"19731:18:1"},{"kind":"number","nativeSrc":"19751:2:1","nodeType":"YulLiteral","src":"19751:2:1","type":"","value":"17"}],"functionName":{"name":"mstore","nativeSrc":"19724:6:1","nodeType":"YulIdentifier","src":"19724:6:1"},"nativeSrc":"19724:30:1","nodeType":"YulFunctionCall","src":"19724:30:1"},"nativeSrc":"19724:30:1","nodeType":"YulExpressionStatement","src":"19724:30:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"19774:9:1","nodeType":"YulIdentifier","src":"19774:9:1"},{"kind":"number","nativeSrc":"19785:2:1","nodeType":"YulLiteral","src":"19785:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"19770:3:1","nodeType":"YulIdentifier","src":"19770:3:1"},"nativeSrc":"19770:18:1","nodeType":"YulFunctionCall","src":"19770:18:1"},{"hexValue":"494e56414c49445f5349474e4154555245","kind":"string","nativeSrc":"19790:19:1","nodeType":"YulLiteral","src":"19790:19:1","type":"","value":"INVALID_SIGNATURE"}],"functionName":{"name":"mstore","nativeSrc":"19763:6:1","nodeType":"YulIdentifier","src":"19763:6:1"},"nativeSrc":"19763:47:1","nodeType":"YulFunctionCall","src":"19763:47:1"},"nativeSrc":"19763:47:1","nodeType":"YulExpressionStatement","src":"19763:47:1"},{"nativeSrc":"19819:26:1","nodeType":"YulAssignment","src":"19819:26:1","value":{"arguments":[{"name":"headStart","nativeSrc":"19831:9:1","nodeType":"YulIdentifier","src":"19831:9:1"},{"kind":"number","nativeSrc":"19842:2:1","nodeType":"YulLiteral","src":"19842:2:1","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"19827:3:1","nodeType":"YulIdentifier","src":"19827:3:1"},"nativeSrc":"19827:18:1","nodeType":"YulFunctionCall","src":"19827:18:1"},"variableNames":[{"name":"tail","nativeSrc":"19819:4:1","nodeType":"YulIdentifier","src":"19819:4:1"}]}]},"name":"abi_encode_tuple_t_stringliteral_5e2e9eaa2d734966dea0900deacd15b20129fbce05255d633a3ce5ebca181b88__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"19510:341:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"19661:9:1","nodeType":"YulTypedName","src":"19661:9:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"19675:4:1","nodeType":"YulTypedName","src":"19675:4:1","type":""}],"src":"19510:341:1"},{"body":{"nativeSrc":"19903:88:1","nodeType":"YulBlock","src":"19903:88:1","statements":[{"body":{"nativeSrc":"19934:22:1","nodeType":"YulBlock","src":"19934:22:1","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"19936:16:1","nodeType":"YulIdentifier","src":"19936:16:1"},"nativeSrc":"19936:18:1","nodeType":"YulFunctionCall","src":"19936:18:1"},"nativeSrc":"19936:18:1","nodeType":"YulExpressionStatement","src":"19936:18:1"}]},"condition":{"arguments":[{"name":"value","nativeSrc":"19919:5:1","nodeType":"YulIdentifier","src":"19919:5:1"},{"arguments":[{"kind":"number","nativeSrc":"19930:1:1","nodeType":"YulLiteral","src":"19930:1:1","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"19926:3:1","nodeType":"YulIdentifier","src":"19926:3:1"},"nativeSrc":"19926:6:1","nodeType":"YulFunctionCall","src":"19926:6:1"}],"functionName":{"name":"eq","nativeSrc":"19916:2:1","nodeType":"YulIdentifier","src":"19916:2:1"},"nativeSrc":"19916:17:1","nodeType":"YulFunctionCall","src":"19916:17:1"},"nativeSrc":"19913:43:1","nodeType":"YulIf","src":"19913:43:1"},{"nativeSrc":"19965:20:1","nodeType":"YulAssignment","src":"19965:20:1","value":{"arguments":[{"name":"value","nativeSrc":"19976:5:1","nodeType":"YulIdentifier","src":"19976:5:1"},{"kind":"number","nativeSrc":"19983:1:1","nodeType":"YulLiteral","src":"19983:1:1","type":"","value":"1"}],"functionName":{"name":"add","nativeSrc":"19972:3:1","nodeType":"YulIdentifier","src":"19972:3:1"},"nativeSrc":"19972:13:1","nodeType":"YulFunctionCall","src":"19972:13:1"},"variableNames":[{"name":"ret","nativeSrc":"19965:3:1","nodeType":"YulIdentifier","src":"19965:3:1"}]}]},"name":"increment_t_uint256","nativeSrc":"19856:135:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"19885:5:1","nodeType":"YulTypedName","src":"19885:5:1","type":""}],"returnVariables":[{"name":"ret","nativeSrc":"19895:3:1","nodeType":"YulTypedName","src":"19895:3:1","type":""}],"src":"19856:135:1"},{"body":{"nativeSrc":"20170:163:1","nodeType":"YulBlock","src":"20170:163:1","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"20187:9:1","nodeType":"YulIdentifier","src":"20187:9:1"},{"kind":"number","nativeSrc":"20198:2:1","nodeType":"YulLiteral","src":"20198:2:1","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"20180:6:1","nodeType":"YulIdentifier","src":"20180:6:1"},"nativeSrc":"20180:21:1","nodeType":"YulFunctionCall","src":"20180:21:1"},"nativeSrc":"20180:21:1","nodeType":"YulExpressionStatement","src":"20180:21:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"20221:9:1","nodeType":"YulIdentifier","src":"20221:9:1"},{"kind":"number","nativeSrc":"20232:2:1","nodeType":"YulLiteral","src":"20232:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"20217:3:1","nodeType":"YulIdentifier","src":"20217:3:1"},"nativeSrc":"20217:18:1","nodeType":"YulFunctionCall","src":"20217:18:1"},{"kind":"number","nativeSrc":"20237:2:1","nodeType":"YulLiteral","src":"20237:2:1","type":"","value":"13"}],"functionName":{"name":"mstore","nativeSrc":"20210:6:1","nodeType":"YulIdentifier","src":"20210:6:1"},"nativeSrc":"20210:30:1","nodeType":"YulFunctionCall","src":"20210:30:1"},"nativeSrc":"20210:30:1","nodeType":"YulExpressionStatement","src":"20210:30:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"20260:9:1","nodeType":"YulIdentifier","src":"20260:9:1"},{"kind":"number","nativeSrc":"20271:2:1","nodeType":"YulLiteral","src":"20271:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"20256:3:1","nodeType":"YulIdentifier","src":"20256:3:1"},"nativeSrc":"20256:18:1","nodeType":"YulFunctionCall","src":"20256:18:1"},{"hexValue":"494e56414c49445f4e4f4e4345","kind":"string","nativeSrc":"20276:15:1","nodeType":"YulLiteral","src":"20276:15:1","type":"","value":"INVALID_NONCE"}],"functionName":{"name":"mstore","nativeSrc":"20249:6:1","nodeType":"YulIdentifier","src":"20249:6:1"},"nativeSrc":"20249:43:1","nodeType":"YulFunctionCall","src":"20249:43:1"},"nativeSrc":"20249:43:1","nodeType":"YulExpressionStatement","src":"20249:43:1"},{"nativeSrc":"20301:26:1","nodeType":"YulAssignment","src":"20301:26:1","value":{"arguments":[{"name":"headStart","nativeSrc":"20313:9:1","nodeType":"YulIdentifier","src":"20313:9:1"},{"kind":"number","nativeSrc":"20324:2:1","nodeType":"YulLiteral","src":"20324:2:1","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"20309:3:1","nodeType":"YulIdentifier","src":"20309:3:1"},"nativeSrc":"20309:18:1","nodeType":"YulFunctionCall","src":"20309:18:1"},"variableNames":[{"name":"tail","nativeSrc":"20301:4:1","nodeType":"YulIdentifier","src":"20301:4:1"}]}]},"name":"abi_encode_tuple_t_stringliteral_a19e25beaf00f467d35fbe7e167b5794fca796dbfd417dd2accc8f5303300b99__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"19996:337:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"20147:9:1","nodeType":"YulTypedName","src":"20147:9:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"20161:4:1","nodeType":"YulTypedName","src":"20161:4:1","type":""}],"src":"19996:337:1"},{"body":{"nativeSrc":"20512:168:1","nodeType":"YulBlock","src":"20512:168:1","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"20529:9:1","nodeType":"YulIdentifier","src":"20529:9:1"},{"kind":"number","nativeSrc":"20540:2:1","nodeType":"YulLiteral","src":"20540:2:1","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"20522:6:1","nodeType":"YulIdentifier","src":"20522:6:1"},"nativeSrc":"20522:21:1","nodeType":"YulFunctionCall","src":"20522:21:1"},"nativeSrc":"20522:21:1","nodeType":"YulExpressionStatement","src":"20522:21:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"20563:9:1","nodeType":"YulIdentifier","src":"20563:9:1"},{"kind":"number","nativeSrc":"20574:2:1","nodeType":"YulLiteral","src":"20574:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"20559:3:1","nodeType":"YulIdentifier","src":"20559:3:1"},"nativeSrc":"20559:18:1","nodeType":"YulFunctionCall","src":"20559:18:1"},{"kind":"number","nativeSrc":"20579:2:1","nodeType":"YulLiteral","src":"20579:2:1","type":"","value":"18"}],"functionName":{"name":"mstore","nativeSrc":"20552:6:1","nodeType":"YulIdentifier","src":"20552:6:1"},"nativeSrc":"20552:30:1","nodeType":"YulFunctionCall","src":"20552:30:1"},"nativeSrc":"20552:30:1","nodeType":"YulExpressionStatement","src":"20552:30:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"20602:9:1","nodeType":"YulIdentifier","src":"20602:9:1"},{"kind":"number","nativeSrc":"20613:2:1","nodeType":"YulLiteral","src":"20613:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"20598:3:1","nodeType":"YulIdentifier","src":"20598:3:1"},"nativeSrc":"20598:18:1","nodeType":"YulFunctionCall","src":"20598:18:1"},{"hexValue":"494e56414c49445f45585049524154494f4e","kind":"string","nativeSrc":"20618:20:1","nodeType":"YulLiteral","src":"20618:20:1","type":"","value":"INVALID_EXPIRATION"}],"functionName":{"name":"mstore","nativeSrc":"20591:6:1","nodeType":"YulIdentifier","src":"20591:6:1"},"nativeSrc":"20591:48:1","nodeType":"YulFunctionCall","src":"20591:48:1"},"nativeSrc":"20591:48:1","nodeType":"YulExpressionStatement","src":"20591:48:1"},{"nativeSrc":"20648:26:1","nodeType":"YulAssignment","src":"20648:26:1","value":{"arguments":[{"name":"headStart","nativeSrc":"20660:9:1","nodeType":"YulIdentifier","src":"20660:9:1"},{"kind":"number","nativeSrc":"20671:2:1","nodeType":"YulLiteral","src":"20671:2:1","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"20656:3:1","nodeType":"YulIdentifier","src":"20656:3:1"},"nativeSrc":"20656:18:1","nodeType":"YulFunctionCall","src":"20656:18:1"},"variableNames":[{"name":"tail","nativeSrc":"20648:4:1","nodeType":"YulIdentifier","src":"20648:4:1"}]}]},"name":"abi_encode_tuple_t_stringliteral_9fe3e5cf49f72bf8a6a8455c3e990f8479f5dfa09ac808886f330a39b0029c2d__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"20338:342:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"20489:9:1","nodeType":"YulTypedName","src":"20489:9:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"20503:4:1","nodeType":"YulTypedName","src":"20503:4:1","type":""}],"src":"20338:342:1"},{"body":{"nativeSrc":"20859:163:1","nodeType":"YulBlock","src":"20859:163:1","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"20876:9:1","nodeType":"YulIdentifier","src":"20876:9:1"},{"kind":"number","nativeSrc":"20887:2:1","nodeType":"YulLiteral","src":"20887:2:1","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"20869:6:1","nodeType":"YulIdentifier","src":"20869:6:1"},"nativeSrc":"20869:21:1","nodeType":"YulFunctionCall","src":"20869:21:1"},"nativeSrc":"20869:21:1","nodeType":"YulExpressionStatement","src":"20869:21:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"20910:9:1","nodeType":"YulIdentifier","src":"20910:9:1"},{"kind":"number","nativeSrc":"20921:2:1","nodeType":"YulLiteral","src":"20921:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"20906:3:1","nodeType":"YulIdentifier","src":"20906:3:1"},"nativeSrc":"20906:18:1","nodeType":"YulFunctionCall","src":"20906:18:1"},{"kind":"number","nativeSrc":"20926:2:1","nodeType":"YulLiteral","src":"20926:2:1","type":"","value":"13"}],"functionName":{"name":"mstore","nativeSrc":"20899:6:1","nodeType":"YulIdentifier","src":"20899:6:1"},"nativeSrc":"20899:30:1","nodeType":"YulFunctionCall","src":"20899:30:1"},"nativeSrc":"20899:30:1","nodeType":"YulExpressionStatement","src":"20899:30:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"20949:9:1","nodeType":"YulIdentifier","src":"20949:9:1"},{"kind":"number","nativeSrc":"20960:2:1","nodeType":"YulLiteral","src":"20960:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"20945:3:1","nodeType":"YulIdentifier","src":"20945:3:1"},"nativeSrc":"20945:18:1","nodeType":"YulFunctionCall","src":"20945:18:1"},{"hexValue":"494e56414c49445f4f574e4552","kind":"string","nativeSrc":"20965:15:1","nodeType":"YulLiteral","src":"20965:15:1","type":"","value":"INVALID_OWNER"}],"functionName":{"name":"mstore","nativeSrc":"20938:6:1","nodeType":"YulIdentifier","src":"20938:6:1"},"nativeSrc":"20938:43:1","nodeType":"YulFunctionCall","src":"20938:43:1"},"nativeSrc":"20938:43:1","nodeType":"YulExpressionStatement","src":"20938:43:1"},{"nativeSrc":"20990:26:1","nodeType":"YulAssignment","src":"20990:26:1","value":{"arguments":[{"name":"headStart","nativeSrc":"21002:9:1","nodeType":"YulIdentifier","src":"21002:9:1"},{"kind":"number","nativeSrc":"21013:2:1","nodeType":"YulLiteral","src":"21013:2:1","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"20998:3:1","nodeType":"YulIdentifier","src":"20998:3:1"},"nativeSrc":"20998:18:1","nodeType":"YulFunctionCall","src":"20998:18:1"},"variableNames":[{"name":"tail","nativeSrc":"20990:4:1","nodeType":"YulIdentifier","src":"20990:4:1"}]}]},"name":"abi_encode_tuple_t_stringliteral_a30e2b4f22d955e30086ae3aef0adfd87eec9d0d3f055d6aa9af61f522dda886__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"20685:337:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"20836:9:1","nodeType":"YulTypedName","src":"20836:9:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"20850:4:1","nodeType":"YulTypedName","src":"20850:4:1","type":""}],"src":"20685:337:1"},{"body":{"nativeSrc":"21268:346:1","nodeType":"YulBlock","src":"21268:346:1","statements":[{"nativeSrc":"21278:27:1","nodeType":"YulAssignment","src":"21278:27:1","value":{"arguments":[{"name":"headStart","nativeSrc":"21290:9:1","nodeType":"YulIdentifier","src":"21290:9:1"},{"kind":"number","nativeSrc":"21301:3:1","nodeType":"YulLiteral","src":"21301:3:1","type":"","value":"192"}],"functionName":{"name":"add","nativeSrc":"21286:3:1","nodeType":"YulIdentifier","src":"21286:3:1"},"nativeSrc":"21286:19:1","nodeType":"YulFunctionCall","src":"21286:19:1"},"variableNames":[{"name":"tail","nativeSrc":"21278:4:1","nodeType":"YulIdentifier","src":"21278:4:1"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"21321:9:1","nodeType":"YulIdentifier","src":"21321:9:1"},{"name":"value0","nativeSrc":"21332:6:1","nodeType":"YulIdentifier","src":"21332:6:1"}],"functionName":{"name":"mstore","nativeSrc":"21314:6:1","nodeType":"YulIdentifier","src":"21314:6:1"},"nativeSrc":"21314:25:1","nodeType":"YulFunctionCall","src":"21314:25:1"},"nativeSrc":"21314:25:1","nodeType":"YulExpressionStatement","src":"21314:25:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"21359:9:1","nodeType":"YulIdentifier","src":"21359:9:1"},{"kind":"number","nativeSrc":"21370:2:1","nodeType":"YulLiteral","src":"21370:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"21355:3:1","nodeType":"YulIdentifier","src":"21355:3:1"},"nativeSrc":"21355:18:1","nodeType":"YulFunctionCall","src":"21355:18:1"},{"arguments":[{"name":"value1","nativeSrc":"21379:6:1","nodeType":"YulIdentifier","src":"21379:6:1"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"21395:3:1","nodeType":"YulLiteral","src":"21395:3:1","type":"","value":"160"},{"kind":"number","nativeSrc":"21400:1:1","nodeType":"YulLiteral","src":"21400:1:1","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"21391:3:1","nodeType":"YulIdentifier","src":"21391:3:1"},"nativeSrc":"21391:11:1","nodeType":"YulFunctionCall","src":"21391:11:1"},{"kind":"number","nativeSrc":"21404:1:1","nodeType":"YulLiteral","src":"21404:1:1","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"21387:3:1","nodeType":"YulIdentifier","src":"21387:3:1"},"nativeSrc":"21387:19:1","nodeType":"YulFunctionCall","src":"21387:19:1"}],"functionName":{"name":"and","nativeSrc":"21375:3:1","nodeType":"YulIdentifier","src":"21375:3:1"},"nativeSrc":"21375:32:1","nodeType":"YulFunctionCall","src":"21375:32:1"}],"functionName":{"name":"mstore","nativeSrc":"21348:6:1","nodeType":"YulIdentifier","src":"21348:6:1"},"nativeSrc":"21348:60:1","nodeType":"YulFunctionCall","src":"21348:60:1"},"nativeSrc":"21348:60:1","nodeType":"YulExpressionStatement","src":"21348:60:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"21428:9:1","nodeType":"YulIdentifier","src":"21428:9:1"},{"kind":"number","nativeSrc":"21439:2:1","nodeType":"YulLiteral","src":"21439:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"21424:3:1","nodeType":"YulIdentifier","src":"21424:3:1"},"nativeSrc":"21424:18:1","nodeType":"YulFunctionCall","src":"21424:18:1"},{"arguments":[{"name":"value2","nativeSrc":"21448:6:1","nodeType":"YulIdentifier","src":"21448:6:1"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"21464:3:1","nodeType":"YulLiteral","src":"21464:3:1","type":"","value":"160"},{"kind":"number","nativeSrc":"21469:1:1","nodeType":"YulLiteral","src":"21469:1:1","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"21460:3:1","nodeType":"YulIdentifier","src":"21460:3:1"},"nativeSrc":"21460:11:1","nodeType":"YulFunctionCall","src":"21460:11:1"},{"kind":"number","nativeSrc":"21473:1:1","nodeType":"YulLiteral","src":"21473:1:1","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"21456:3:1","nodeType":"YulIdentifier","src":"21456:3:1"},"nativeSrc":"21456:19:1","nodeType":"YulFunctionCall","src":"21456:19:1"}],"functionName":{"name":"and","nativeSrc":"21444:3:1","nodeType":"YulIdentifier","src":"21444:3:1"},"nativeSrc":"21444:32:1","nodeType":"YulFunctionCall","src":"21444:32:1"}],"functionName":{"name":"mstore","nativeSrc":"21417:6:1","nodeType":"YulIdentifier","src":"21417:6:1"},"nativeSrc":"21417:60:1","nodeType":"YulFunctionCall","src":"21417:60:1"},"nativeSrc":"21417:60:1","nodeType":"YulExpressionStatement","src":"21417:60:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"21497:9:1","nodeType":"YulIdentifier","src":"21497:9:1"},{"kind":"number","nativeSrc":"21508:2:1","nodeType":"YulLiteral","src":"21508:2:1","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"21493:3:1","nodeType":"YulIdentifier","src":"21493:3:1"},"nativeSrc":"21493:18:1","nodeType":"YulFunctionCall","src":"21493:18:1"},{"name":"value3","nativeSrc":"21513:6:1","nodeType":"YulIdentifier","src":"21513:6:1"}],"functionName":{"name":"mstore","nativeSrc":"21486:6:1","nodeType":"YulIdentifier","src":"21486:6:1"},"nativeSrc":"21486:34:1","nodeType":"YulFunctionCall","src":"21486:34:1"},"nativeSrc":"21486:34:1","nodeType":"YulExpressionStatement","src":"21486:34:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"21540:9:1","nodeType":"YulIdentifier","src":"21540:9:1"},{"kind":"number","nativeSrc":"21551:3:1","nodeType":"YulLiteral","src":"21551:3:1","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"21536:3:1","nodeType":"YulIdentifier","src":"21536:3:1"},"nativeSrc":"21536:19:1","nodeType":"YulFunctionCall","src":"21536:19:1"},{"name":"value4","nativeSrc":"21557:6:1","nodeType":"YulIdentifier","src":"21557:6:1"}],"functionName":{"name":"mstore","nativeSrc":"21529:6:1","nodeType":"YulIdentifier","src":"21529:6:1"},"nativeSrc":"21529:35:1","nodeType":"YulFunctionCall","src":"21529:35:1"},"nativeSrc":"21529:35:1","nodeType":"YulExpressionStatement","src":"21529:35:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"21584:9:1","nodeType":"YulIdentifier","src":"21584:9:1"},{"kind":"number","nativeSrc":"21595:3:1","nodeType":"YulLiteral","src":"21595:3:1","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"21580:3:1","nodeType":"YulIdentifier","src":"21580:3:1"},"nativeSrc":"21580:19:1","nodeType":"YulFunctionCall","src":"21580:19:1"},{"name":"value5","nativeSrc":"21601:6:1","nodeType":"YulIdentifier","src":"21601:6:1"}],"functionName":{"name":"mstore","nativeSrc":"21573:6:1","nodeType":"YulIdentifier","src":"21573:6:1"},"nativeSrc":"21573:35:1","nodeType":"YulFunctionCall","src":"21573:35:1"},"nativeSrc":"21573:35:1","nodeType":"YulExpressionStatement","src":"21573:35:1"}]},"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","nativeSrc":"21027:587:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"21197:9:1","nodeType":"YulTypedName","src":"21197:9:1","type":""},{"name":"value5","nativeSrc":"21208:6:1","nodeType":"YulTypedName","src":"21208:6:1","type":""},{"name":"value4","nativeSrc":"21216:6:1","nodeType":"YulTypedName","src":"21216:6:1","type":""},{"name":"value3","nativeSrc":"21224:6:1","nodeType":"YulTypedName","src":"21224:6:1","type":""},{"name":"value2","nativeSrc":"21232:6:1","nodeType":"YulTypedName","src":"21232:6:1","type":""},{"name":"value1","nativeSrc":"21240:6:1","nodeType":"YulTypedName","src":"21240:6:1","type":""},{"name":"value0","nativeSrc":"21248:6:1","nodeType":"YulTypedName","src":"21248:6:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"21259:4:1","nodeType":"YulTypedName","src":"21259:4:1","type":""}],"src":"21027:587:1"},{"body":{"nativeSrc":"21651:95:1","nodeType":"YulBlock","src":"21651:95:1","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"21668:1:1","nodeType":"YulLiteral","src":"21668:1:1","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"21675:3:1","nodeType":"YulLiteral","src":"21675:3:1","type":"","value":"224"},{"kind":"number","nativeSrc":"21680:10:1","nodeType":"YulLiteral","src":"21680:10:1","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"21671:3:1","nodeType":"YulIdentifier","src":"21671:3:1"},"nativeSrc":"21671:20:1","nodeType":"YulFunctionCall","src":"21671:20:1"}],"functionName":{"name":"mstore","nativeSrc":"21661:6:1","nodeType":"YulIdentifier","src":"21661:6:1"},"nativeSrc":"21661:31:1","nodeType":"YulFunctionCall","src":"21661:31:1"},"nativeSrc":"21661:31:1","nodeType":"YulExpressionStatement","src":"21661:31:1"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"21708:1:1","nodeType":"YulLiteral","src":"21708:1:1","type":"","value":"4"},{"kind":"number","nativeSrc":"21711:4:1","nodeType":"YulLiteral","src":"21711:4:1","type":"","value":"0x21"}],"functionName":{"name":"mstore","nativeSrc":"21701:6:1","nodeType":"YulIdentifier","src":"21701:6:1"},"nativeSrc":"21701:15:1","nodeType":"YulFunctionCall","src":"21701:15:1"},"nativeSrc":"21701:15:1","nodeType":"YulExpressionStatement","src":"21701:15:1"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"21732:1:1","nodeType":"YulLiteral","src":"21732:1:1","type":"","value":"0"},{"kind":"number","nativeSrc":"21735:4:1","nodeType":"YulLiteral","src":"21735:4:1","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"21725:6:1","nodeType":"YulIdentifier","src":"21725:6:1"},"nativeSrc":"21725:15:1","nodeType":"YulFunctionCall","src":"21725:15:1"},"nativeSrc":"21725:15:1","nodeType":"YulExpressionStatement","src":"21725:15:1"}]},"name":"panic_error_0x21","nativeSrc":"21619:127:1","nodeType":"YulFunctionDefinition","src":"21619:127:1"},{"body":{"nativeSrc":"21964:276:1","nodeType":"YulBlock","src":"21964:276:1","statements":[{"nativeSrc":"21974:27:1","nodeType":"YulAssignment","src":"21974:27:1","value":{"arguments":[{"name":"headStart","nativeSrc":"21986:9:1","nodeType":"YulIdentifier","src":"21986:9:1"},{"kind":"number","nativeSrc":"21997:3:1","nodeType":"YulLiteral","src":"21997:3:1","type":"","value":"160"}],"functionName":{"name":"add","nativeSrc":"21982:3:1","nodeType":"YulIdentifier","src":"21982:3:1"},"nativeSrc":"21982:19:1","nodeType":"YulFunctionCall","src":"21982:19:1"},"variableNames":[{"name":"tail","nativeSrc":"21974:4:1","nodeType":"YulIdentifier","src":"21974:4:1"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"22017:9:1","nodeType":"YulIdentifier","src":"22017:9:1"},{"name":"value0","nativeSrc":"22028:6:1","nodeType":"YulIdentifier","src":"22028:6:1"}],"functionName":{"name":"mstore","nativeSrc":"22010:6:1","nodeType":"YulIdentifier","src":"22010:6:1"},"nativeSrc":"22010:25:1","nodeType":"YulFunctionCall","src":"22010:25:1"},"nativeSrc":"22010:25:1","nodeType":"YulExpressionStatement","src":"22010:25:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"22055:9:1","nodeType":"YulIdentifier","src":"22055:9:1"},{"kind":"number","nativeSrc":"22066:2:1","nodeType":"YulLiteral","src":"22066:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"22051:3:1","nodeType":"YulIdentifier","src":"22051:3:1"},"nativeSrc":"22051:18:1","nodeType":"YulFunctionCall","src":"22051:18:1"},{"arguments":[{"name":"value1","nativeSrc":"22075:6:1","nodeType":"YulIdentifier","src":"22075:6:1"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"22091:3:1","nodeType":"YulLiteral","src":"22091:3:1","type":"","value":"160"},{"kind":"number","nativeSrc":"22096:1:1","nodeType":"YulLiteral","src":"22096:1:1","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"22087:3:1","nodeType":"YulIdentifier","src":"22087:3:1"},"nativeSrc":"22087:11:1","nodeType":"YulFunctionCall","src":"22087:11:1"},{"kind":"number","nativeSrc":"22100:1:1","nodeType":"YulLiteral","src":"22100:1:1","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"22083:3:1","nodeType":"YulIdentifier","src":"22083:3:1"},"nativeSrc":"22083:19:1","nodeType":"YulFunctionCall","src":"22083:19:1"}],"functionName":{"name":"and","nativeSrc":"22071:3:1","nodeType":"YulIdentifier","src":"22071:3:1"},"nativeSrc":"22071:32:1","nodeType":"YulFunctionCall","src":"22071:32:1"}],"functionName":{"name":"mstore","nativeSrc":"22044:6:1","nodeType":"YulIdentifier","src":"22044:6:1"},"nativeSrc":"22044:60:1","nodeType":"YulFunctionCall","src":"22044:60:1"},"nativeSrc":"22044:60:1","nodeType":"YulExpressionStatement","src":"22044:60:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"22124:9:1","nodeType":"YulIdentifier","src":"22124:9:1"},{"kind":"number","nativeSrc":"22135:2:1","nodeType":"YulLiteral","src":"22135:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"22120:3:1","nodeType":"YulIdentifier","src":"22120:3:1"},"nativeSrc":"22120:18:1","nodeType":"YulFunctionCall","src":"22120:18:1"},{"name":"value2","nativeSrc":"22140:6:1","nodeType":"YulIdentifier","src":"22140:6:1"}],"functionName":{"name":"mstore","nativeSrc":"22113:6:1","nodeType":"YulIdentifier","src":"22113:6:1"},"nativeSrc":"22113:34:1","nodeType":"YulFunctionCall","src":"22113:34:1"},"nativeSrc":"22113:34:1","nodeType":"YulExpressionStatement","src":"22113:34:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"22167:9:1","nodeType":"YulIdentifier","src":"22167:9:1"},{"kind":"number","nativeSrc":"22178:2:1","nodeType":"YulLiteral","src":"22178:2:1","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"22163:3:1","nodeType":"YulIdentifier","src":"22163:3:1"},"nativeSrc":"22163:18:1","nodeType":"YulFunctionCall","src":"22163:18:1"},{"name":"value3","nativeSrc":"22183:6:1","nodeType":"YulIdentifier","src":"22183:6:1"}],"functionName":{"name":"mstore","nativeSrc":"22156:6:1","nodeType":"YulIdentifier","src":"22156:6:1"},"nativeSrc":"22156:34:1","nodeType":"YulFunctionCall","src":"22156:34:1"},"nativeSrc":"22156:34:1","nodeType":"YulExpressionStatement","src":"22156:34:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"22210:9:1","nodeType":"YulIdentifier","src":"22210:9:1"},{"kind":"number","nativeSrc":"22221:3:1","nodeType":"YulLiteral","src":"22221:3:1","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"22206:3:1","nodeType":"YulIdentifier","src":"22206:3:1"},"nativeSrc":"22206:19:1","nodeType":"YulFunctionCall","src":"22206:19:1"},{"name":"value4","nativeSrc":"22227:6:1","nodeType":"YulIdentifier","src":"22227:6:1"}],"functionName":{"name":"mstore","nativeSrc":"22199:6:1","nodeType":"YulIdentifier","src":"22199:6:1"},"nativeSrc":"22199:35:1","nodeType":"YulFunctionCall","src":"22199:35:1"},"nativeSrc":"22199:35:1","nodeType":"YulExpressionStatement","src":"22199:35:1"}]},"name":"abi_encode_tuple_t_bytes32_t_address_t_uint256_t_uint256_t_uint256__to_t_bytes32_t_address_t_uint256_t_uint256_t_uint256__fromStack_reversed","nativeSrc":"21751:489:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"21901:9:1","nodeType":"YulTypedName","src":"21901:9:1","type":""},{"name":"value4","nativeSrc":"21912:6:1","nodeType":"YulTypedName","src":"21912:6:1","type":""},{"name":"value3","nativeSrc":"21920:6:1","nodeType":"YulTypedName","src":"21920:6:1","type":""},{"name":"value2","nativeSrc":"21928:6:1","nodeType":"YulTypedName","src":"21928:6:1","type":""},{"name":"value1","nativeSrc":"21936:6:1","nodeType":"YulTypedName","src":"21936:6:1","type":""},{"name":"value0","nativeSrc":"21944:6:1","nodeType":"YulTypedName","src":"21944:6:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"21955:4:1","nodeType":"YulTypedName","src":"21955:4:1","type":""}],"src":"21751:489:1"},{"body":{"nativeSrc":"22419:179:1","nodeType":"YulBlock","src":"22419:179:1","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"22436:9:1","nodeType":"YulIdentifier","src":"22436:9:1"},{"kind":"number","nativeSrc":"22447:2:1","nodeType":"YulLiteral","src":"22447:2:1","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"22429:6:1","nodeType":"YulIdentifier","src":"22429:6:1"},"nativeSrc":"22429:21:1","nodeType":"YulFunctionCall","src":"22429:21:1"},"nativeSrc":"22429:21:1","nodeType":"YulExpressionStatement","src":"22429:21:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"22470:9:1","nodeType":"YulIdentifier","src":"22470:9:1"},{"kind":"number","nativeSrc":"22481:2:1","nodeType":"YulLiteral","src":"22481:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"22466:3:1","nodeType":"YulIdentifier","src":"22466:3:1"},"nativeSrc":"22466:18:1","nodeType":"YulFunctionCall","src":"22466:18:1"},{"kind":"number","nativeSrc":"22486:2:1","nodeType":"YulLiteral","src":"22486:2:1","type":"","value":"29"}],"functionName":{"name":"mstore","nativeSrc":"22459:6:1","nodeType":"YulIdentifier","src":"22459:6:1"},"nativeSrc":"22459:30:1","nodeType":"YulFunctionCall","src":"22459:30:1"},"nativeSrc":"22459:30:1","nodeType":"YulExpressionStatement","src":"22459:30:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"22509:9:1","nodeType":"YulIdentifier","src":"22509:9:1"},{"kind":"number","nativeSrc":"22520:2:1","nodeType":"YulLiteral","src":"22520:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"22505:3:1","nodeType":"YulIdentifier","src":"22505:3:1"},"nativeSrc":"22505:18:1","nodeType":"YulFunctionCall","src":"22505:18:1"},{"hexValue":"43414c4c45525f4e4f545f50454e44494e475f524f4c455f41444d494e","kind":"string","nativeSrc":"22525:31:1","nodeType":"YulLiteral","src":"22525:31:1","type":"","value":"CALLER_NOT_PENDING_ROLE_ADMIN"}],"functionName":{"name":"mstore","nativeSrc":"22498:6:1","nodeType":"YulIdentifier","src":"22498:6:1"},"nativeSrc":"22498:59:1","nodeType":"YulFunctionCall","src":"22498:59:1"},"nativeSrc":"22498:59:1","nodeType":"YulExpressionStatement","src":"22498:59:1"},{"nativeSrc":"22566:26:1","nodeType":"YulAssignment","src":"22566:26:1","value":{"arguments":[{"name":"headStart","nativeSrc":"22578:9:1","nodeType":"YulIdentifier","src":"22578:9:1"},{"kind":"number","nativeSrc":"22589:2:1","nodeType":"YulLiteral","src":"22589:2:1","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"22574:3:1","nodeType":"YulIdentifier","src":"22574:3:1"},"nativeSrc":"22574:18:1","nodeType":"YulFunctionCall","src":"22574:18:1"},"variableNames":[{"name":"tail","nativeSrc":"22566:4:1","nodeType":"YulIdentifier","src":"22566:4:1"}]}]},"name":"abi_encode_tuple_t_stringliteral_e80295a9867834b2dfe1d7606b122307d35ebaa940c20b448f18824a9256df9d__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"22245:353:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"22396:9:1","nodeType":"YulTypedName","src":"22396:9:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"22410:4:1","nodeType":"YulTypedName","src":"22410:4:1","type":""}],"src":"22245:353:1"},{"body":{"nativeSrc":"22777:178:1","nodeType":"YulBlock","src":"22777:178:1","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"22794:9:1","nodeType":"YulIdentifier","src":"22794:9:1"},{"kind":"number","nativeSrc":"22805:2:1","nodeType":"YulLiteral","src":"22805:2:1","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"22787:6:1","nodeType":"YulIdentifier","src":"22787:6:1"},"nativeSrc":"22787:21:1","nodeType":"YulFunctionCall","src":"22787:21:1"},"nativeSrc":"22787:21:1","nodeType":"YulExpressionStatement","src":"22787:21:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"22828:9:1","nodeType":"YulIdentifier","src":"22828:9:1"},{"kind":"number","nativeSrc":"22839:2:1","nodeType":"YulLiteral","src":"22839:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"22824:3:1","nodeType":"YulIdentifier","src":"22824:3:1"},"nativeSrc":"22824:18:1","nodeType":"YulFunctionCall","src":"22824:18:1"},{"kind":"number","nativeSrc":"22844:2:1","nodeType":"YulLiteral","src":"22844:2:1","type":"","value":"28"}],"functionName":{"name":"mstore","nativeSrc":"22817:6:1","nodeType":"YulIdentifier","src":"22817:6:1"},"nativeSrc":"22817:30:1","nodeType":"YulFunctionCall","src":"22817:30:1"},"nativeSrc":"22817:30:1","nodeType":"YulExpressionStatement","src":"22817:30:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"22867:9:1","nodeType":"YulIdentifier","src":"22867:9:1"},{"kind":"number","nativeSrc":"22878:2:1","nodeType":"YulLiteral","src":"22878:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"22863:3:1","nodeType":"YulIdentifier","src":"22863:3:1"},"nativeSrc":"22863:18:1","nodeType":"YulFunctionCall","src":"22863:18:1"},{"hexValue":"4d4154485f4d554c5449504c49434154494f4e5f4f564552464c4f57","kind":"string","nativeSrc":"22883:30:1","nodeType":"YulLiteral","src":"22883:30:1","type":"","value":"MATH_MULTIPLICATION_OVERFLOW"}],"functionName":{"name":"mstore","nativeSrc":"22856:6:1","nodeType":"YulIdentifier","src":"22856:6:1"},"nativeSrc":"22856:58:1","nodeType":"YulFunctionCall","src":"22856:58:1"},"nativeSrc":"22856:58:1","nodeType":"YulExpressionStatement","src":"22856:58:1"},{"nativeSrc":"22923:26:1","nodeType":"YulAssignment","src":"22923:26:1","value":{"arguments":[{"name":"headStart","nativeSrc":"22935:9:1","nodeType":"YulIdentifier","src":"22935:9:1"},{"kind":"number","nativeSrc":"22946:2:1","nodeType":"YulLiteral","src":"22946:2:1","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"22931:3:1","nodeType":"YulIdentifier","src":"22931:3:1"},"nativeSrc":"22931:18:1","nodeType":"YulFunctionCall","src":"22931:18:1"},"variableNames":[{"name":"tail","nativeSrc":"22923:4:1","nodeType":"YulIdentifier","src":"22923:4:1"}]}]},"name":"abi_encode_tuple_t_stringliteral_6b96bc99e56604df6600e4ce66f7e91bdc3417f453200fce123d801c60b50ff8__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"22603:352:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"22754:9:1","nodeType":"YulTypedName","src":"22754:9:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"22768:4:1","nodeType":"YulTypedName","src":"22768:4:1","type":""}],"src":"22603:352:1"},{"body":{"nativeSrc":"23134:168:1","nodeType":"YulBlock","src":"23134:168:1","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"23151:9:1","nodeType":"YulIdentifier","src":"23151:9:1"},{"kind":"number","nativeSrc":"23162:2:1","nodeType":"YulLiteral","src":"23162:2:1","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"23144:6:1","nodeType":"YulIdentifier","src":"23144:6:1"},"nativeSrc":"23144:21:1","nodeType":"YulFunctionCall","src":"23144:21:1"},"nativeSrc":"23144:21:1","nodeType":"YulExpressionStatement","src":"23144:21:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"23185:9:1","nodeType":"YulIdentifier","src":"23185:9:1"},{"kind":"number","nativeSrc":"23196:2:1","nodeType":"YulLiteral","src":"23196:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"23181:3:1","nodeType":"YulIdentifier","src":"23181:3:1"},"nativeSrc":"23181:18:1","nodeType":"YulFunctionCall","src":"23181:18:1"},{"kind":"number","nativeSrc":"23201:2:1","nodeType":"YulLiteral","src":"23201:2:1","type":"","value":"18"}],"functionName":{"name":"mstore","nativeSrc":"23174:6:1","nodeType":"YulIdentifier","src":"23174:6:1"},"nativeSrc":"23174:30:1","nodeType":"YulFunctionCall","src":"23174:30:1"},"nativeSrc":"23174:30:1","nodeType":"YulExpressionStatement","src":"23174:30:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"23224:9:1","nodeType":"YulIdentifier","src":"23224:9:1"},{"kind":"number","nativeSrc":"23235:2:1","nodeType":"YulLiteral","src":"23235:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"23220:3:1","nodeType":"YulIdentifier","src":"23220:3:1"},"nativeSrc":"23220:18:1","nodeType":"YulFunctionCall","src":"23220:18:1"},{"hexValue":"5a45524f5f45584348414e47455f52415445","kind":"string","nativeSrc":"23240:20:1","nodeType":"YulLiteral","src":"23240:20:1","type":"","value":"ZERO_EXCHANGE_RATE"}],"functionName":{"name":"mstore","nativeSrc":"23213:6:1","nodeType":"YulIdentifier","src":"23213:6:1"},"nativeSrc":"23213:48:1","nodeType":"YulFunctionCall","src":"23213:48:1"},"nativeSrc":"23213:48:1","nodeType":"YulExpressionStatement","src":"23213:48:1"},{"nativeSrc":"23270:26:1","nodeType":"YulAssignment","src":"23270:26:1","value":{"arguments":[{"name":"headStart","nativeSrc":"23282:9:1","nodeType":"YulIdentifier","src":"23282:9:1"},{"kind":"number","nativeSrc":"23293:2:1","nodeType":"YulLiteral","src":"23293:2:1","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"23278:3:1","nodeType":"YulIdentifier","src":"23278:3:1"},"nativeSrc":"23278:18:1","nodeType":"YulFunctionCall","src":"23278:18:1"},"variableNames":[{"name":"tail","nativeSrc":"23270:4:1","nodeType":"YulIdentifier","src":"23270:4:1"}]}]},"name":"abi_encode_tuple_t_stringliteral_2f1333997521c1f7b64fb9baad89e36b71dfc7265a9804df600ce8ae5c1f6f36__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"22960:342:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"23111:9:1","nodeType":"YulTypedName","src":"23111:9:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"23125:4:1","nodeType":"YulTypedName","src":"23125:4:1","type":""}],"src":"22960:342:1"},{"body":{"nativeSrc":"23436:145:1","nodeType":"YulBlock","src":"23436:145:1","statements":[{"nativeSrc":"23446:26:1","nodeType":"YulAssignment","src":"23446:26:1","value":{"arguments":[{"name":"headStart","nativeSrc":"23458:9:1","nodeType":"YulIdentifier","src":"23458:9:1"},{"kind":"number","nativeSrc":"23469:2:1","nodeType":"YulLiteral","src":"23469:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"23454:3:1","nodeType":"YulIdentifier","src":"23454:3:1"},"nativeSrc":"23454:18:1","nodeType":"YulFunctionCall","src":"23454:18:1"},"variableNames":[{"name":"tail","nativeSrc":"23446:4:1","nodeType":"YulIdentifier","src":"23446:4:1"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"23488:9:1","nodeType":"YulIdentifier","src":"23488:9:1"},{"arguments":[{"name":"value0","nativeSrc":"23503:6:1","nodeType":"YulIdentifier","src":"23503:6:1"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"23519:3:1","nodeType":"YulLiteral","src":"23519:3:1","type":"","value":"160"},{"kind":"number","nativeSrc":"23524:1:1","nodeType":"YulLiteral","src":"23524:1:1","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"23515:3:1","nodeType":"YulIdentifier","src":"23515:3:1"},"nativeSrc":"23515:11:1","nodeType":"YulFunctionCall","src":"23515:11:1"},{"kind":"number","nativeSrc":"23528:1:1","nodeType":"YulLiteral","src":"23528:1:1","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"23511:3:1","nodeType":"YulIdentifier","src":"23511:3:1"},"nativeSrc":"23511:19:1","nodeType":"YulFunctionCall","src":"23511:19:1"}],"functionName":{"name":"and","nativeSrc":"23499:3:1","nodeType":"YulIdentifier","src":"23499:3:1"},"nativeSrc":"23499:32:1","nodeType":"YulFunctionCall","src":"23499:32:1"}],"functionName":{"name":"mstore","nativeSrc":"23481:6:1","nodeType":"YulIdentifier","src":"23481:6:1"},"nativeSrc":"23481:51:1","nodeType":"YulFunctionCall","src":"23481:51:1"},"nativeSrc":"23481:51:1","nodeType":"YulExpressionStatement","src":"23481:51:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"23552:9:1","nodeType":"YulIdentifier","src":"23552:9:1"},{"kind":"number","nativeSrc":"23563:2:1","nodeType":"YulLiteral","src":"23563:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"23548:3:1","nodeType":"YulIdentifier","src":"23548:3:1"},"nativeSrc":"23548:18:1","nodeType":"YulFunctionCall","src":"23548:18:1"},{"name":"value1","nativeSrc":"23568:6:1","nodeType":"YulIdentifier","src":"23568:6:1"}],"functionName":{"name":"mstore","nativeSrc":"23541:6:1","nodeType":"YulIdentifier","src":"23541:6:1"},"nativeSrc":"23541:34:1","nodeType":"YulFunctionCall","src":"23541:34:1"},"nativeSrc":"23541:34:1","nodeType":"YulExpressionStatement","src":"23541:34:1"}]},"name":"abi_encode_tuple_t_address_t_uint256__to_t_address_t_uint256__fromStack_reversed","nativeSrc":"23307:274:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"23397:9:1","nodeType":"YulTypedName","src":"23397:9:1","type":""},{"name":"value1","nativeSrc":"23408:6:1","nodeType":"YulTypedName","src":"23408:6:1","type":""},{"name":"value0","nativeSrc":"23416:6:1","nodeType":"YulTypedName","src":"23416:6:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"23427:4:1","nodeType":"YulTypedName","src":"23427:4:1","type":""}],"src":"23307:274:1"},{"body":{"nativeSrc":"23760:226:1","nodeType":"YulBlock","src":"23760:226:1","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"23777:9:1","nodeType":"YulIdentifier","src":"23777:9:1"},{"kind":"number","nativeSrc":"23788:2:1","nodeType":"YulLiteral","src":"23788:2:1","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"23770:6:1","nodeType":"YulIdentifier","src":"23770:6:1"},"nativeSrc":"23770:21:1","nodeType":"YulFunctionCall","src":"23770:21:1"},"nativeSrc":"23770:21:1","nodeType":"YulExpressionStatement","src":"23770:21:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"23811:9:1","nodeType":"YulIdentifier","src":"23811:9:1"},{"kind":"number","nativeSrc":"23822:2:1","nodeType":"YulLiteral","src":"23822:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"23807:3:1","nodeType":"YulIdentifier","src":"23807:3:1"},"nativeSrc":"23807:18:1","nodeType":"YulFunctionCall","src":"23807:18:1"},{"kind":"number","nativeSrc":"23827:2:1","nodeType":"YulLiteral","src":"23827:2:1","type":"","value":"36"}],"functionName":{"name":"mstore","nativeSrc":"23800:6:1","nodeType":"YulIdentifier","src":"23800:6:1"},"nativeSrc":"23800:30:1","nodeType":"YulFunctionCall","src":"23800:30:1"},"nativeSrc":"23800:30:1","nodeType":"YulExpressionStatement","src":"23800:30:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"23850:9:1","nodeType":"YulIdentifier","src":"23850:9:1"},{"kind":"number","nativeSrc":"23861:2:1","nodeType":"YulLiteral","src":"23861:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"23846:3:1","nodeType":"YulIdentifier","src":"23846:3:1"},"nativeSrc":"23846:18:1","nodeType":"YulFunctionCall","src":"23846:18:1"},{"hexValue":"45524332303a20617070726f76652066726f6d20746865207a65726f20616464","kind":"string","nativeSrc":"23866:34:1","nodeType":"YulLiteral","src":"23866:34:1","type":"","value":"ERC20: approve from the zero add"}],"functionName":{"name":"mstore","nativeSrc":"23839:6:1","nodeType":"YulIdentifier","src":"23839:6:1"},"nativeSrc":"23839:62:1","nodeType":"YulFunctionCall","src":"23839:62:1"},"nativeSrc":"23839:62:1","nodeType":"YulExpressionStatement","src":"23839:62:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"23921:9:1","nodeType":"YulIdentifier","src":"23921:9:1"},{"kind":"number","nativeSrc":"23932:2:1","nodeType":"YulLiteral","src":"23932:2:1","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"23917:3:1","nodeType":"YulIdentifier","src":"23917:3:1"},"nativeSrc":"23917:18:1","nodeType":"YulFunctionCall","src":"23917:18:1"},{"hexValue":"72657373","kind":"string","nativeSrc":"23937:6:1","nodeType":"YulLiteral","src":"23937:6:1","type":"","value":"ress"}],"functionName":{"name":"mstore","nativeSrc":"23910:6:1","nodeType":"YulIdentifier","src":"23910:6:1"},"nativeSrc":"23910:34:1","nodeType":"YulFunctionCall","src":"23910:34:1"},"nativeSrc":"23910:34:1","nodeType":"YulExpressionStatement","src":"23910:34:1"},{"nativeSrc":"23953:27:1","nodeType":"YulAssignment","src":"23953:27:1","value":{"arguments":[{"name":"headStart","nativeSrc":"23965:9:1","nodeType":"YulIdentifier","src":"23965:9:1"},{"kind":"number","nativeSrc":"23976:3:1","nodeType":"YulLiteral","src":"23976:3:1","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"23961:3:1","nodeType":"YulIdentifier","src":"23961:3:1"},"nativeSrc":"23961:19:1","nodeType":"YulFunctionCall","src":"23961:19:1"},"variableNames":[{"name":"tail","nativeSrc":"23953:4:1","nodeType":"YulIdentifier","src":"23953:4:1"}]}]},"name":"abi_encode_tuple_t_stringliteral_c953f4879035ed60e766b34720f656aab5c697b141d924c283124ecedb91c208__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"23586:400:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"23737:9:1","nodeType":"YulTypedName","src":"23737:9:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"23751:4:1","nodeType":"YulTypedName","src":"23751:4:1","type":""}],"src":"23586:400:1"},{"body":{"nativeSrc":"24165:224:1","nodeType":"YulBlock","src":"24165:224:1","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"24182:9:1","nodeType":"YulIdentifier","src":"24182:9:1"},{"kind":"number","nativeSrc":"24193:2:1","nodeType":"YulLiteral","src":"24193:2:1","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"24175:6:1","nodeType":"YulIdentifier","src":"24175:6:1"},"nativeSrc":"24175:21:1","nodeType":"YulFunctionCall","src":"24175:21:1"},"nativeSrc":"24175:21:1","nodeType":"YulExpressionStatement","src":"24175:21:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"24216:9:1","nodeType":"YulIdentifier","src":"24216:9:1"},{"kind":"number","nativeSrc":"24227:2:1","nodeType":"YulLiteral","src":"24227:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"24212:3:1","nodeType":"YulIdentifier","src":"24212:3:1"},"nativeSrc":"24212:18:1","nodeType":"YulFunctionCall","src":"24212:18:1"},{"kind":"number","nativeSrc":"24232:2:1","nodeType":"YulLiteral","src":"24232:2:1","type":"","value":"34"}],"functionName":{"name":"mstore","nativeSrc":"24205:6:1","nodeType":"YulIdentifier","src":"24205:6:1"},"nativeSrc":"24205:30:1","nodeType":"YulFunctionCall","src":"24205:30:1"},"nativeSrc":"24205:30:1","nodeType":"YulExpressionStatement","src":"24205:30:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"24255:9:1","nodeType":"YulIdentifier","src":"24255:9:1"},{"kind":"number","nativeSrc":"24266:2:1","nodeType":"YulLiteral","src":"24266:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"24251:3:1","nodeType":"YulIdentifier","src":"24251:3:1"},"nativeSrc":"24251:18:1","nodeType":"YulFunctionCall","src":"24251:18:1"},{"hexValue":"45524332303a20617070726f766520746f20746865207a65726f206164647265","kind":"string","nativeSrc":"24271:34:1","nodeType":"YulLiteral","src":"24271:34:1","type":"","value":"ERC20: approve to the zero addre"}],"functionName":{"name":"mstore","nativeSrc":"24244:6:1","nodeType":"YulIdentifier","src":"24244:6:1"},"nativeSrc":"24244:62:1","nodeType":"YulFunctionCall","src":"24244:62:1"},"nativeSrc":"24244:62:1","nodeType":"YulExpressionStatement","src":"24244:62:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"24326:9:1","nodeType":"YulIdentifier","src":"24326:9:1"},{"kind":"number","nativeSrc":"24337:2:1","nodeType":"YulLiteral","src":"24337:2:1","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"24322:3:1","nodeType":"YulIdentifier","src":"24322:3:1"},"nativeSrc":"24322:18:1","nodeType":"YulFunctionCall","src":"24322:18:1"},{"hexValue":"7373","kind":"string","nativeSrc":"24342:4:1","nodeType":"YulLiteral","src":"24342:4:1","type":"","value":"ss"}],"functionName":{"name":"mstore","nativeSrc":"24315:6:1","nodeType":"YulIdentifier","src":"24315:6:1"},"nativeSrc":"24315:32:1","nodeType":"YulFunctionCall","src":"24315:32:1"},"nativeSrc":"24315:32:1","nodeType":"YulExpressionStatement","src":"24315:32:1"},{"nativeSrc":"24356:27:1","nodeType":"YulAssignment","src":"24356:27:1","value":{"arguments":[{"name":"headStart","nativeSrc":"24368:9:1","nodeType":"YulIdentifier","src":"24368:9:1"},{"kind":"number","nativeSrc":"24379:3:1","nodeType":"YulLiteral","src":"24379:3:1","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"24364:3:1","nodeType":"YulIdentifier","src":"24364:3:1"},"nativeSrc":"24364:19:1","nodeType":"YulFunctionCall","src":"24364:19:1"},"variableNames":[{"name":"tail","nativeSrc":"24356:4:1","nodeType":"YulIdentifier","src":"24356:4:1"}]}]},"name":"abi_encode_tuple_t_stringliteral_24883cc5fe64ace9d0df1893501ecb93c77180f0ff69cca79affb3c316dc8029__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"23991:398:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"24142:9:1","nodeType":"YulTypedName","src":"24142:9:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"24156:4:1","nodeType":"YulTypedName","src":"24156:4:1","type":""}],"src":"23991:398:1"},{"body":{"nativeSrc":"24568:169:1","nodeType":"YulBlock","src":"24568:169:1","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"24585:9:1","nodeType":"YulIdentifier","src":"24585:9:1"},{"kind":"number","nativeSrc":"24596:2:1","nodeType":"YulLiteral","src":"24596:2:1","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"24578:6:1","nodeType":"YulIdentifier","src":"24578:6:1"},"nativeSrc":"24578:21:1","nodeType":"YulFunctionCall","src":"24578:21:1"},"nativeSrc":"24578:21:1","nodeType":"YulExpressionStatement","src":"24578:21:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"24619:9:1","nodeType":"YulIdentifier","src":"24619:9:1"},{"kind":"number","nativeSrc":"24630:2:1","nodeType":"YulLiteral","src":"24630:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"24615:3:1","nodeType":"YulIdentifier","src":"24615:3:1"},"nativeSrc":"24615:18:1","nodeType":"YulFunctionCall","src":"24615:18:1"},{"kind":"number","nativeSrc":"24635:2:1","nodeType":"YulLiteral","src":"24635:2:1","type":"","value":"19"}],"functionName":{"name":"mstore","nativeSrc":"24608:6:1","nodeType":"YulIdentifier","src":"24608:6:1"},"nativeSrc":"24608:30:1","nodeType":"YulFunctionCall","src":"24608:30:1"},"nativeSrc":"24608:30:1","nodeType":"YulExpressionStatement","src":"24608:30:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"24658:9:1","nodeType":"YulIdentifier","src":"24658:9:1"},{"kind":"number","nativeSrc":"24669:2:1","nodeType":"YulLiteral","src":"24669:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"24654:3:1","nodeType":"YulIdentifier","src":"24654:3:1"},"nativeSrc":"24654:18:1","nodeType":"YulFunctionCall","src":"24654:18:1"},{"hexValue":"494e56414c49445f5a45524f5f414d4f554e54","kind":"string","nativeSrc":"24674:21:1","nodeType":"YulLiteral","src":"24674:21:1","type":"","value":"INVALID_ZERO_AMOUNT"}],"functionName":{"name":"mstore","nativeSrc":"24647:6:1","nodeType":"YulIdentifier","src":"24647:6:1"},"nativeSrc":"24647:49:1","nodeType":"YulFunctionCall","src":"24647:49:1"},"nativeSrc":"24647:49:1","nodeType":"YulExpressionStatement","src":"24647:49:1"},{"nativeSrc":"24705:26:1","nodeType":"YulAssignment","src":"24705:26:1","value":{"arguments":[{"name":"headStart","nativeSrc":"24717:9:1","nodeType":"YulIdentifier","src":"24717:9:1"},{"kind":"number","nativeSrc":"24728:2:1","nodeType":"YulLiteral","src":"24728:2:1","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"24713:3:1","nodeType":"YulIdentifier","src":"24713:3:1"},"nativeSrc":"24713:18:1","nodeType":"YulFunctionCall","src":"24713:18:1"},"variableNames":[{"name":"tail","nativeSrc":"24705:4:1","nodeType":"YulIdentifier","src":"24705:4:1"}]}]},"name":"abi_encode_tuple_t_stringliteral_33d2eb294587ef7b32eb48e48695ebfec45a9c8922ec7d1c444cfad1fb208e8d__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"24394:343:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"24545:9:1","nodeType":"YulTypedName","src":"24545:9:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"24559:4:1","nodeType":"YulTypedName","src":"24559:4:1","type":""}],"src":"24394:343:1"},{"body":{"nativeSrc":"24916:171:1","nodeType":"YulBlock","src":"24916:171:1","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"24933:9:1","nodeType":"YulIdentifier","src":"24933:9:1"},{"kind":"number","nativeSrc":"24944:2:1","nodeType":"YulLiteral","src":"24944:2:1","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"24926:6:1","nodeType":"YulIdentifier","src":"24926:6:1"},"nativeSrc":"24926:21:1","nodeType":"YulFunctionCall","src":"24926:21:1"},"nativeSrc":"24926:21:1","nodeType":"YulExpressionStatement","src":"24926:21:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"24967:9:1","nodeType":"YulIdentifier","src":"24967:9:1"},{"kind":"number","nativeSrc":"24978:2:1","nodeType":"YulLiteral","src":"24978:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"24963:3:1","nodeType":"YulIdentifier","src":"24963:3:1"},"nativeSrc":"24963:18:1","nodeType":"YulFunctionCall","src":"24963:18:1"},{"kind":"number","nativeSrc":"24983:2:1","nodeType":"YulLiteral","src":"24983:2:1","type":"","value":"21"}],"functionName":{"name":"mstore","nativeSrc":"24956:6:1","nodeType":"YulIdentifier","src":"24956:6:1"},"nativeSrc":"24956:30:1","nodeType":"YulFunctionCall","src":"24956:30:1"},"nativeSrc":"24956:30:1","nodeType":"YulExpressionStatement","src":"24956:30:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"25006:9:1","nodeType":"YulIdentifier","src":"25006:9:1"},{"kind":"number","nativeSrc":"25017:2:1","nodeType":"YulLiteral","src":"25017:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"25002:3:1","nodeType":"YulIdentifier","src":"25002:3:1"},"nativeSrc":"25002:18:1","nodeType":"YulFunctionCall","src":"25002:18:1"},{"hexValue":"494e53554646494349454e545f434f4f4c444f574e","kind":"string","nativeSrc":"25022:23:1","nodeType":"YulLiteral","src":"25022:23:1","type":"","value":"INSUFFICIENT_COOLDOWN"}],"functionName":{"name":"mstore","nativeSrc":"24995:6:1","nodeType":"YulIdentifier","src":"24995:6:1"},"nativeSrc":"24995:51:1","nodeType":"YulFunctionCall","src":"24995:51:1"},"nativeSrc":"24995:51:1","nodeType":"YulExpressionStatement","src":"24995:51:1"},{"nativeSrc":"25055:26:1","nodeType":"YulAssignment","src":"25055:26:1","value":{"arguments":[{"name":"headStart","nativeSrc":"25067:9:1","nodeType":"YulIdentifier","src":"25067:9:1"},{"kind":"number","nativeSrc":"25078:2:1","nodeType":"YulLiteral","src":"25078:2:1","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"25063:3:1","nodeType":"YulIdentifier","src":"25063:3:1"},"nativeSrc":"25063:18:1","nodeType":"YulFunctionCall","src":"25063:18:1"},"variableNames":[{"name":"tail","nativeSrc":"25055:4:1","nodeType":"YulIdentifier","src":"25055:4:1"}]}]},"name":"abi_encode_tuple_t_stringliteral_66cceaab4b8a6f427cff5482a526862a61c3ef92948b70aceb4a8f720a8f0ead__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"24742:345:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"24893:9:1","nodeType":"YulTypedName","src":"24893:9:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"24907:4:1","nodeType":"YulTypedName","src":"24907:4:1","type":""}],"src":"24742:345:1"},{"body":{"nativeSrc":"25266:173:1","nodeType":"YulBlock","src":"25266:173:1","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"25283:9:1","nodeType":"YulIdentifier","src":"25283:9:1"},{"kind":"number","nativeSrc":"25294:2:1","nodeType":"YulLiteral","src":"25294:2:1","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"25276:6:1","nodeType":"YulIdentifier","src":"25276:6:1"},"nativeSrc":"25276:21:1","nodeType":"YulFunctionCall","src":"25276:21:1"},"nativeSrc":"25276:21:1","nodeType":"YulExpressionStatement","src":"25276:21:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"25317:9:1","nodeType":"YulIdentifier","src":"25317:9:1"},{"kind":"number","nativeSrc":"25328:2:1","nodeType":"YulLiteral","src":"25328:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"25313:3:1","nodeType":"YulIdentifier","src":"25313:3:1"},"nativeSrc":"25313:18:1","nodeType":"YulFunctionCall","src":"25313:18:1"},{"kind":"number","nativeSrc":"25333:2:1","nodeType":"YulLiteral","src":"25333:2:1","type":"","value":"23"}],"functionName":{"name":"mstore","nativeSrc":"25306:6:1","nodeType":"YulIdentifier","src":"25306:6:1"},"nativeSrc":"25306:30:1","nodeType":"YulFunctionCall","src":"25306:30:1"},"nativeSrc":"25306:30:1","nodeType":"YulExpressionStatement","src":"25306:30:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"25356:9:1","nodeType":"YulIdentifier","src":"25356:9:1"},{"kind":"number","nativeSrc":"25367:2:1","nodeType":"YulLiteral","src":"25367:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"25352:3:1","nodeType":"YulIdentifier","src":"25352:3:1"},"nativeSrc":"25352:18:1","nodeType":"YulFunctionCall","src":"25352:18:1"},{"hexValue":"554e5354414b455f57494e444f575f46494e4953484544","kind":"string","nativeSrc":"25372:25:1","nodeType":"YulLiteral","src":"25372:25:1","type":"","value":"UNSTAKE_WINDOW_FINISHED"}],"functionName":{"name":"mstore","nativeSrc":"25345:6:1","nodeType":"YulIdentifier","src":"25345:6:1"},"nativeSrc":"25345:53:1","nodeType":"YulFunctionCall","src":"25345:53:1"},"nativeSrc":"25345:53:1","nodeType":"YulExpressionStatement","src":"25345:53:1"},{"nativeSrc":"25407:26:1","nodeType":"YulAssignment","src":"25407:26:1","value":{"arguments":[{"name":"headStart","nativeSrc":"25419:9:1","nodeType":"YulIdentifier","src":"25419:9:1"},{"kind":"number","nativeSrc":"25430:2:1","nodeType":"YulLiteral","src":"25430:2:1","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"25415:3:1","nodeType":"YulIdentifier","src":"25415:3:1"},"nativeSrc":"25415:18:1","nodeType":"YulFunctionCall","src":"25415:18:1"},"variableNames":[{"name":"tail","nativeSrc":"25407:4:1","nodeType":"YulIdentifier","src":"25407:4:1"}]}]},"name":"abi_encode_tuple_t_stringliteral_c6959acf2335419e4a75195e2fb1c276a96baa5b7fab6be19b14b9420a4bd962__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"25092:347:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"25243:9:1","nodeType":"YulTypedName","src":"25243:9:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"25257:4:1","nodeType":"YulTypedName","src":"25257:4:1","type":""}],"src":"25092:347:1"},{"body":{"nativeSrc":"25618:177:1","nodeType":"YulBlock","src":"25618:177:1","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"25635:9:1","nodeType":"YulIdentifier","src":"25635:9:1"},{"kind":"number","nativeSrc":"25646:2:1","nodeType":"YulLiteral","src":"25646:2:1","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"25628:6:1","nodeType":"YulIdentifier","src":"25628:6:1"},"nativeSrc":"25628:21:1","nodeType":"YulFunctionCall","src":"25628:21:1"},"nativeSrc":"25628:21:1","nodeType":"YulExpressionStatement","src":"25628:21:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"25669:9:1","nodeType":"YulIdentifier","src":"25669:9:1"},{"kind":"number","nativeSrc":"25680:2:1","nodeType":"YulLiteral","src":"25680:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"25665:3:1","nodeType":"YulIdentifier","src":"25665:3:1"},"nativeSrc":"25665:18:1","nodeType":"YulFunctionCall","src":"25665:18:1"},{"kind":"number","nativeSrc":"25685:2:1","nodeType":"YulLiteral","src":"25685:2:1","type":"","value":"27"}],"functionName":{"name":"mstore","nativeSrc":"25658:6:1","nodeType":"YulIdentifier","src":"25658:6:1"},"nativeSrc":"25658:30:1","nodeType":"YulFunctionCall","src":"25658:30:1"},"nativeSrc":"25658:30:1","nodeType":"YulExpressionStatement","src":"25658:30:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"25708:9:1","nodeType":"YulIdentifier","src":"25708:9:1"},{"kind":"number","nativeSrc":"25719:2:1","nodeType":"YulLiteral","src":"25719:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"25704:3:1","nodeType":"YulIdentifier","src":"25704:3:1"},"nativeSrc":"25704:18:1","nodeType":"YulFunctionCall","src":"25704:18:1"},{"hexValue":"494e56414c49445f5a45524f5f4d41585f52454445454d41424c45","kind":"string","nativeSrc":"25724:29:1","nodeType":"YulLiteral","src":"25724:29:1","type":"","value":"INVALID_ZERO_MAX_REDEEMABLE"}],"functionName":{"name":"mstore","nativeSrc":"25697:6:1","nodeType":"YulIdentifier","src":"25697:6:1"},"nativeSrc":"25697:57:1","nodeType":"YulFunctionCall","src":"25697:57:1"},"nativeSrc":"25697:57:1","nodeType":"YulExpressionStatement","src":"25697:57:1"},{"nativeSrc":"25763:26:1","nodeType":"YulAssignment","src":"25763:26:1","value":{"arguments":[{"name":"headStart","nativeSrc":"25775:9:1","nodeType":"YulIdentifier","src":"25775:9:1"},{"kind":"number","nativeSrc":"25786:2:1","nodeType":"YulLiteral","src":"25786:2:1","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"25771:3:1","nodeType":"YulIdentifier","src":"25771:3:1"},"nativeSrc":"25771:18:1","nodeType":"YulFunctionCall","src":"25771:18:1"},"variableNames":[{"name":"tail","nativeSrc":"25763:4:1","nodeType":"YulIdentifier","src":"25763:4:1"}]}]},"name":"abi_encode_tuple_t_stringliteral_fa2c368672f35856ca139c6dfba7cf36845bc24e7a2795ed29d2eba4e8313209__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"25444:351:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"25595:9:1","nodeType":"YulTypedName","src":"25595:9:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"25609:4:1","nodeType":"YulTypedName","src":"25609:4:1","type":""}],"src":"25444:351:1"},{"body":{"nativeSrc":"25849:149:1","nodeType":"YulBlock","src":"25849:149:1","statements":[{"nativeSrc":"25859:69:1","nodeType":"YulAssignment","src":"25859:69:1","value":{"arguments":[{"arguments":[{"name":"x","nativeSrc":"25875:1:1","nodeType":"YulIdentifier","src":"25875:1:1"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"25886:3:1","nodeType":"YulLiteral","src":"25886:3:1","type":"","value":"216"},{"kind":"number","nativeSrc":"25891:1:1","nodeType":"YulLiteral","src":"25891:1:1","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"25882:3:1","nodeType":"YulIdentifier","src":"25882:3:1"},"nativeSrc":"25882:11:1","nodeType":"YulFunctionCall","src":"25882:11:1"},{"kind":"number","nativeSrc":"25895:1:1","nodeType":"YulLiteral","src":"25895:1:1","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"25878:3:1","nodeType":"YulIdentifier","src":"25878:3:1"},"nativeSrc":"25878:19:1","nodeType":"YulFunctionCall","src":"25878:19:1"}],"functionName":{"name":"and","nativeSrc":"25871:3:1","nodeType":"YulIdentifier","src":"25871:3:1"},"nativeSrc":"25871:27:1","nodeType":"YulFunctionCall","src":"25871:27:1"},{"arguments":[{"name":"y","nativeSrc":"25904:1:1","nodeType":"YulIdentifier","src":"25904:1:1"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"25915:3:1","nodeType":"YulLiteral","src":"25915:3:1","type":"","value":"216"},{"kind":"number","nativeSrc":"25920:1:1","nodeType":"YulLiteral","src":"25920:1:1","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"25911:3:1","nodeType":"YulIdentifier","src":"25911:3:1"},"nativeSrc":"25911:11:1","nodeType":"YulFunctionCall","src":"25911:11:1"},{"kind":"number","nativeSrc":"25924:1:1","nodeType":"YulLiteral","src":"25924:1:1","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"25907:3:1","nodeType":"YulIdentifier","src":"25907:3:1"},"nativeSrc":"25907:19:1","nodeType":"YulFunctionCall","src":"25907:19:1"}],"functionName":{"name":"and","nativeSrc":"25900:3:1","nodeType":"YulIdentifier","src":"25900:3:1"},"nativeSrc":"25900:27:1","nodeType":"YulFunctionCall","src":"25900:27:1"}],"functionName":{"name":"sub","nativeSrc":"25867:3:1","nodeType":"YulIdentifier","src":"25867:3:1"},"nativeSrc":"25867:61:1","nodeType":"YulFunctionCall","src":"25867:61:1"},"variableNames":[{"name":"diff","nativeSrc":"25859:4:1","nodeType":"YulIdentifier","src":"25859:4:1"}]},{"body":{"nativeSrc":"25970:22:1","nodeType":"YulBlock","src":"25970:22:1","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"25972:16:1","nodeType":"YulIdentifier","src":"25972:16:1"},"nativeSrc":"25972:18:1","nodeType":"YulFunctionCall","src":"25972:18:1"},"nativeSrc":"25972:18:1","nodeType":"YulExpressionStatement","src":"25972:18:1"}]},"condition":{"arguments":[{"name":"diff","nativeSrc":"25943:4:1","nodeType":"YulIdentifier","src":"25943:4:1"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"25957:3:1","nodeType":"YulLiteral","src":"25957:3:1","type":"","value":"216"},{"kind":"number","nativeSrc":"25962:1:1","nodeType":"YulLiteral","src":"25962:1:1","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"25953:3:1","nodeType":"YulIdentifier","src":"25953:3:1"},"nativeSrc":"25953:11:1","nodeType":"YulFunctionCall","src":"25953:11:1"},{"kind":"number","nativeSrc":"25966:1:1","nodeType":"YulLiteral","src":"25966:1:1","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"25949:3:1","nodeType":"YulIdentifier","src":"25949:3:1"},"nativeSrc":"25949:19:1","nodeType":"YulFunctionCall","src":"25949:19:1"}],"functionName":{"name":"gt","nativeSrc":"25940:2:1","nodeType":"YulIdentifier","src":"25940:2:1"},"nativeSrc":"25940:29:1","nodeType":"YulFunctionCall","src":"25940:29:1"},"nativeSrc":"25937:55:1","nodeType":"YulIf","src":"25937:55:1"}]},"name":"checked_sub_t_uint216","nativeSrc":"25800:198:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"x","nativeSrc":"25831:1:1","nodeType":"YulTypedName","src":"25831:1:1","type":""},{"name":"y","nativeSrc":"25834:1:1","nodeType":"YulTypedName","src":"25834:1:1","type":""}],"returnVariables":[{"name":"diff","nativeSrc":"25840:4:1","nodeType":"YulTypedName","src":"25840:4:1","type":""}],"src":"25800:198:1"},{"body":{"nativeSrc":"26132:119:1","nodeType":"YulBlock","src":"26132:119:1","statements":[{"nativeSrc":"26142:26:1","nodeType":"YulAssignment","src":"26142:26:1","value":{"arguments":[{"name":"headStart","nativeSrc":"26154:9:1","nodeType":"YulIdentifier","src":"26154:9:1"},{"kind":"number","nativeSrc":"26165:2:1","nodeType":"YulLiteral","src":"26165:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"26150:3:1","nodeType":"YulIdentifier","src":"26150:3:1"},"nativeSrc":"26150:18:1","nodeType":"YulFunctionCall","src":"26150:18:1"},"variableNames":[{"name":"tail","nativeSrc":"26142:4:1","nodeType":"YulIdentifier","src":"26142:4:1"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"26184:9:1","nodeType":"YulIdentifier","src":"26184:9:1"},{"name":"value0","nativeSrc":"26195:6:1","nodeType":"YulIdentifier","src":"26195:6:1"}],"functionName":{"name":"mstore","nativeSrc":"26177:6:1","nodeType":"YulIdentifier","src":"26177:6:1"},"nativeSrc":"26177:25:1","nodeType":"YulFunctionCall","src":"26177:25:1"},"nativeSrc":"26177:25:1","nodeType":"YulExpressionStatement","src":"26177:25:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"26222:9:1","nodeType":"YulIdentifier","src":"26222:9:1"},{"kind":"number","nativeSrc":"26233:2:1","nodeType":"YulLiteral","src":"26233:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"26218:3:1","nodeType":"YulIdentifier","src":"26218:3:1"},"nativeSrc":"26218:18:1","nodeType":"YulFunctionCall","src":"26218:18:1"},{"name":"value1","nativeSrc":"26238:6:1","nodeType":"YulIdentifier","src":"26238:6:1"}],"functionName":{"name":"mstore","nativeSrc":"26211:6:1","nodeType":"YulIdentifier","src":"26211:6:1"},"nativeSrc":"26211:34:1","nodeType":"YulFunctionCall","src":"26211:34:1"},"nativeSrc":"26211:34:1","nodeType":"YulExpressionStatement","src":"26211:34:1"}]},"name":"abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed","nativeSrc":"26003:248:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"26093:9:1","nodeType":"YulTypedName","src":"26093:9:1","type":""},{"name":"value1","nativeSrc":"26104:6:1","nodeType":"YulTypedName","src":"26104:6:1","type":""},{"name":"value0","nativeSrc":"26112:6:1","nodeType":"YulTypedName","src":"26112:6:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"26123:4:1","nodeType":"YulTypedName","src":"26123:4:1","type":""}],"src":"26003:248:1"},{"body":{"nativeSrc":"26430:179:1","nodeType":"YulBlock","src":"26430:179:1","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"26447:9:1","nodeType":"YulIdentifier","src":"26447:9:1"},{"kind":"number","nativeSrc":"26458:2:1","nodeType":"YulLiteral","src":"26458:2:1","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"26440:6:1","nodeType":"YulIdentifier","src":"26440:6:1"},"nativeSrc":"26440:21:1","nodeType":"YulFunctionCall","src":"26440:21:1"},"nativeSrc":"26440:21:1","nodeType":"YulExpressionStatement","src":"26440:21:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"26481:9:1","nodeType":"YulIdentifier","src":"26481:9:1"},{"kind":"number","nativeSrc":"26492:2:1","nodeType":"YulLiteral","src":"26492:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"26477:3:1","nodeType":"YulIdentifier","src":"26477:3:1"},"nativeSrc":"26477:18:1","nodeType":"YulFunctionCall","src":"26477:18:1"},{"kind":"number","nativeSrc":"26497:2:1","nodeType":"YulLiteral","src":"26497:2:1","type":"","value":"29"}],"functionName":{"name":"mstore","nativeSrc":"26470:6:1","nodeType":"YulIdentifier","src":"26470:6:1"},"nativeSrc":"26470:30:1","nodeType":"YulFunctionCall","src":"26470:30:1"},"nativeSrc":"26470:30:1","nodeType":"YulExpressionStatement","src":"26470:30:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"26520:9:1","nodeType":"YulIdentifier","src":"26520:9:1"},{"kind":"number","nativeSrc":"26531:2:1","nodeType":"YulLiteral","src":"26531:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"26516:3:1","nodeType":"YulIdentifier","src":"26516:3:1"},"nativeSrc":"26516:18:1","nodeType":"YulFunctionCall","src":"26516:18:1"},{"hexValue":"45524332303a20696e73756666696369656e7420616c6c6f77616e6365","kind":"string","nativeSrc":"26536:31:1","nodeType":"YulLiteral","src":"26536:31:1","type":"","value":"ERC20: insufficient allowance"}],"functionName":{"name":"mstore","nativeSrc":"26509:6:1","nodeType":"YulIdentifier","src":"26509:6:1"},"nativeSrc":"26509:59:1","nodeType":"YulFunctionCall","src":"26509:59:1"},"nativeSrc":"26509:59:1","nodeType":"YulExpressionStatement","src":"26509:59:1"},{"nativeSrc":"26577:26:1","nodeType":"YulAssignment","src":"26577:26:1","value":{"arguments":[{"name":"headStart","nativeSrc":"26589:9:1","nodeType":"YulIdentifier","src":"26589:9:1"},{"kind":"number","nativeSrc":"26600:2:1","nodeType":"YulLiteral","src":"26600:2:1","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"26585:3:1","nodeType":"YulIdentifier","src":"26585:3:1"},"nativeSrc":"26585:18:1","nodeType":"YulFunctionCall","src":"26585:18:1"},"variableNames":[{"name":"tail","nativeSrc":"26577:4:1","nodeType":"YulIdentifier","src":"26577:4:1"}]}]},"name":"abi_encode_tuple_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"26256:353:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"26407:9:1","nodeType":"YulTypedName","src":"26407:9:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"26421:4:1","nodeType":"YulTypedName","src":"26421:4:1","type":""}],"src":"26256:353:1"},{"body":{"nativeSrc":"26788:177:1","nodeType":"YulBlock","src":"26788:177:1","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"26805:9:1","nodeType":"YulIdentifier","src":"26805:9:1"},{"kind":"number","nativeSrc":"26816:2:1","nodeType":"YulLiteral","src":"26816:2:1","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"26798:6:1","nodeType":"YulIdentifier","src":"26798:6:1"},"nativeSrc":"26798:21:1","nodeType":"YulFunctionCall","src":"26798:21:1"},"nativeSrc":"26798:21:1","nodeType":"YulExpressionStatement","src":"26798:21:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"26839:9:1","nodeType":"YulIdentifier","src":"26839:9:1"},{"kind":"number","nativeSrc":"26850:2:1","nodeType":"YulLiteral","src":"26850:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"26835:3:1","nodeType":"YulIdentifier","src":"26835:3:1"},"nativeSrc":"26835:18:1","nodeType":"YulFunctionCall","src":"26835:18:1"},{"kind":"number","nativeSrc":"26855:2:1","nodeType":"YulLiteral","src":"26855:2:1","type":"","value":"27"}],"functionName":{"name":"mstore","nativeSrc":"26828:6:1","nodeType":"YulIdentifier","src":"26828:6:1"},"nativeSrc":"26828:30:1","nodeType":"YulFunctionCall","src":"26828:30:1"},"nativeSrc":"26828:30:1","nodeType":"YulExpressionStatement","src":"26828:30:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"26878:9:1","nodeType":"YulIdentifier","src":"26878:9:1"},{"kind":"number","nativeSrc":"26889:2:1","nodeType":"YulLiteral","src":"26889:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"26874:3:1","nodeType":"YulIdentifier","src":"26874:3:1"},"nativeSrc":"26874:18:1","nodeType":"YulFunctionCall","src":"26874:18:1"},{"hexValue":"494e56414c49445f42414c414e43455f4f4e5f434f4f4c444f574e","kind":"string","nativeSrc":"26894:29:1","nodeType":"YulLiteral","src":"26894:29:1","type":"","value":"INVALID_BALANCE_ON_COOLDOWN"}],"functionName":{"name":"mstore","nativeSrc":"26867:6:1","nodeType":"YulIdentifier","src":"26867:6:1"},"nativeSrc":"26867:57:1","nodeType":"YulFunctionCall","src":"26867:57:1"},"nativeSrc":"26867:57:1","nodeType":"YulExpressionStatement","src":"26867:57:1"},{"nativeSrc":"26933:26:1","nodeType":"YulAssignment","src":"26933:26:1","value":{"arguments":[{"name":"headStart","nativeSrc":"26945:9:1","nodeType":"YulIdentifier","src":"26945:9:1"},{"kind":"number","nativeSrc":"26956:2:1","nodeType":"YulLiteral","src":"26956:2:1","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"26941:3:1","nodeType":"YulIdentifier","src":"26941:3:1"},"nativeSrc":"26941:18:1","nodeType":"YulFunctionCall","src":"26941:18:1"},"variableNames":[{"name":"tail","nativeSrc":"26933:4:1","nodeType":"YulIdentifier","src":"26933:4:1"}]}]},"name":"abi_encode_tuple_t_stringliteral_e5f9ee9777b2bbd505a43328a4cc6b61e9df46610a556d5402b9bc072df973d7__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"26614:351:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"26765:9:1","nodeType":"YulTypedName","src":"26765:9:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"26779:4:1","nodeType":"YulTypedName","src":"26779:4:1","type":""}],"src":"26614:351:1"},{"body":{"nativeSrc":"27127:214:1","nodeType":"YulBlock","src":"27127:214:1","statements":[{"nativeSrc":"27137:26:1","nodeType":"YulAssignment","src":"27137:26:1","value":{"arguments":[{"name":"headStart","nativeSrc":"27149:9:1","nodeType":"YulIdentifier","src":"27149:9:1"},{"kind":"number","nativeSrc":"27160:2:1","nodeType":"YulLiteral","src":"27160:2:1","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"27145:3:1","nodeType":"YulIdentifier","src":"27145:3:1"},"nativeSrc":"27145:18:1","nodeType":"YulFunctionCall","src":"27145:18:1"},"variableNames":[{"name":"tail","nativeSrc":"27137:4:1","nodeType":"YulIdentifier","src":"27137:4:1"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"27179:9:1","nodeType":"YulIdentifier","src":"27179:9:1"},{"arguments":[{"name":"value0","nativeSrc":"27194:6:1","nodeType":"YulIdentifier","src":"27194:6:1"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"27210:3:1","nodeType":"YulLiteral","src":"27210:3:1","type":"","value":"160"},{"kind":"number","nativeSrc":"27215:1:1","nodeType":"YulLiteral","src":"27215:1:1","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"27206:3:1","nodeType":"YulIdentifier","src":"27206:3:1"},"nativeSrc":"27206:11:1","nodeType":"YulFunctionCall","src":"27206:11:1"},{"kind":"number","nativeSrc":"27219:1:1","nodeType":"YulLiteral","src":"27219:1:1","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"27202:3:1","nodeType":"YulIdentifier","src":"27202:3:1"},"nativeSrc":"27202:19:1","nodeType":"YulFunctionCall","src":"27202:19:1"}],"functionName":{"name":"and","nativeSrc":"27190:3:1","nodeType":"YulIdentifier","src":"27190:3:1"},"nativeSrc":"27190:32:1","nodeType":"YulFunctionCall","src":"27190:32:1"}],"functionName":{"name":"mstore","nativeSrc":"27172:6:1","nodeType":"YulIdentifier","src":"27172:6:1"},"nativeSrc":"27172:51:1","nodeType":"YulFunctionCall","src":"27172:51:1"},"nativeSrc":"27172:51:1","nodeType":"YulExpressionStatement","src":"27172:51:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"27243:9:1","nodeType":"YulIdentifier","src":"27243:9:1"},{"kind":"number","nativeSrc":"27254:2:1","nodeType":"YulLiteral","src":"27254:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"27239:3:1","nodeType":"YulIdentifier","src":"27239:3:1"},"nativeSrc":"27239:18:1","nodeType":"YulFunctionCall","src":"27239:18:1"},{"arguments":[{"name":"value1","nativeSrc":"27263:6:1","nodeType":"YulIdentifier","src":"27263:6:1"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"27279:3:1","nodeType":"YulLiteral","src":"27279:3:1","type":"","value":"160"},{"kind":"number","nativeSrc":"27284:1:1","nodeType":"YulLiteral","src":"27284:1:1","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"27275:3:1","nodeType":"YulIdentifier","src":"27275:3:1"},"nativeSrc":"27275:11:1","nodeType":"YulFunctionCall","src":"27275:11:1"},{"kind":"number","nativeSrc":"27288:1:1","nodeType":"YulLiteral","src":"27288:1:1","type":"","value":"1"}],"functionName":{"name":"sub","nativeSrc":"27271:3:1","nodeType":"YulIdentifier","src":"27271:3:1"},"nativeSrc":"27271:19:1","nodeType":"YulFunctionCall","src":"27271:19:1"}],"functionName":{"name":"and","nativeSrc":"27259:3:1","nodeType":"YulIdentifier","src":"27259:3:1"},"nativeSrc":"27259:32:1","nodeType":"YulFunctionCall","src":"27259:32:1"}],"functionName":{"name":"mstore","nativeSrc":"27232:6:1","nodeType":"YulIdentifier","src":"27232:6:1"},"nativeSrc":"27232:60:1","nodeType":"YulFunctionCall","src":"27232:60:1"},"nativeSrc":"27232:60:1","nodeType":"YulExpressionStatement","src":"27232:60:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"27312:9:1","nodeType":"YulIdentifier","src":"27312:9:1"},{"kind":"number","nativeSrc":"27323:2:1","nodeType":"YulLiteral","src":"27323:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"27308:3:1","nodeType":"YulIdentifier","src":"27308:3:1"},"nativeSrc":"27308:18:1","nodeType":"YulFunctionCall","src":"27308:18:1"},{"name":"value2","nativeSrc":"27328:6:1","nodeType":"YulIdentifier","src":"27328:6:1"}],"functionName":{"name":"mstore","nativeSrc":"27301:6:1","nodeType":"YulIdentifier","src":"27301:6:1"},"nativeSrc":"27301:34:1","nodeType":"YulFunctionCall","src":"27301:34:1"},"nativeSrc":"27301:34:1","nodeType":"YulExpressionStatement","src":"27301:34:1"}]},"name":"abi_encode_tuple_t_address_t_address_t_uint256__to_t_address_t_address_t_uint256__fromStack_reversed","nativeSrc":"26970:371:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"27080:9:1","nodeType":"YulTypedName","src":"27080:9:1","type":""},{"name":"value2","nativeSrc":"27091:6:1","nodeType":"YulTypedName","src":"27091:6:1","type":""},{"name":"value1","nativeSrc":"27099:6:1","nodeType":"YulTypedName","src":"27099:6:1","type":""},{"name":"value0","nativeSrc":"27107:6:1","nodeType":"YulTypedName","src":"27107:6:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"27118:4:1","nodeType":"YulTypedName","src":"27118:4:1","type":""}],"src":"26970:371:1"},{"body":{"nativeSrc":"27520:167:1","nodeType":"YulBlock","src":"27520:167:1","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"27537:9:1","nodeType":"YulIdentifier","src":"27537:9:1"},{"kind":"number","nativeSrc":"27548:2:1","nodeType":"YulLiteral","src":"27548:2:1","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"27530:6:1","nodeType":"YulIdentifier","src":"27530:6:1"},"nativeSrc":"27530:21:1","nodeType":"YulFunctionCall","src":"27530:21:1"},"nativeSrc":"27530:21:1","nodeType":"YulExpressionStatement","src":"27530:21:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"27571:9:1","nodeType":"YulIdentifier","src":"27571:9:1"},{"kind":"number","nativeSrc":"27582:2:1","nodeType":"YulLiteral","src":"27582:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"27567:3:1","nodeType":"YulIdentifier","src":"27567:3:1"},"nativeSrc":"27567:18:1","nodeType":"YulFunctionCall","src":"27567:18:1"},{"kind":"number","nativeSrc":"27587:2:1","nodeType":"YulLiteral","src":"27587:2:1","type":"","value":"17"}],"functionName":{"name":"mstore","nativeSrc":"27560:6:1","nodeType":"YulIdentifier","src":"27560:6:1"},"nativeSrc":"27560:30:1","nodeType":"YulFunctionCall","src":"27560:30:1"},"nativeSrc":"27560:30:1","nodeType":"YulExpressionStatement","src":"27560:30:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"27610:9:1","nodeType":"YulIdentifier","src":"27610:9:1"},{"kind":"number","nativeSrc":"27621:2:1","nodeType":"YulLiteral","src":"27621:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"27606:3:1","nodeType":"YulIdentifier","src":"27606:3:1"},"nativeSrc":"27606:18:1","nodeType":"YulFunctionCall","src":"27606:18:1"},{"hexValue":"494e56414c49445f44454c454741544545","kind":"string","nativeSrc":"27626:19:1","nodeType":"YulLiteral","src":"27626:19:1","type":"","value":"INVALID_DELEGATEE"}],"functionName":{"name":"mstore","nativeSrc":"27599:6:1","nodeType":"YulIdentifier","src":"27599:6:1"},"nativeSrc":"27599:47:1","nodeType":"YulFunctionCall","src":"27599:47:1"},"nativeSrc":"27599:47:1","nodeType":"YulExpressionStatement","src":"27599:47:1"},{"nativeSrc":"27655:26:1","nodeType":"YulAssignment","src":"27655:26:1","value":{"arguments":[{"name":"headStart","nativeSrc":"27667:9:1","nodeType":"YulIdentifier","src":"27667:9:1"},{"kind":"number","nativeSrc":"27678:2:1","nodeType":"YulLiteral","src":"27678:2:1","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"27663:3:1","nodeType":"YulIdentifier","src":"27663:3:1"},"nativeSrc":"27663:18:1","nodeType":"YulFunctionCall","src":"27663:18:1"},"variableNames":[{"name":"tail","nativeSrc":"27655:4:1","nodeType":"YulIdentifier","src":"27655:4:1"}]}]},"name":"abi_encode_tuple_t_stringliteral_f448a4555410856eaebeffbdb1aef2dfca19f9de0904eb1029e0bbcd0330450f__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"27346:341:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"27497:9:1","nodeType":"YulTypedName","src":"27497:9:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"27511:4:1","nodeType":"YulTypedName","src":"27511:4:1","type":""}],"src":"27346:341:1"},{"body":{"nativeSrc":"27748:186:1","nodeType":"YulBlock","src":"27748:186:1","statements":[{"body":{"nativeSrc":"27790:111:1","nodeType":"YulBlock","src":"27790:111:1","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"27811:1:1","nodeType":"YulLiteral","src":"27811:1:1","type":"","value":"0"},{"arguments":[{"kind":"number","nativeSrc":"27818:3:1","nodeType":"YulLiteral","src":"27818:3:1","type":"","value":"224"},{"kind":"number","nativeSrc":"27823:10:1","nodeType":"YulLiteral","src":"27823:10:1","type":"","value":"0x4e487b71"}],"functionName":{"name":"shl","nativeSrc":"27814:3:1","nodeType":"YulIdentifier","src":"27814:3:1"},"nativeSrc":"27814:20:1","nodeType":"YulFunctionCall","src":"27814:20:1"}],"functionName":{"name":"mstore","nativeSrc":"27804:6:1","nodeType":"YulIdentifier","src":"27804:6:1"},"nativeSrc":"27804:31:1","nodeType":"YulFunctionCall","src":"27804:31:1"},"nativeSrc":"27804:31:1","nodeType":"YulExpressionStatement","src":"27804:31:1"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"27855:1:1","nodeType":"YulLiteral","src":"27855:1:1","type":"","value":"4"},{"kind":"number","nativeSrc":"27858:4:1","nodeType":"YulLiteral","src":"27858:4:1","type":"","value":"0x21"}],"functionName":{"name":"mstore","nativeSrc":"27848:6:1","nodeType":"YulIdentifier","src":"27848:6:1"},"nativeSrc":"27848:15:1","nodeType":"YulFunctionCall","src":"27848:15:1"},"nativeSrc":"27848:15:1","nodeType":"YulExpressionStatement","src":"27848:15:1"},{"expression":{"arguments":[{"kind":"number","nativeSrc":"27883:1:1","nodeType":"YulLiteral","src":"27883:1:1","type":"","value":"0"},{"kind":"number","nativeSrc":"27886:4:1","nodeType":"YulLiteral","src":"27886:4:1","type":"","value":"0x24"}],"functionName":{"name":"revert","nativeSrc":"27876:6:1","nodeType":"YulIdentifier","src":"27876:6:1"},"nativeSrc":"27876:15:1","nodeType":"YulFunctionCall","src":"27876:15:1"},"nativeSrc":"27876:15:1","nodeType":"YulExpressionStatement","src":"27876:15:1"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"27771:5:1","nodeType":"YulIdentifier","src":"27771:5:1"},{"kind":"number","nativeSrc":"27778:1:1","nodeType":"YulLiteral","src":"27778:1:1","type":"","value":"2"}],"functionName":{"name":"lt","nativeSrc":"27768:2:1","nodeType":"YulIdentifier","src":"27768:2:1"},"nativeSrc":"27768:12:1","nodeType":"YulFunctionCall","src":"27768:12:1"}],"functionName":{"name":"iszero","nativeSrc":"27761:6:1","nodeType":"YulIdentifier","src":"27761:6:1"},"nativeSrc":"27761:20:1","nodeType":"YulFunctionCall","src":"27761:20:1"},"nativeSrc":"27758:143:1","nodeType":"YulIf","src":"27758:143:1"},{"expression":{"arguments":[{"name":"pos","nativeSrc":"27917:3:1","nodeType":"YulIdentifier","src":"27917:3:1"},{"name":"value","nativeSrc":"27922:5:1","nodeType":"YulIdentifier","src":"27922:5:1"}],"functionName":{"name":"mstore","nativeSrc":"27910:6:1","nodeType":"YulIdentifier","src":"27910:6:1"},"nativeSrc":"27910:18:1","nodeType":"YulFunctionCall","src":"27910:18:1"},"nativeSrc":"27910:18:1","nodeType":"YulExpressionStatement","src":"27910:18:1"}]},"name":"abi_encode_enum_DelegationType","nativeSrc":"27692:242:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"value","nativeSrc":"27732:5:1","nodeType":"YulTypedName","src":"27732:5:1","type":""},{"name":"pos","nativeSrc":"27739:3:1","nodeType":"YulTypedName","src":"27739:3:1","type":""}],"src":"27692:242:1"},{"body":{"nativeSrc":"28057:100:1","nodeType":"YulBlock","src":"28057:100:1","statements":[{"nativeSrc":"28067:26:1","nodeType":"YulAssignment","src":"28067:26:1","value":{"arguments":[{"name":"headStart","nativeSrc":"28079:9:1","nodeType":"YulIdentifier","src":"28079:9:1"},{"kind":"number","nativeSrc":"28090:2:1","nodeType":"YulLiteral","src":"28090:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"28075:3:1","nodeType":"YulIdentifier","src":"28075:3:1"},"nativeSrc":"28075:18:1","nodeType":"YulFunctionCall","src":"28075:18:1"},"variableNames":[{"name":"tail","nativeSrc":"28067:4:1","nodeType":"YulIdentifier","src":"28067:4:1"}]},{"expression":{"arguments":[{"name":"value0","nativeSrc":"28133:6:1","nodeType":"YulIdentifier","src":"28133:6:1"},{"name":"headStart","nativeSrc":"28141:9:1","nodeType":"YulIdentifier","src":"28141:9:1"}],"functionName":{"name":"abi_encode_enum_DelegationType","nativeSrc":"28102:30:1","nodeType":"YulIdentifier","src":"28102:30:1"},"nativeSrc":"28102:49:1","nodeType":"YulFunctionCall","src":"28102:49:1"},"nativeSrc":"28102:49:1","nodeType":"YulExpressionStatement","src":"28102:49:1"}]},"name":"abi_encode_tuple_t_enum$_DelegationType_$1088__to_t_uint8__fromStack_reversed","nativeSrc":"27939:218:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"28026:9:1","nodeType":"YulTypedName","src":"28026:9:1","type":""},{"name":"value0","nativeSrc":"28037:6:1","nodeType":"YulTypedName","src":"28037:6:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"28048:4:1","nodeType":"YulTypedName","src":"28048:4:1","type":""}],"src":"27939:218:1"},{"body":{"nativeSrc":"28336:177:1","nodeType":"YulBlock","src":"28336:177:1","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"28353:9:1","nodeType":"YulIdentifier","src":"28353:9:1"},{"kind":"number","nativeSrc":"28364:2:1","nodeType":"YulLiteral","src":"28364:2:1","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"28346:6:1","nodeType":"YulIdentifier","src":"28346:6:1"},"nativeSrc":"28346:21:1","nodeType":"YulFunctionCall","src":"28346:21:1"},"nativeSrc":"28346:21:1","nodeType":"YulExpressionStatement","src":"28346:21:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"28387:9:1","nodeType":"YulIdentifier","src":"28387:9:1"},{"kind":"number","nativeSrc":"28398:2:1","nodeType":"YulLiteral","src":"28398:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"28383:3:1","nodeType":"YulIdentifier","src":"28383:3:1"},"nativeSrc":"28383:18:1","nodeType":"YulFunctionCall","src":"28383:18:1"},{"kind":"number","nativeSrc":"28403:2:1","nodeType":"YulLiteral","src":"28403:2:1","type":"","value":"27"}],"functionName":{"name":"mstore","nativeSrc":"28376:6:1","nodeType":"YulIdentifier","src":"28376:6:1"},"nativeSrc":"28376:30:1","nodeType":"YulFunctionCall","src":"28376:30:1"},"nativeSrc":"28376:30:1","nodeType":"YulExpressionStatement","src":"28376:30:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"28426:9:1","nodeType":"YulIdentifier","src":"28426:9:1"},{"kind":"number","nativeSrc":"28437:2:1","nodeType":"YulLiteral","src":"28437:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"28422:3:1","nodeType":"YulIdentifier","src":"28422:3:1"},"nativeSrc":"28422:18:1","nodeType":"YulFunctionCall","src":"28422:18:1"},{"hexValue":"494e56414c49445f534c415348494e475f50455243454e54414745","kind":"string","nativeSrc":"28442:29:1","nodeType":"YulLiteral","src":"28442:29:1","type":"","value":"INVALID_SLASHING_PERCENTAGE"}],"functionName":{"name":"mstore","nativeSrc":"28415:6:1","nodeType":"YulIdentifier","src":"28415:6:1"},"nativeSrc":"28415:57:1","nodeType":"YulFunctionCall","src":"28415:57:1"},"nativeSrc":"28415:57:1","nodeType":"YulExpressionStatement","src":"28415:57:1"},{"nativeSrc":"28481:26:1","nodeType":"YulAssignment","src":"28481:26:1","value":{"arguments":[{"name":"headStart","nativeSrc":"28493:9:1","nodeType":"YulIdentifier","src":"28493:9:1"},{"kind":"number","nativeSrc":"28504:2:1","nodeType":"YulLiteral","src":"28504:2:1","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"28489:3:1","nodeType":"YulIdentifier","src":"28489:3:1"},"nativeSrc":"28489:18:1","nodeType":"YulFunctionCall","src":"28489:18:1"},"variableNames":[{"name":"tail","nativeSrc":"28481:4:1","nodeType":"YulIdentifier","src":"28481:4:1"}]}]},"name":"abi_encode_tuple_t_stringliteral_ce93b50079b62f2df0cdb8205f7bed11a1c18f1ff774f2e6b4f84f4f62875ed5__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"28162:351:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"28313:9:1","nodeType":"YulTypedName","src":"28313:9:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"28327:4:1","nodeType":"YulTypedName","src":"28327:4:1","type":""}],"src":"28162:351:1"},{"body":{"nativeSrc":"28692:166:1","nodeType":"YulBlock","src":"28692:166:1","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"28709:9:1","nodeType":"YulIdentifier","src":"28709:9:1"},{"kind":"number","nativeSrc":"28720:2:1","nodeType":"YulLiteral","src":"28720:2:1","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"28702:6:1","nodeType":"YulIdentifier","src":"28702:6:1"},"nativeSrc":"28702:21:1","nodeType":"YulFunctionCall","src":"28702:21:1"},"nativeSrc":"28702:21:1","nodeType":"YulExpressionStatement","src":"28702:21:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"28743:9:1","nodeType":"YulIdentifier","src":"28743:9:1"},{"kind":"number","nativeSrc":"28754:2:1","nodeType":"YulLiteral","src":"28754:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"28739:3:1","nodeType":"YulIdentifier","src":"28739:3:1"},"nativeSrc":"28739:18:1","nodeType":"YulFunctionCall","src":"28739:18:1"},{"kind":"number","nativeSrc":"28759:2:1","nodeType":"YulLiteral","src":"28759:2:1","type":"","value":"16"}],"functionName":{"name":"mstore","nativeSrc":"28732:6:1","nodeType":"YulIdentifier","src":"28732:6:1"},"nativeSrc":"28732:30:1","nodeType":"YulFunctionCall","src":"28732:30:1"},"nativeSrc":"28732:30:1","nodeType":"YulExpressionStatement","src":"28732:30:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"28782:9:1","nodeType":"YulIdentifier","src":"28782:9:1"},{"kind":"number","nativeSrc":"28793:2:1","nodeType":"YulLiteral","src":"28793:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"28778:3:1","nodeType":"YulIdentifier","src":"28778:3:1"},"nativeSrc":"28778:18:1","nodeType":"YulFunctionCall","src":"28778:18:1"},{"hexValue":"534c415348494e475f4f4e474f494e47","kind":"string","nativeSrc":"28798:18:1","nodeType":"YulLiteral","src":"28798:18:1","type":"","value":"SLASHING_ONGOING"}],"functionName":{"name":"mstore","nativeSrc":"28771:6:1","nodeType":"YulIdentifier","src":"28771:6:1"},"nativeSrc":"28771:46:1","nodeType":"YulFunctionCall","src":"28771:46:1"},"nativeSrc":"28771:46:1","nodeType":"YulExpressionStatement","src":"28771:46:1"},{"nativeSrc":"28826:26:1","nodeType":"YulAssignment","src":"28826:26:1","value":{"arguments":[{"name":"headStart","nativeSrc":"28838:9:1","nodeType":"YulIdentifier","src":"28838:9:1"},{"kind":"number","nativeSrc":"28849:2:1","nodeType":"YulLiteral","src":"28849:2:1","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"28834:3:1","nodeType":"YulIdentifier","src":"28834:3:1"},"nativeSrc":"28834:18:1","nodeType":"YulFunctionCall","src":"28834:18:1"},"variableNames":[{"name":"tail","nativeSrc":"28826:4:1","nodeType":"YulIdentifier","src":"28826:4:1"}]}]},"name":"abi_encode_tuple_t_stringliteral_ca68b1751ae29c5f09bd0021f927ba7e466485e5196910ff5ec2e20b861ddf43__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"28518:340:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"28669:9:1","nodeType":"YulTypedName","src":"28669:9:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"28683:4:1","nodeType":"YulTypedName","src":"28683:4:1","type":""}],"src":"28518:340:1"},{"body":{"nativeSrc":"28964:117:1","nodeType":"YulBlock","src":"28964:117:1","statements":[{"nativeSrc":"28974:26:1","nodeType":"YulAssignment","src":"28974:26:1","value":{"arguments":[{"name":"headStart","nativeSrc":"28986:9:1","nodeType":"YulIdentifier","src":"28986:9:1"},{"kind":"number","nativeSrc":"28997:2:1","nodeType":"YulLiteral","src":"28997:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"28982:3:1","nodeType":"YulIdentifier","src":"28982:3:1"},"nativeSrc":"28982:18:1","nodeType":"YulFunctionCall","src":"28982:18:1"},"variableNames":[{"name":"tail","nativeSrc":"28974:4:1","nodeType":"YulIdentifier","src":"28974:4:1"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"29016:9:1","nodeType":"YulIdentifier","src":"29016:9:1"},{"arguments":[{"name":"value0","nativeSrc":"29031:6:1","nodeType":"YulIdentifier","src":"29031:6:1"},{"kind":"number","nativeSrc":"29039:34:1","nodeType":"YulLiteral","src":"29039:34:1","type":"","value":"0xffffffffffffffffffffffffffffffff"}],"functionName":{"name":"and","nativeSrc":"29027:3:1","nodeType":"YulIdentifier","src":"29027:3:1"},"nativeSrc":"29027:47:1","nodeType":"YulFunctionCall","src":"29027:47:1"}],"functionName":{"name":"mstore","nativeSrc":"29009:6:1","nodeType":"YulIdentifier","src":"29009:6:1"},"nativeSrc":"29009:66:1","nodeType":"YulFunctionCall","src":"29009:66:1"},"nativeSrc":"29009:66:1","nodeType":"YulExpressionStatement","src":"29009:66:1"}]},"name":"abi_encode_tuple_t_uint128__to_t_uint256__fromStack_reversed","nativeSrc":"28863:218:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"28933:9:1","nodeType":"YulTypedName","src":"28933:9:1","type":""},{"name":"value0","nativeSrc":"28944:6:1","nodeType":"YulTypedName","src":"28944:6:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"28955:4:1","nodeType":"YulTypedName","src":"28955:4:1","type":""}],"src":"28863:218:1"},{"body":{"nativeSrc":"29260:170:1","nodeType":"YulBlock","src":"29260:170:1","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"29277:9:1","nodeType":"YulIdentifier","src":"29277:9:1"},{"kind":"number","nativeSrc":"29288:2:1","nodeType":"YulLiteral","src":"29288:2:1","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"29270:6:1","nodeType":"YulIdentifier","src":"29270:6:1"},"nativeSrc":"29270:21:1","nodeType":"YulFunctionCall","src":"29270:21:1"},"nativeSrc":"29270:21:1","nodeType":"YulExpressionStatement","src":"29270:21:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"29311:9:1","nodeType":"YulIdentifier","src":"29311:9:1"},{"kind":"number","nativeSrc":"29322:2:1","nodeType":"YulLiteral","src":"29322:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"29307:3:1","nodeType":"YulIdentifier","src":"29307:3:1"},"nativeSrc":"29307:18:1","nodeType":"YulFunctionCall","src":"29307:18:1"},{"kind":"number","nativeSrc":"29327:2:1","nodeType":"YulLiteral","src":"29327:2:1","type":"","value":"20"}],"functionName":{"name":"mstore","nativeSrc":"29300:6:1","nodeType":"YulIdentifier","src":"29300:6:1"},"nativeSrc":"29300:30:1","nodeType":"YulFunctionCall","src":"29300:30:1"},"nativeSrc":"29300:30:1","nodeType":"YulExpressionStatement","src":"29300:30:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"29350:9:1","nodeType":"YulIdentifier","src":"29350:9:1"},{"kind":"number","nativeSrc":"29361:2:1","nodeType":"YulLiteral","src":"29361:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"29346:3:1","nodeType":"YulIdentifier","src":"29346:3:1"},"nativeSrc":"29346:18:1","nodeType":"YulFunctionCall","src":"29346:18:1"},{"hexValue":"494e56414c49445f424c4f434b5f4e554d424552","kind":"string","nativeSrc":"29366:22:1","nodeType":"YulLiteral","src":"29366:22:1","type":"","value":"INVALID_BLOCK_NUMBER"}],"functionName":{"name":"mstore","nativeSrc":"29339:6:1","nodeType":"YulIdentifier","src":"29339:6:1"},"nativeSrc":"29339:50:1","nodeType":"YulFunctionCall","src":"29339:50:1"},"nativeSrc":"29339:50:1","nodeType":"YulExpressionStatement","src":"29339:50:1"},{"nativeSrc":"29398:26:1","nodeType":"YulAssignment","src":"29398:26:1","value":{"arguments":[{"name":"headStart","nativeSrc":"29410:9:1","nodeType":"YulIdentifier","src":"29410:9:1"},{"kind":"number","nativeSrc":"29421:2:1","nodeType":"YulLiteral","src":"29421:2:1","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"29406:3:1","nodeType":"YulIdentifier","src":"29406:3:1"},"nativeSrc":"29406:18:1","nodeType":"YulFunctionCall","src":"29406:18:1"},"variableNames":[{"name":"tail","nativeSrc":"29398:4:1","nodeType":"YulIdentifier","src":"29398:4:1"}]}]},"name":"abi_encode_tuple_t_stringliteral_dd61c748dcfe71393203093270c457f6ceb8834cce0160376620e7b2f811559c__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"29086:344:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"29237:9:1","nodeType":"YulTypedName","src":"29237:9:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"29251:4:1","nodeType":"YulTypedName","src":"29251:4:1","type":""}],"src":"29086:344:1"},{"body":{"nativeSrc":"29609:229:1","nodeType":"YulBlock","src":"29609:229:1","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"29626:9:1","nodeType":"YulIdentifier","src":"29626:9:1"},{"kind":"number","nativeSrc":"29637:2:1","nodeType":"YulLiteral","src":"29637:2:1","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"29619:6:1","nodeType":"YulIdentifier","src":"29619:6:1"},"nativeSrc":"29619:21:1","nodeType":"YulFunctionCall","src":"29619:21:1"},"nativeSrc":"29619:21:1","nodeType":"YulExpressionStatement","src":"29619:21:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"29660:9:1","nodeType":"YulIdentifier","src":"29660:9:1"},{"kind":"number","nativeSrc":"29671:2:1","nodeType":"YulLiteral","src":"29671:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"29656:3:1","nodeType":"YulIdentifier","src":"29656:3:1"},"nativeSrc":"29656:18:1","nodeType":"YulFunctionCall","src":"29656:18:1"},{"kind":"number","nativeSrc":"29676:2:1","nodeType":"YulLiteral","src":"29676:2:1","type":"","value":"39"}],"functionName":{"name":"mstore","nativeSrc":"29649:6:1","nodeType":"YulIdentifier","src":"29649:6:1"},"nativeSrc":"29649:30:1","nodeType":"YulFunctionCall","src":"29649:30:1"},"nativeSrc":"29649:30:1","nodeType":"YulExpressionStatement","src":"29649:30:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"29699:9:1","nodeType":"YulIdentifier","src":"29699:9:1"},{"kind":"number","nativeSrc":"29710:2:1","nodeType":"YulLiteral","src":"29710:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"29695:3:1","nodeType":"YulIdentifier","src":"29695:3:1"},"nativeSrc":"29695:18:1","nodeType":"YulFunctionCall","src":"29695:18:1"},{"hexValue":"53616665436173743a2076616c756520646f65736e27742066697420696e2032","kind":"string","nativeSrc":"29715:34:1","nodeType":"YulLiteral","src":"29715:34:1","type":"","value":"SafeCast: value doesn't fit in 2"}],"functionName":{"name":"mstore","nativeSrc":"29688:6:1","nodeType":"YulIdentifier","src":"29688:6:1"},"nativeSrc":"29688:62:1","nodeType":"YulFunctionCall","src":"29688:62:1"},"nativeSrc":"29688:62:1","nodeType":"YulExpressionStatement","src":"29688:62:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"29770:9:1","nodeType":"YulIdentifier","src":"29770:9:1"},{"kind":"number","nativeSrc":"29781:2:1","nodeType":"YulLiteral","src":"29781:2:1","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"29766:3:1","nodeType":"YulIdentifier","src":"29766:3:1"},"nativeSrc":"29766:18:1","nodeType":"YulFunctionCall","src":"29766:18:1"},{"hexValue":"31362062697473","kind":"string","nativeSrc":"29786:9:1","nodeType":"YulLiteral","src":"29786:9:1","type":"","value":"16 bits"}],"functionName":{"name":"mstore","nativeSrc":"29759:6:1","nodeType":"YulIdentifier","src":"29759:6:1"},"nativeSrc":"29759:37:1","nodeType":"YulFunctionCall","src":"29759:37:1"},"nativeSrc":"29759:37:1","nodeType":"YulExpressionStatement","src":"29759:37:1"},{"nativeSrc":"29805:27:1","nodeType":"YulAssignment","src":"29805:27:1","value":{"arguments":[{"name":"headStart","nativeSrc":"29817:9:1","nodeType":"YulIdentifier","src":"29817:9:1"},{"kind":"number","nativeSrc":"29828:3:1","nodeType":"YulLiteral","src":"29828:3:1","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"29813:3:1","nodeType":"YulIdentifier","src":"29813:3:1"},"nativeSrc":"29813:19:1","nodeType":"YulFunctionCall","src":"29813:19:1"},"variableNames":[{"name":"tail","nativeSrc":"29805:4:1","nodeType":"YulIdentifier","src":"29805:4:1"}]}]},"name":"abi_encode_tuple_t_stringliteral_8966adc0aad8dc91b207c69c3eb4937e498af8cc706cfe7edd55f3a6ea53488d__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"29435:403:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"29586:9:1","nodeType":"YulTypedName","src":"29586:9:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"29600:4:1","nodeType":"YulTypedName","src":"29600:4:1","type":""}],"src":"29435:403:1"},{"body":{"nativeSrc":"29921:199:1","nodeType":"YulBlock","src":"29921:199:1","statements":[{"body":{"nativeSrc":"29967:16:1","nodeType":"YulBlock","src":"29967:16:1","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"29976:1:1","nodeType":"YulLiteral","src":"29976:1:1","type":"","value":"0"},{"kind":"number","nativeSrc":"29979:1:1","nodeType":"YulLiteral","src":"29979:1:1","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"29969:6:1","nodeType":"YulIdentifier","src":"29969:6:1"},"nativeSrc":"29969:12:1","nodeType":"YulFunctionCall","src":"29969:12:1"},"nativeSrc":"29969:12:1","nodeType":"YulExpressionStatement","src":"29969:12:1"}]},"condition":{"arguments":[{"arguments":[{"name":"dataEnd","nativeSrc":"29942:7:1","nodeType":"YulIdentifier","src":"29942:7:1"},{"name":"headStart","nativeSrc":"29951:9:1","nodeType":"YulIdentifier","src":"29951:9:1"}],"functionName":{"name":"sub","nativeSrc":"29938:3:1","nodeType":"YulIdentifier","src":"29938:3:1"},"nativeSrc":"29938:23:1","nodeType":"YulFunctionCall","src":"29938:23:1"},{"kind":"number","nativeSrc":"29963:2:1","nodeType":"YulLiteral","src":"29963:2:1","type":"","value":"32"}],"functionName":{"name":"slt","nativeSrc":"29934:3:1","nodeType":"YulIdentifier","src":"29934:3:1"},"nativeSrc":"29934:32:1","nodeType":"YulFunctionCall","src":"29934:32:1"},"nativeSrc":"29931:52:1","nodeType":"YulIf","src":"29931:52:1"},{"nativeSrc":"29992:29:1","nodeType":"YulVariableDeclaration","src":"29992:29:1","value":{"arguments":[{"name":"headStart","nativeSrc":"30011:9:1","nodeType":"YulIdentifier","src":"30011:9:1"}],"functionName":{"name":"mload","nativeSrc":"30005:5:1","nodeType":"YulIdentifier","src":"30005:5:1"},"nativeSrc":"30005:16:1","nodeType":"YulFunctionCall","src":"30005:16:1"},"variables":[{"name":"value","nativeSrc":"29996:5:1","nodeType":"YulTypedName","src":"29996:5:1","type":""}]},{"body":{"nativeSrc":"30074:16:1","nodeType":"YulBlock","src":"30074:16:1","statements":[{"expression":{"arguments":[{"kind":"number","nativeSrc":"30083:1:1","nodeType":"YulLiteral","src":"30083:1:1","type":"","value":"0"},{"kind":"number","nativeSrc":"30086:1:1","nodeType":"YulLiteral","src":"30086:1:1","type":"","value":"0"}],"functionName":{"name":"revert","nativeSrc":"30076:6:1","nodeType":"YulIdentifier","src":"30076:6:1"},"nativeSrc":"30076:12:1","nodeType":"YulFunctionCall","src":"30076:12:1"},"nativeSrc":"30076:12:1","nodeType":"YulExpressionStatement","src":"30076:12:1"}]},"condition":{"arguments":[{"arguments":[{"name":"value","nativeSrc":"30043:5:1","nodeType":"YulIdentifier","src":"30043:5:1"},{"arguments":[{"arguments":[{"name":"value","nativeSrc":"30064:5:1","nodeType":"YulIdentifier","src":"30064:5:1"}],"functionName":{"name":"iszero","nativeSrc":"30057:6:1","nodeType":"YulIdentifier","src":"30057:6:1"},"nativeSrc":"30057:13:1","nodeType":"YulFunctionCall","src":"30057:13:1"}],"functionName":{"name":"iszero","nativeSrc":"30050:6:1","nodeType":"YulIdentifier","src":"30050:6:1"},"nativeSrc":"30050:21:1","nodeType":"YulFunctionCall","src":"30050:21:1"}],"functionName":{"name":"eq","nativeSrc":"30040:2:1","nodeType":"YulIdentifier","src":"30040:2:1"},"nativeSrc":"30040:32:1","nodeType":"YulFunctionCall","src":"30040:32:1"}],"functionName":{"name":"iszero","nativeSrc":"30033:6:1","nodeType":"YulIdentifier","src":"30033:6:1"},"nativeSrc":"30033:40:1","nodeType":"YulFunctionCall","src":"30033:40:1"},"nativeSrc":"30030:60:1","nodeType":"YulIf","src":"30030:60:1"},{"nativeSrc":"30099:15:1","nodeType":"YulAssignment","src":"30099:15:1","value":{"name":"value","nativeSrc":"30109:5:1","nodeType":"YulIdentifier","src":"30109:5:1"},"variableNames":[{"name":"value0","nativeSrc":"30099:6:1","nodeType":"YulIdentifier","src":"30099:6:1"}]}]},"name":"abi_decode_tuple_t_bool_fromMemory","nativeSrc":"29843:277:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"29887:9:1","nodeType":"YulTypedName","src":"29887:9:1","type":""},{"name":"dataEnd","nativeSrc":"29898:7:1","nodeType":"YulTypedName","src":"29898:7:1","type":""}],"returnVariables":[{"name":"value0","nativeSrc":"29910:6:1","nodeType":"YulTypedName","src":"29910:6:1","type":""}],"src":"29843:277:1"},{"body":{"nativeSrc":"30299:232:1","nodeType":"YulBlock","src":"30299:232:1","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"30316:9:1","nodeType":"YulIdentifier","src":"30316:9:1"},{"kind":"number","nativeSrc":"30327:2:1","nodeType":"YulLiteral","src":"30327:2:1","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"30309:6:1","nodeType":"YulIdentifier","src":"30309:6:1"},"nativeSrc":"30309:21:1","nodeType":"YulFunctionCall","src":"30309:21:1"},"nativeSrc":"30309:21:1","nodeType":"YulExpressionStatement","src":"30309:21:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"30350:9:1","nodeType":"YulIdentifier","src":"30350:9:1"},{"kind":"number","nativeSrc":"30361:2:1","nodeType":"YulLiteral","src":"30361:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"30346:3:1","nodeType":"YulIdentifier","src":"30346:3:1"},"nativeSrc":"30346:18:1","nodeType":"YulFunctionCall","src":"30346:18:1"},{"kind":"number","nativeSrc":"30366:2:1","nodeType":"YulLiteral","src":"30366:2:1","type":"","value":"42"}],"functionName":{"name":"mstore","nativeSrc":"30339:6:1","nodeType":"YulIdentifier","src":"30339:6:1"},"nativeSrc":"30339:30:1","nodeType":"YulFunctionCall","src":"30339:30:1"},"nativeSrc":"30339:30:1","nodeType":"YulExpressionStatement","src":"30339:30:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"30389:9:1","nodeType":"YulIdentifier","src":"30389:9:1"},{"kind":"number","nativeSrc":"30400:2:1","nodeType":"YulLiteral","src":"30400:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"30385:3:1","nodeType":"YulIdentifier","src":"30385:3:1"},"nativeSrc":"30385:18:1","nodeType":"YulFunctionCall","src":"30385:18:1"},{"hexValue":"5361666545524332303a204552433230206f7065726174696f6e20646964206e","kind":"string","nativeSrc":"30405:34:1","nodeType":"YulLiteral","src":"30405:34:1","type":"","value":"SafeERC20: ERC20 operation did n"}],"functionName":{"name":"mstore","nativeSrc":"30378:6:1","nodeType":"YulIdentifier","src":"30378:6:1"},"nativeSrc":"30378:62:1","nodeType":"YulFunctionCall","src":"30378:62:1"},"nativeSrc":"30378:62:1","nodeType":"YulExpressionStatement","src":"30378:62:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"30460:9:1","nodeType":"YulIdentifier","src":"30460:9:1"},{"kind":"number","nativeSrc":"30471:2:1","nodeType":"YulLiteral","src":"30471:2:1","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"30456:3:1","nodeType":"YulIdentifier","src":"30456:3:1"},"nativeSrc":"30456:18:1","nodeType":"YulFunctionCall","src":"30456:18:1"},{"hexValue":"6f742073756363656564","kind":"string","nativeSrc":"30476:12:1","nodeType":"YulLiteral","src":"30476:12:1","type":"","value":"ot succeed"}],"functionName":{"name":"mstore","nativeSrc":"30449:6:1","nodeType":"YulIdentifier","src":"30449:6:1"},"nativeSrc":"30449:40:1","nodeType":"YulFunctionCall","src":"30449:40:1"},"nativeSrc":"30449:40:1","nodeType":"YulExpressionStatement","src":"30449:40:1"},{"nativeSrc":"30498:27:1","nodeType":"YulAssignment","src":"30498:27:1","value":{"arguments":[{"name":"headStart","nativeSrc":"30510:9:1","nodeType":"YulIdentifier","src":"30510:9:1"},{"kind":"number","nativeSrc":"30521:3:1","nodeType":"YulLiteral","src":"30521:3:1","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"30506:3:1","nodeType":"YulIdentifier","src":"30506:3:1"},"nativeSrc":"30506:19:1","nodeType":"YulFunctionCall","src":"30506:19:1"},"variableNames":[{"name":"tail","nativeSrc":"30498:4:1","nodeType":"YulIdentifier","src":"30498:4:1"}]}]},"name":"abi_encode_tuple_t_stringliteral_e11ad79d1e4a7f2e5f376964cb99e8e8f7904e3fc16a109f7a7ecb9aa7956dcd__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"30125:406:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"30276:9:1","nodeType":"YulTypedName","src":"30276:9:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"30290:4:1","nodeType":"YulTypedName","src":"30290:4:1","type":""}],"src":"30125:406:1"},{"body":{"nativeSrc":"30710:223:1","nodeType":"YulBlock","src":"30710:223:1","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"30727:9:1","nodeType":"YulIdentifier","src":"30727:9:1"},{"kind":"number","nativeSrc":"30738:2:1","nodeType":"YulLiteral","src":"30738:2:1","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"30720:6:1","nodeType":"YulIdentifier","src":"30720:6:1"},"nativeSrc":"30720:21:1","nodeType":"YulFunctionCall","src":"30720:21:1"},"nativeSrc":"30720:21:1","nodeType":"YulExpressionStatement","src":"30720:21:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"30761:9:1","nodeType":"YulIdentifier","src":"30761:9:1"},{"kind":"number","nativeSrc":"30772:2:1","nodeType":"YulLiteral","src":"30772:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"30757:3:1","nodeType":"YulIdentifier","src":"30757:3:1"},"nativeSrc":"30757:18:1","nodeType":"YulFunctionCall","src":"30757:18:1"},{"kind":"number","nativeSrc":"30777:2:1","nodeType":"YulLiteral","src":"30777:2:1","type":"","value":"33"}],"functionName":{"name":"mstore","nativeSrc":"30750:6:1","nodeType":"YulIdentifier","src":"30750:6:1"},"nativeSrc":"30750:30:1","nodeType":"YulFunctionCall","src":"30750:30:1"},"nativeSrc":"30750:30:1","nodeType":"YulExpressionStatement","src":"30750:30:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"30800:9:1","nodeType":"YulIdentifier","src":"30800:9:1"},{"kind":"number","nativeSrc":"30811:2:1","nodeType":"YulLiteral","src":"30811:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"30796:3:1","nodeType":"YulIdentifier","src":"30796:3:1"},"nativeSrc":"30796:18:1","nodeType":"YulFunctionCall","src":"30796:18:1"},{"hexValue":"45524332303a206275726e2066726f6d20746865207a65726f20616464726573","kind":"string","nativeSrc":"30816:34:1","nodeType":"YulLiteral","src":"30816:34:1","type":"","value":"ERC20: burn from the zero addres"}],"functionName":{"name":"mstore","nativeSrc":"30789:6:1","nodeType":"YulIdentifier","src":"30789:6:1"},"nativeSrc":"30789:62:1","nodeType":"YulFunctionCall","src":"30789:62:1"},"nativeSrc":"30789:62:1","nodeType":"YulExpressionStatement","src":"30789:62:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"30871:9:1","nodeType":"YulIdentifier","src":"30871:9:1"},{"kind":"number","nativeSrc":"30882:2:1","nodeType":"YulLiteral","src":"30882:2:1","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"30867:3:1","nodeType":"YulIdentifier","src":"30867:3:1"},"nativeSrc":"30867:18:1","nodeType":"YulFunctionCall","src":"30867:18:1"},{"hexValue":"73","kind":"string","nativeSrc":"30887:3:1","nodeType":"YulLiteral","src":"30887:3:1","type":"","value":"s"}],"functionName":{"name":"mstore","nativeSrc":"30860:6:1","nodeType":"YulIdentifier","src":"30860:6:1"},"nativeSrc":"30860:31:1","nodeType":"YulFunctionCall","src":"30860:31:1"},"nativeSrc":"30860:31:1","nodeType":"YulExpressionStatement","src":"30860:31:1"},{"nativeSrc":"30900:27:1","nodeType":"YulAssignment","src":"30900:27:1","value":{"arguments":[{"name":"headStart","nativeSrc":"30912:9:1","nodeType":"YulIdentifier","src":"30912:9:1"},{"kind":"number","nativeSrc":"30923:3:1","nodeType":"YulLiteral","src":"30923:3:1","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"30908:3:1","nodeType":"YulIdentifier","src":"30908:3:1"},"nativeSrc":"30908:19:1","nodeType":"YulFunctionCall","src":"30908:19:1"},"variableNames":[{"name":"tail","nativeSrc":"30900:4:1","nodeType":"YulIdentifier","src":"30900:4:1"}]}]},"name":"abi_encode_tuple_t_stringliteral_b16788493b576042bb52c50ed56189e0b250db113c7bfb1c3897d25cf9632d7f__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"30536:397:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"30687:9:1","nodeType":"YulTypedName","src":"30687:9:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"30701:4:1","nodeType":"YulTypedName","src":"30701:4:1","type":""}],"src":"30536:397:1"},{"body":{"nativeSrc":"31112:224:1","nodeType":"YulBlock","src":"31112:224:1","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"31129:9:1","nodeType":"YulIdentifier","src":"31129:9:1"},{"kind":"number","nativeSrc":"31140:2:1","nodeType":"YulLiteral","src":"31140:2:1","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"31122:6:1","nodeType":"YulIdentifier","src":"31122:6:1"},"nativeSrc":"31122:21:1","nodeType":"YulFunctionCall","src":"31122:21:1"},"nativeSrc":"31122:21:1","nodeType":"YulExpressionStatement","src":"31122:21:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"31163:9:1","nodeType":"YulIdentifier","src":"31163:9:1"},{"kind":"number","nativeSrc":"31174:2:1","nodeType":"YulLiteral","src":"31174:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"31159:3:1","nodeType":"YulIdentifier","src":"31159:3:1"},"nativeSrc":"31159:18:1","nodeType":"YulFunctionCall","src":"31159:18:1"},{"kind":"number","nativeSrc":"31179:2:1","nodeType":"YulLiteral","src":"31179:2:1","type":"","value":"34"}],"functionName":{"name":"mstore","nativeSrc":"31152:6:1","nodeType":"YulIdentifier","src":"31152:6:1"},"nativeSrc":"31152:30:1","nodeType":"YulFunctionCall","src":"31152:30:1"},"nativeSrc":"31152:30:1","nodeType":"YulExpressionStatement","src":"31152:30:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"31202:9:1","nodeType":"YulIdentifier","src":"31202:9:1"},{"kind":"number","nativeSrc":"31213:2:1","nodeType":"YulLiteral","src":"31213:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"31198:3:1","nodeType":"YulIdentifier","src":"31198:3:1"},"nativeSrc":"31198:18:1","nodeType":"YulFunctionCall","src":"31198:18:1"},{"hexValue":"45524332303a206275726e20616d6f756e7420657863656564732062616c616e","kind":"string","nativeSrc":"31218:34:1","nodeType":"YulLiteral","src":"31218:34:1","type":"","value":"ERC20: burn amount exceeds balan"}],"functionName":{"name":"mstore","nativeSrc":"31191:6:1","nodeType":"YulIdentifier","src":"31191:6:1"},"nativeSrc":"31191:62:1","nodeType":"YulFunctionCall","src":"31191:62:1"},"nativeSrc":"31191:62:1","nodeType":"YulExpressionStatement","src":"31191:62:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"31273:9:1","nodeType":"YulIdentifier","src":"31273:9:1"},{"kind":"number","nativeSrc":"31284:2:1","nodeType":"YulLiteral","src":"31284:2:1","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"31269:3:1","nodeType":"YulIdentifier","src":"31269:3:1"},"nativeSrc":"31269:18:1","nodeType":"YulFunctionCall","src":"31269:18:1"},{"hexValue":"6365","kind":"string","nativeSrc":"31289:4:1","nodeType":"YulLiteral","src":"31289:4:1","type":"","value":"ce"}],"functionName":{"name":"mstore","nativeSrc":"31262:6:1","nodeType":"YulIdentifier","src":"31262:6:1"},"nativeSrc":"31262:32:1","nodeType":"YulFunctionCall","src":"31262:32:1"},"nativeSrc":"31262:32:1","nodeType":"YulExpressionStatement","src":"31262:32:1"},{"nativeSrc":"31303:27:1","nodeType":"YulAssignment","src":"31303:27:1","value":{"arguments":[{"name":"headStart","nativeSrc":"31315:9:1","nodeType":"YulIdentifier","src":"31315:9:1"},{"kind":"number","nativeSrc":"31326:3:1","nodeType":"YulLiteral","src":"31326:3:1","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"31311:3:1","nodeType":"YulIdentifier","src":"31311:3:1"},"nativeSrc":"31311:19:1","nodeType":"YulFunctionCall","src":"31311:19:1"},"variableNames":[{"name":"tail","nativeSrc":"31303:4:1","nodeType":"YulIdentifier","src":"31303:4:1"}]}]},"name":"abi_encode_tuple_t_stringliteral_149b126e7125232b4200af45303d04fba8b74653b1a295a6a561a528c33fefdd__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"30938:398:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"31089:9:1","nodeType":"YulTypedName","src":"31089:9:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"31103:4:1","nodeType":"YulTypedName","src":"31103:4:1","type":""}],"src":"30938:398:1"},{"body":{"nativeSrc":"31515:229:1","nodeType":"YulBlock","src":"31515:229:1","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"31532:9:1","nodeType":"YulIdentifier","src":"31532:9:1"},{"kind":"number","nativeSrc":"31543:2:1","nodeType":"YulLiteral","src":"31543:2:1","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"31525:6:1","nodeType":"YulIdentifier","src":"31525:6:1"},"nativeSrc":"31525:21:1","nodeType":"YulFunctionCall","src":"31525:21:1"},"nativeSrc":"31525:21:1","nodeType":"YulExpressionStatement","src":"31525:21:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"31566:9:1","nodeType":"YulIdentifier","src":"31566:9:1"},{"kind":"number","nativeSrc":"31577:2:1","nodeType":"YulLiteral","src":"31577:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"31562:3:1","nodeType":"YulIdentifier","src":"31562:3:1"},"nativeSrc":"31562:18:1","nodeType":"YulFunctionCall","src":"31562:18:1"},{"kind":"number","nativeSrc":"31582:2:1","nodeType":"YulLiteral","src":"31582:2:1","type":"","value":"39"}],"functionName":{"name":"mstore","nativeSrc":"31555:6:1","nodeType":"YulIdentifier","src":"31555:6:1"},"nativeSrc":"31555:30:1","nodeType":"YulFunctionCall","src":"31555:30:1"},"nativeSrc":"31555:30:1","nodeType":"YulExpressionStatement","src":"31555:30:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"31605:9:1","nodeType":"YulIdentifier","src":"31605:9:1"},{"kind":"number","nativeSrc":"31616:2:1","nodeType":"YulLiteral","src":"31616:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"31601:3:1","nodeType":"YulIdentifier","src":"31601:3:1"},"nativeSrc":"31601:18:1","nodeType":"YulFunctionCall","src":"31601:18:1"},{"hexValue":"53616665436173743a2076616c756520646f65736e27742066697420696e2031","kind":"string","nativeSrc":"31621:34:1","nodeType":"YulLiteral","src":"31621:34:1","type":"","value":"SafeCast: value doesn't fit in 1"}],"functionName":{"name":"mstore","nativeSrc":"31594:6:1","nodeType":"YulIdentifier","src":"31594:6:1"},"nativeSrc":"31594:62:1","nodeType":"YulFunctionCall","src":"31594:62:1"},"nativeSrc":"31594:62:1","nodeType":"YulExpressionStatement","src":"31594:62:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"31676:9:1","nodeType":"YulIdentifier","src":"31676:9:1"},{"kind":"number","nativeSrc":"31687:2:1","nodeType":"YulLiteral","src":"31687:2:1","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"31672:3:1","nodeType":"YulIdentifier","src":"31672:3:1"},"nativeSrc":"31672:18:1","nodeType":"YulFunctionCall","src":"31672:18:1"},{"hexValue":"38342062697473","kind":"string","nativeSrc":"31692:9:1","nodeType":"YulLiteral","src":"31692:9:1","type":"","value":"84 bits"}],"functionName":{"name":"mstore","nativeSrc":"31665:6:1","nodeType":"YulIdentifier","src":"31665:6:1"},"nativeSrc":"31665:37:1","nodeType":"YulFunctionCall","src":"31665:37:1"},"nativeSrc":"31665:37:1","nodeType":"YulExpressionStatement","src":"31665:37:1"},{"nativeSrc":"31711:27:1","nodeType":"YulAssignment","src":"31711:27:1","value":{"arguments":[{"name":"headStart","nativeSrc":"31723:9:1","nodeType":"YulIdentifier","src":"31723:9:1"},{"kind":"number","nativeSrc":"31734:3:1","nodeType":"YulLiteral","src":"31734:3:1","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"31719:3:1","nodeType":"YulIdentifier","src":"31719:3:1"},"nativeSrc":"31719:19:1","nodeType":"YulFunctionCall","src":"31719:19:1"},"variableNames":[{"name":"tail","nativeSrc":"31711:4:1","nodeType":"YulIdentifier","src":"31711:4:1"}]}]},"name":"abi_encode_tuple_t_stringliteral_86c53d89b1944d561ecfa42e859033241d1df6ea8d42a57ae02f79d45de4aa75__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"31341:403:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"31492:9:1","nodeType":"YulTypedName","src":"31492:9:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"31506:4:1","nodeType":"YulTypedName","src":"31506:4:1","type":""}],"src":"31341:403:1"},{"body":{"nativeSrc":"31923:227:1","nodeType":"YulBlock","src":"31923:227:1","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"31940:9:1","nodeType":"YulIdentifier","src":"31940:9:1"},{"kind":"number","nativeSrc":"31951:2:1","nodeType":"YulLiteral","src":"31951:2:1","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"31933:6:1","nodeType":"YulIdentifier","src":"31933:6:1"},"nativeSrc":"31933:21:1","nodeType":"YulFunctionCall","src":"31933:21:1"},"nativeSrc":"31933:21:1","nodeType":"YulExpressionStatement","src":"31933:21:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"31974:9:1","nodeType":"YulIdentifier","src":"31974:9:1"},{"kind":"number","nativeSrc":"31985:2:1","nodeType":"YulLiteral","src":"31985:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"31970:3:1","nodeType":"YulIdentifier","src":"31970:3:1"},"nativeSrc":"31970:18:1","nodeType":"YulFunctionCall","src":"31970:18:1"},{"kind":"number","nativeSrc":"31990:2:1","nodeType":"YulLiteral","src":"31990:2:1","type":"","value":"37"}],"functionName":{"name":"mstore","nativeSrc":"31963:6:1","nodeType":"YulIdentifier","src":"31963:6:1"},"nativeSrc":"31963:30:1","nodeType":"YulFunctionCall","src":"31963:30:1"},"nativeSrc":"31963:30:1","nodeType":"YulExpressionStatement","src":"31963:30:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"32013:9:1","nodeType":"YulIdentifier","src":"32013:9:1"},{"kind":"number","nativeSrc":"32024:2:1","nodeType":"YulLiteral","src":"32024:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"32009:3:1","nodeType":"YulIdentifier","src":"32009:3:1"},"nativeSrc":"32009:18:1","nodeType":"YulFunctionCall","src":"32009:18:1"},{"hexValue":"45524332303a207472616e736665722066726f6d20746865207a65726f206164","kind":"string","nativeSrc":"32029:34:1","nodeType":"YulLiteral","src":"32029:34:1","type":"","value":"ERC20: transfer from the zero ad"}],"functionName":{"name":"mstore","nativeSrc":"32002:6:1","nodeType":"YulIdentifier","src":"32002:6:1"},"nativeSrc":"32002:62:1","nodeType":"YulFunctionCall","src":"32002:62:1"},"nativeSrc":"32002:62:1","nodeType":"YulExpressionStatement","src":"32002:62:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"32084:9:1","nodeType":"YulIdentifier","src":"32084:9:1"},{"kind":"number","nativeSrc":"32095:2:1","nodeType":"YulLiteral","src":"32095:2:1","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"32080:3:1","nodeType":"YulIdentifier","src":"32080:3:1"},"nativeSrc":"32080:18:1","nodeType":"YulFunctionCall","src":"32080:18:1"},{"hexValue":"6472657373","kind":"string","nativeSrc":"32100:7:1","nodeType":"YulLiteral","src":"32100:7:1","type":"","value":"dress"}],"functionName":{"name":"mstore","nativeSrc":"32073:6:1","nodeType":"YulIdentifier","src":"32073:6:1"},"nativeSrc":"32073:35:1","nodeType":"YulFunctionCall","src":"32073:35:1"},"nativeSrc":"32073:35:1","nodeType":"YulExpressionStatement","src":"32073:35:1"},{"nativeSrc":"32117:27:1","nodeType":"YulAssignment","src":"32117:27:1","value":{"arguments":[{"name":"headStart","nativeSrc":"32129:9:1","nodeType":"YulIdentifier","src":"32129:9:1"},{"kind":"number","nativeSrc":"32140:3:1","nodeType":"YulLiteral","src":"32140:3:1","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"32125:3:1","nodeType":"YulIdentifier","src":"32125:3:1"},"nativeSrc":"32125:19:1","nodeType":"YulFunctionCall","src":"32125:19:1"},"variableNames":[{"name":"tail","nativeSrc":"32117:4:1","nodeType":"YulIdentifier","src":"32117:4:1"}]}]},"name":"abi_encode_tuple_t_stringliteral_baecc556b46f4ed0f2b4cb599d60785ac8563dd2dc0a5bf12edea1c39e5e1fea__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"31749:401:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"31900:9:1","nodeType":"YulTypedName","src":"31900:9:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"31914:4:1","nodeType":"YulTypedName","src":"31914:4:1","type":""}],"src":"31749:401:1"},{"body":{"nativeSrc":"32329:225:1","nodeType":"YulBlock","src":"32329:225:1","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"32346:9:1","nodeType":"YulIdentifier","src":"32346:9:1"},{"kind":"number","nativeSrc":"32357:2:1","nodeType":"YulLiteral","src":"32357:2:1","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"32339:6:1","nodeType":"YulIdentifier","src":"32339:6:1"},"nativeSrc":"32339:21:1","nodeType":"YulFunctionCall","src":"32339:21:1"},"nativeSrc":"32339:21:1","nodeType":"YulExpressionStatement","src":"32339:21:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"32380:9:1","nodeType":"YulIdentifier","src":"32380:9:1"},{"kind":"number","nativeSrc":"32391:2:1","nodeType":"YulLiteral","src":"32391:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"32376:3:1","nodeType":"YulIdentifier","src":"32376:3:1"},"nativeSrc":"32376:18:1","nodeType":"YulFunctionCall","src":"32376:18:1"},{"kind":"number","nativeSrc":"32396:2:1","nodeType":"YulLiteral","src":"32396:2:1","type":"","value":"35"}],"functionName":{"name":"mstore","nativeSrc":"32369:6:1","nodeType":"YulIdentifier","src":"32369:6:1"},"nativeSrc":"32369:30:1","nodeType":"YulFunctionCall","src":"32369:30:1"},"nativeSrc":"32369:30:1","nodeType":"YulExpressionStatement","src":"32369:30:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"32419:9:1","nodeType":"YulIdentifier","src":"32419:9:1"},{"kind":"number","nativeSrc":"32430:2:1","nodeType":"YulLiteral","src":"32430:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"32415:3:1","nodeType":"YulIdentifier","src":"32415:3:1"},"nativeSrc":"32415:18:1","nodeType":"YulFunctionCall","src":"32415:18:1"},{"hexValue":"45524332303a207472616e7366657220746f20746865207a65726f2061646472","kind":"string","nativeSrc":"32435:34:1","nodeType":"YulLiteral","src":"32435:34:1","type":"","value":"ERC20: transfer to the zero addr"}],"functionName":{"name":"mstore","nativeSrc":"32408:6:1","nodeType":"YulIdentifier","src":"32408:6:1"},"nativeSrc":"32408:62:1","nodeType":"YulFunctionCall","src":"32408:62:1"},"nativeSrc":"32408:62:1","nodeType":"YulExpressionStatement","src":"32408:62:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"32490:9:1","nodeType":"YulIdentifier","src":"32490:9:1"},{"kind":"number","nativeSrc":"32501:2:1","nodeType":"YulLiteral","src":"32501:2:1","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"32486:3:1","nodeType":"YulIdentifier","src":"32486:3:1"},"nativeSrc":"32486:18:1","nodeType":"YulFunctionCall","src":"32486:18:1"},{"hexValue":"657373","kind":"string","nativeSrc":"32506:5:1","nodeType":"YulLiteral","src":"32506:5:1","type":"","value":"ess"}],"functionName":{"name":"mstore","nativeSrc":"32479:6:1","nodeType":"YulIdentifier","src":"32479:6:1"},"nativeSrc":"32479:33:1","nodeType":"YulFunctionCall","src":"32479:33:1"},"nativeSrc":"32479:33:1","nodeType":"YulExpressionStatement","src":"32479:33:1"},{"nativeSrc":"32521:27:1","nodeType":"YulAssignment","src":"32521:27:1","value":{"arguments":[{"name":"headStart","nativeSrc":"32533:9:1","nodeType":"YulIdentifier","src":"32533:9:1"},{"kind":"number","nativeSrc":"32544:3:1","nodeType":"YulLiteral","src":"32544:3:1","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"32529:3:1","nodeType":"YulIdentifier","src":"32529:3:1"},"nativeSrc":"32529:19:1","nodeType":"YulFunctionCall","src":"32529:19:1"},"variableNames":[{"name":"tail","nativeSrc":"32521:4:1","nodeType":"YulIdentifier","src":"32521:4:1"}]}]},"name":"abi_encode_tuple_t_stringliteral_0557e210f7a69a685100a7e4e3d0a7024c546085cee28910fd17d0b081d9516f__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"32155:399:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"32306:9:1","nodeType":"YulTypedName","src":"32306:9:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"32320:4:1","nodeType":"YulTypedName","src":"32320:4:1","type":""}],"src":"32155:399:1"},{"body":{"nativeSrc":"32733:228:1","nodeType":"YulBlock","src":"32733:228:1","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"32750:9:1","nodeType":"YulIdentifier","src":"32750:9:1"},{"kind":"number","nativeSrc":"32761:2:1","nodeType":"YulLiteral","src":"32761:2:1","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"32743:6:1","nodeType":"YulIdentifier","src":"32743:6:1"},"nativeSrc":"32743:21:1","nodeType":"YulFunctionCall","src":"32743:21:1"},"nativeSrc":"32743:21:1","nodeType":"YulExpressionStatement","src":"32743:21:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"32784:9:1","nodeType":"YulIdentifier","src":"32784:9:1"},{"kind":"number","nativeSrc":"32795:2:1","nodeType":"YulLiteral","src":"32795:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"32780:3:1","nodeType":"YulIdentifier","src":"32780:3:1"},"nativeSrc":"32780:18:1","nodeType":"YulFunctionCall","src":"32780:18:1"},{"kind":"number","nativeSrc":"32800:2:1","nodeType":"YulLiteral","src":"32800:2:1","type":"","value":"38"}],"functionName":{"name":"mstore","nativeSrc":"32773:6:1","nodeType":"YulIdentifier","src":"32773:6:1"},"nativeSrc":"32773:30:1","nodeType":"YulFunctionCall","src":"32773:30:1"},"nativeSrc":"32773:30:1","nodeType":"YulExpressionStatement","src":"32773:30:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"32823:9:1","nodeType":"YulIdentifier","src":"32823:9:1"},{"kind":"number","nativeSrc":"32834:2:1","nodeType":"YulLiteral","src":"32834:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"32819:3:1","nodeType":"YulIdentifier","src":"32819:3:1"},"nativeSrc":"32819:18:1","nodeType":"YulFunctionCall","src":"32819:18:1"},{"hexValue":"45524332303a207472616e7366657220616d6f756e7420657863656564732062","kind":"string","nativeSrc":"32839:34:1","nodeType":"YulLiteral","src":"32839:34:1","type":"","value":"ERC20: transfer amount exceeds b"}],"functionName":{"name":"mstore","nativeSrc":"32812:6:1","nodeType":"YulIdentifier","src":"32812:6:1"},"nativeSrc":"32812:62:1","nodeType":"YulFunctionCall","src":"32812:62:1"},"nativeSrc":"32812:62:1","nodeType":"YulExpressionStatement","src":"32812:62:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"32894:9:1","nodeType":"YulIdentifier","src":"32894:9:1"},{"kind":"number","nativeSrc":"32905:2:1","nodeType":"YulLiteral","src":"32905:2:1","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"32890:3:1","nodeType":"YulIdentifier","src":"32890:3:1"},"nativeSrc":"32890:18:1","nodeType":"YulFunctionCall","src":"32890:18:1"},{"hexValue":"616c616e6365","kind":"string","nativeSrc":"32910:8:1","nodeType":"YulLiteral","src":"32910:8:1","type":"","value":"alance"}],"functionName":{"name":"mstore","nativeSrc":"32883:6:1","nodeType":"YulIdentifier","src":"32883:6:1"},"nativeSrc":"32883:36:1","nodeType":"YulFunctionCall","src":"32883:36:1"},"nativeSrc":"32883:36:1","nodeType":"YulExpressionStatement","src":"32883:36:1"},{"nativeSrc":"32928:27:1","nodeType":"YulAssignment","src":"32928:27:1","value":{"arguments":[{"name":"headStart","nativeSrc":"32940:9:1","nodeType":"YulIdentifier","src":"32940:9:1"},{"kind":"number","nativeSrc":"32951:3:1","nodeType":"YulLiteral","src":"32951:3:1","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"32936:3:1","nodeType":"YulIdentifier","src":"32936:3:1"},"nativeSrc":"32936:19:1","nodeType":"YulFunctionCall","src":"32936:19:1"},"variableNames":[{"name":"tail","nativeSrc":"32928:4:1","nodeType":"YulIdentifier","src":"32928:4:1"}]}]},"name":"abi_encode_tuple_t_stringliteral_4107e8a8b9e94bf8ff83080ddec1c0bffe897ebc2241b89d44f66b3d274088b6__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"32559:402:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"32710:9:1","nodeType":"YulTypedName","src":"32710:9:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"32724:4:1","nodeType":"YulTypedName","src":"32724:4:1","type":""}],"src":"32559:402:1"},{"body":{"nativeSrc":"33112:143:1","nodeType":"YulBlock","src":"33112:143:1","statements":[{"nativeSrc":"33122:26:1","nodeType":"YulAssignment","src":"33122:26:1","value":{"arguments":[{"name":"headStart","nativeSrc":"33134:9:1","nodeType":"YulIdentifier","src":"33134:9:1"},{"kind":"number","nativeSrc":"33145:2:1","nodeType":"YulLiteral","src":"33145:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"33130:3:1","nodeType":"YulIdentifier","src":"33130:3:1"},"nativeSrc":"33130:18:1","nodeType":"YulFunctionCall","src":"33130:18:1"},"variableNames":[{"name":"tail","nativeSrc":"33122:4:1","nodeType":"YulIdentifier","src":"33122:4:1"}]},{"expression":{"arguments":[{"name":"headStart","nativeSrc":"33164:9:1","nodeType":"YulIdentifier","src":"33164:9:1"},{"name":"value0","nativeSrc":"33175:6:1","nodeType":"YulIdentifier","src":"33175:6:1"}],"functionName":{"name":"mstore","nativeSrc":"33157:6:1","nodeType":"YulIdentifier","src":"33157:6:1"},"nativeSrc":"33157:25:1","nodeType":"YulFunctionCall","src":"33157:25:1"},"nativeSrc":"33157:25:1","nodeType":"YulExpressionStatement","src":"33157:25:1"},{"expression":{"arguments":[{"name":"value1","nativeSrc":"33222:6:1","nodeType":"YulIdentifier","src":"33222:6:1"},{"arguments":[{"name":"headStart","nativeSrc":"33234:9:1","nodeType":"YulIdentifier","src":"33234:9:1"},{"kind":"number","nativeSrc":"33245:2:1","nodeType":"YulLiteral","src":"33245:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"33230:3:1","nodeType":"YulIdentifier","src":"33230:3:1"},"nativeSrc":"33230:18:1","nodeType":"YulFunctionCall","src":"33230:18:1"}],"functionName":{"name":"abi_encode_enum_DelegationType","nativeSrc":"33191:30:1","nodeType":"YulIdentifier","src":"33191:30:1"},"nativeSrc":"33191:58:1","nodeType":"YulFunctionCall","src":"33191:58:1"},"nativeSrc":"33191:58:1","nodeType":"YulExpressionStatement","src":"33191:58:1"}]},"name":"abi_encode_tuple_t_uint256_t_enum$_DelegationType_$1088__to_t_uint256_t_uint8__fromStack_reversed","nativeSrc":"32966:289:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"33073:9:1","nodeType":"YulTypedName","src":"33073:9:1","type":""},{"name":"value1","nativeSrc":"33084:6:1","nodeType":"YulTypedName","src":"33084:6:1","type":""},{"name":"value0","nativeSrc":"33092:6:1","nodeType":"YulTypedName","src":"33092:6:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"33103:4:1","nodeType":"YulTypedName","src":"33103:4:1","type":""}],"src":"32966:289:1"},{"body":{"nativeSrc":"33329:306:1","nodeType":"YulBlock","src":"33329:306:1","statements":[{"nativeSrc":"33339:10:1","nodeType":"YulAssignment","src":"33339:10:1","value":{"kind":"number","nativeSrc":"33348:1:1","nodeType":"YulLiteral","src":"33348:1:1","type":"","value":"1"},"variableNames":[{"name":"power","nativeSrc":"33339:5:1","nodeType":"YulIdentifier","src":"33339:5:1"}]},{"nativeSrc":"33358:13:1","nodeType":"YulAssignment","src":"33358:13:1","value":{"name":"_base","nativeSrc":"33366:5:1","nodeType":"YulIdentifier","src":"33366:5:1"},"variableNames":[{"name":"base","nativeSrc":"33358:4:1","nodeType":"YulIdentifier","src":"33358:4:1"}]},{"body":{"nativeSrc":"33416:213:1","nodeType":"YulBlock","src":"33416:213:1","statements":[{"body":{"nativeSrc":"33458:22:1","nodeType":"YulBlock","src":"33458:22:1","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"33460:16:1","nodeType":"YulIdentifier","src":"33460:16:1"},"nativeSrc":"33460:18:1","nodeType":"YulFunctionCall","src":"33460:18:1"},"nativeSrc":"33460:18:1","nodeType":"YulExpressionStatement","src":"33460:18:1"}]},"condition":{"arguments":[{"name":"base","nativeSrc":"33436:4:1","nodeType":"YulIdentifier","src":"33436:4:1"},{"arguments":[{"name":"max","nativeSrc":"33446:3:1","nodeType":"YulIdentifier","src":"33446:3:1"},{"name":"base","nativeSrc":"33451:4:1","nodeType":"YulIdentifier","src":"33451:4:1"}],"functionName":{"name":"div","nativeSrc":"33442:3:1","nodeType":"YulIdentifier","src":"33442:3:1"},"nativeSrc":"33442:14:1","nodeType":"YulFunctionCall","src":"33442:14:1"}],"functionName":{"name":"gt","nativeSrc":"33433:2:1","nodeType":"YulIdentifier","src":"33433:2:1"},"nativeSrc":"33433:24:1","nodeType":"YulFunctionCall","src":"33433:24:1"},"nativeSrc":"33430:50:1","nodeType":"YulIf","src":"33430:50:1"},{"body":{"nativeSrc":"33513:29:1","nodeType":"YulBlock","src":"33513:29:1","statements":[{"nativeSrc":"33515:25:1","nodeType":"YulAssignment","src":"33515:25:1","value":{"arguments":[{"name":"power","nativeSrc":"33528:5:1","nodeType":"YulIdentifier","src":"33528:5:1"},{"name":"base","nativeSrc":"33535:4:1","nodeType":"YulIdentifier","src":"33535:4:1"}],"functionName":{"name":"mul","nativeSrc":"33524:3:1","nodeType":"YulIdentifier","src":"33524:3:1"},"nativeSrc":"33524:16:1","nodeType":"YulFunctionCall","src":"33524:16:1"},"variableNames":[{"name":"power","nativeSrc":"33515:5:1","nodeType":"YulIdentifier","src":"33515:5:1"}]}]},"condition":{"arguments":[{"name":"exponent","nativeSrc":"33500:8:1","nodeType":"YulIdentifier","src":"33500:8:1"},{"kind":"number","nativeSrc":"33510:1:1","nodeType":"YulLiteral","src":"33510:1:1","type":"","value":"1"}],"functionName":{"name":"and","nativeSrc":"33496:3:1","nodeType":"YulIdentifier","src":"33496:3:1"},"nativeSrc":"33496:16:1","nodeType":"YulFunctionCall","src":"33496:16:1"},"nativeSrc":"33493:49:1","nodeType":"YulIf","src":"33493:49:1"},{"nativeSrc":"33555:23:1","nodeType":"YulAssignment","src":"33555:23:1","value":{"arguments":[{"name":"base","nativeSrc":"33567:4:1","nodeType":"YulIdentifier","src":"33567:4:1"},{"name":"base","nativeSrc":"33573:4:1","nodeType":"YulIdentifier","src":"33573:4:1"}],"functionName":{"name":"mul","nativeSrc":"33563:3:1","nodeType":"YulIdentifier","src":"33563:3:1"},"nativeSrc":"33563:15:1","nodeType":"YulFunctionCall","src":"33563:15:1"},"variableNames":[{"name":"base","nativeSrc":"33555:4:1","nodeType":"YulIdentifier","src":"33555:4:1"}]},{"nativeSrc":"33591:28:1","nodeType":"YulAssignment","src":"33591:28:1","value":{"arguments":[{"kind":"number","nativeSrc":"33607:1:1","nodeType":"YulLiteral","src":"33607:1:1","type":"","value":"1"},{"name":"exponent","nativeSrc":"33610:8:1","nodeType":"YulIdentifier","src":"33610:8:1"}],"functionName":{"name":"shr","nativeSrc":"33603:3:1","nodeType":"YulIdentifier","src":"33603:3:1"},"nativeSrc":"33603:16:1","nodeType":"YulFunctionCall","src":"33603:16:1"},"variableNames":[{"name":"exponent","nativeSrc":"33591:8:1","nodeType":"YulIdentifier","src":"33591:8:1"}]}]},"condition":{"arguments":[{"name":"exponent","nativeSrc":"33391:8:1","nodeType":"YulIdentifier","src":"33391:8:1"},{"kind":"number","nativeSrc":"33401:1:1","nodeType":"YulLiteral","src":"33401:1:1","type":"","value":"1"}],"functionName":{"name":"gt","nativeSrc":"33388:2:1","nodeType":"YulIdentifier","src":"33388:2:1"},"nativeSrc":"33388:15:1","nodeType":"YulFunctionCall","src":"33388:15:1"},"nativeSrc":"33380:249:1","nodeType":"YulForLoop","post":{"nativeSrc":"33404:3:1","nodeType":"YulBlock","src":"33404:3:1","statements":[]},"pre":{"nativeSrc":"33384:3:1","nodeType":"YulBlock","src":"33384:3:1","statements":[]},"src":"33380:249:1"}]},"name":"checked_exp_helper","nativeSrc":"33260:375:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"_base","nativeSrc":"33288:5:1","nodeType":"YulTypedName","src":"33288:5:1","type":""},{"name":"exponent","nativeSrc":"33295:8:1","nodeType":"YulTypedName","src":"33295:8:1","type":""},{"name":"max","nativeSrc":"33305:3:1","nodeType":"YulTypedName","src":"33305:3:1","type":""}],"returnVariables":[{"name":"power","nativeSrc":"33313:5:1","nodeType":"YulTypedName","src":"33313:5:1","type":""},{"name":"base","nativeSrc":"33320:4:1","nodeType":"YulTypedName","src":"33320:4:1","type":""}],"src":"33260:375:1"},{"body":{"nativeSrc":"33699:843:1","nodeType":"YulBlock","src":"33699:843:1","statements":[{"body":{"nativeSrc":"33737:52:1","nodeType":"YulBlock","src":"33737:52:1","statements":[{"nativeSrc":"33751:10:1","nodeType":"YulAssignment","src":"33751:10:1","value":{"kind":"number","nativeSrc":"33760:1:1","nodeType":"YulLiteral","src":"33760:1:1","type":"","value":"1"},"variableNames":[{"name":"power","nativeSrc":"33751:5:1","nodeType":"YulIdentifier","src":"33751:5:1"}]},{"nativeSrc":"33774:5:1","nodeType":"YulLeave","src":"33774:5:1"}]},"condition":{"arguments":[{"name":"exponent","nativeSrc":"33719:8:1","nodeType":"YulIdentifier","src":"33719:8:1"}],"functionName":{"name":"iszero","nativeSrc":"33712:6:1","nodeType":"YulIdentifier","src":"33712:6:1"},"nativeSrc":"33712:16:1","nodeType":"YulFunctionCall","src":"33712:16:1"},"nativeSrc":"33709:80:1","nodeType":"YulIf","src":"33709:80:1"},{"body":{"nativeSrc":"33822:52:1","nodeType":"YulBlock","src":"33822:52:1","statements":[{"nativeSrc":"33836:10:1","nodeType":"YulAssignment","src":"33836:10:1","value":{"kind":"number","nativeSrc":"33845:1:1","nodeType":"YulLiteral","src":"33845:1:1","type":"","value":"0"},"variableNames":[{"name":"power","nativeSrc":"33836:5:1","nodeType":"YulIdentifier","src":"33836:5:1"}]},{"nativeSrc":"33859:5:1","nodeType":"YulLeave","src":"33859:5:1"}]},"condition":{"arguments":[{"name":"base","nativeSrc":"33808:4:1","nodeType":"YulIdentifier","src":"33808:4:1"}],"functionName":{"name":"iszero","nativeSrc":"33801:6:1","nodeType":"YulIdentifier","src":"33801:6:1"},"nativeSrc":"33801:12:1","nodeType":"YulFunctionCall","src":"33801:12:1"},"nativeSrc":"33798:76:1","nodeType":"YulIf","src":"33798:76:1"},{"cases":[{"body":{"nativeSrc":"33910:52:1","nodeType":"YulBlock","src":"33910:52:1","statements":[{"nativeSrc":"33924:10:1","nodeType":"YulAssignment","src":"33924:10:1","value":{"kind":"number","nativeSrc":"33933:1:1","nodeType":"YulLiteral","src":"33933:1:1","type":"","value":"1"},"variableNames":[{"name":"power","nativeSrc":"33924:5:1","nodeType":"YulIdentifier","src":"33924:5:1"}]},{"nativeSrc":"33947:5:1","nodeType":"YulLeave","src":"33947:5:1"}]},"nativeSrc":"33903:59:1","nodeType":"YulCase","src":"33903:59:1","value":{"kind":"number","nativeSrc":"33908:1:1","nodeType":"YulLiteral","src":"33908:1:1","type":"","value":"1"}},{"body":{"nativeSrc":"33978:167:1","nodeType":"YulBlock","src":"33978:167:1","statements":[{"body":{"nativeSrc":"34013:22:1","nodeType":"YulBlock","src":"34013:22:1","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"34015:16:1","nodeType":"YulIdentifier","src":"34015:16:1"},"nativeSrc":"34015:18:1","nodeType":"YulFunctionCall","src":"34015:18:1"},"nativeSrc":"34015:18:1","nodeType":"YulExpressionStatement","src":"34015:18:1"}]},"condition":{"arguments":[{"name":"exponent","nativeSrc":"33998:8:1","nodeType":"YulIdentifier","src":"33998:8:1"},{"kind":"number","nativeSrc":"34008:3:1","nodeType":"YulLiteral","src":"34008:3:1","type":"","value":"255"}],"functionName":{"name":"gt","nativeSrc":"33995:2:1","nodeType":"YulIdentifier","src":"33995:2:1"},"nativeSrc":"33995:17:1","nodeType":"YulFunctionCall","src":"33995:17:1"},"nativeSrc":"33992:43:1","nodeType":"YulIf","src":"33992:43:1"},{"nativeSrc":"34048:25:1","nodeType":"YulAssignment","src":"34048:25:1","value":{"arguments":[{"name":"exponent","nativeSrc":"34061:8:1","nodeType":"YulIdentifier","src":"34061:8:1"},{"kind":"number","nativeSrc":"34071:1:1","nodeType":"YulLiteral","src":"34071:1:1","type":"","value":"1"}],"functionName":{"name":"shl","nativeSrc":"34057:3:1","nodeType":"YulIdentifier","src":"34057:3:1"},"nativeSrc":"34057:16:1","nodeType":"YulFunctionCall","src":"34057:16:1"},"variableNames":[{"name":"power","nativeSrc":"34048:5:1","nodeType":"YulIdentifier","src":"34048:5:1"}]},{"nativeSrc":"34086:11:1","nodeType":"YulVariableDeclaration","src":"34086:11:1","value":{"kind":"number","nativeSrc":"34096:1:1","nodeType":"YulLiteral","src":"34096:1:1","type":"","value":"0"},"variables":[{"name":"_1","nativeSrc":"34090:2:1","nodeType":"YulTypedName","src":"34090:2:1","type":""}]},{"nativeSrc":"34110:7:1","nodeType":"YulAssignment","src":"34110:7:1","value":{"kind":"number","nativeSrc":"34116:1:1","nodeType":"YulLiteral","src":"34116:1:1","type":"","value":"0"},"variableNames":[{"name":"_1","nativeSrc":"34110:2:1","nodeType":"YulIdentifier","src":"34110:2:1"}]},{"nativeSrc":"34130:5:1","nodeType":"YulLeave","src":"34130:5:1"}]},"nativeSrc":"33971:174:1","nodeType":"YulCase","src":"33971:174:1","value":{"kind":"number","nativeSrc":"33976:1:1","nodeType":"YulLiteral","src":"33976:1:1","type":"","value":"2"}}],"expression":{"name":"base","nativeSrc":"33890:4:1","nodeType":"YulIdentifier","src":"33890:4:1"},"nativeSrc":"33883:262:1","nodeType":"YulSwitch","src":"33883:262:1"},{"body":{"nativeSrc":"34243:114:1","nodeType":"YulBlock","src":"34243:114:1","statements":[{"nativeSrc":"34257:28:1","nodeType":"YulAssignment","src":"34257:28:1","value":{"arguments":[{"name":"base","nativeSrc":"34270:4:1","nodeType":"YulIdentifier","src":"34270:4:1"},{"name":"exponent","nativeSrc":"34276:8:1","nodeType":"YulIdentifier","src":"34276:8:1"}],"functionName":{"name":"exp","nativeSrc":"34266:3:1","nodeType":"YulIdentifier","src":"34266:3:1"},"nativeSrc":"34266:19:1","nodeType":"YulFunctionCall","src":"34266:19:1"},"variableNames":[{"name":"power","nativeSrc":"34257:5:1","nodeType":"YulIdentifier","src":"34257:5:1"}]},{"nativeSrc":"34298:11:1","nodeType":"YulVariableDeclaration","src":"34298:11:1","value":{"kind":"number","nativeSrc":"34308:1:1","nodeType":"YulLiteral","src":"34308:1:1","type":"","value":"0"},"variables":[{"name":"_2","nativeSrc":"34302:2:1","nodeType":"YulTypedName","src":"34302:2:1","type":""}]},{"nativeSrc":"34322:7:1","nodeType":"YulAssignment","src":"34322:7:1","value":{"kind":"number","nativeSrc":"34328:1:1","nodeType":"YulLiteral","src":"34328:1:1","type":"","value":"0"},"variableNames":[{"name":"_2","nativeSrc":"34322:2:1","nodeType":"YulIdentifier","src":"34322:2:1"}]},{"nativeSrc":"34342:5:1","nodeType":"YulLeave","src":"34342:5:1"}]},"condition":{"arguments":[{"arguments":[{"arguments":[{"name":"base","nativeSrc":"34167:4:1","nodeType":"YulIdentifier","src":"34167:4:1"},{"kind":"number","nativeSrc":"34173:2:1","nodeType":"YulLiteral","src":"34173:2:1","type":"","value":"11"}],"functionName":{"name":"lt","nativeSrc":"34164:2:1","nodeType":"YulIdentifier","src":"34164:2:1"},"nativeSrc":"34164:12:1","nodeType":"YulFunctionCall","src":"34164:12:1"},{"arguments":[{"name":"exponent","nativeSrc":"34181:8:1","nodeType":"YulIdentifier","src":"34181:8:1"},{"kind":"number","nativeSrc":"34191:2:1","nodeType":"YulLiteral","src":"34191:2:1","type":"","value":"78"}],"functionName":{"name":"lt","nativeSrc":"34178:2:1","nodeType":"YulIdentifier","src":"34178:2:1"},"nativeSrc":"34178:16:1","nodeType":"YulFunctionCall","src":"34178:16:1"}],"functionName":{"name":"and","nativeSrc":"34160:3:1","nodeType":"YulIdentifier","src":"34160:3:1"},"nativeSrc":"34160:35:1","nodeType":"YulFunctionCall","src":"34160:35:1"},{"arguments":[{"arguments":[{"name":"base","nativeSrc":"34204:4:1","nodeType":"YulIdentifier","src":"34204:4:1"},{"kind":"number","nativeSrc":"34210:3:1","nodeType":"YulLiteral","src":"34210:3:1","type":"","value":"307"}],"functionName":{"name":"lt","nativeSrc":"34201:2:1","nodeType":"YulIdentifier","src":"34201:2:1"},"nativeSrc":"34201:13:1","nodeType":"YulFunctionCall","src":"34201:13:1"},{"arguments":[{"name":"exponent","nativeSrc":"34219:8:1","nodeType":"YulIdentifier","src":"34219:8:1"},{"kind":"number","nativeSrc":"34229:2:1","nodeType":"YulLiteral","src":"34229:2:1","type":"","value":"32"}],"functionName":{"name":"lt","nativeSrc":"34216:2:1","nodeType":"YulIdentifier","src":"34216:2:1"},"nativeSrc":"34216:16:1","nodeType":"YulFunctionCall","src":"34216:16:1"}],"functionName":{"name":"and","nativeSrc":"34197:3:1","nodeType":"YulIdentifier","src":"34197:3:1"},"nativeSrc":"34197:36:1","nodeType":"YulFunctionCall","src":"34197:36:1"}],"functionName":{"name":"or","nativeSrc":"34157:2:1","nodeType":"YulIdentifier","src":"34157:2:1"},"nativeSrc":"34157:77:1","nodeType":"YulFunctionCall","src":"34157:77:1"},"nativeSrc":"34154:203:1","nodeType":"YulIf","src":"34154:203:1"},{"nativeSrc":"34366:65:1","nodeType":"YulVariableDeclaration","src":"34366:65:1","value":{"arguments":[{"name":"base","nativeSrc":"34408:4:1","nodeType":"YulIdentifier","src":"34408:4:1"},{"name":"exponent","nativeSrc":"34414:8:1","nodeType":"YulIdentifier","src":"34414:8:1"},{"arguments":[{"kind":"number","nativeSrc":"34428:1:1","nodeType":"YulLiteral","src":"34428:1:1","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"34424:3:1","nodeType":"YulIdentifier","src":"34424:3:1"},"nativeSrc":"34424:6:1","nodeType":"YulFunctionCall","src":"34424:6:1"}],"functionName":{"name":"checked_exp_helper","nativeSrc":"34389:18:1","nodeType":"YulIdentifier","src":"34389:18:1"},"nativeSrc":"34389:42:1","nodeType":"YulFunctionCall","src":"34389:42:1"},"variables":[{"name":"power_1","nativeSrc":"34370:7:1","nodeType":"YulTypedName","src":"34370:7:1","type":""},{"name":"base_1","nativeSrc":"34379:6:1","nodeType":"YulTypedName","src":"34379:6:1","type":""}]},{"body":{"nativeSrc":"34476:22:1","nodeType":"YulBlock","src":"34476:22:1","statements":[{"expression":{"arguments":[],"functionName":{"name":"panic_error_0x11","nativeSrc":"34478:16:1","nodeType":"YulIdentifier","src":"34478:16:1"},"nativeSrc":"34478:18:1","nodeType":"YulFunctionCall","src":"34478:18:1"},"nativeSrc":"34478:18:1","nodeType":"YulExpressionStatement","src":"34478:18:1"}]},"condition":{"arguments":[{"name":"power_1","nativeSrc":"34446:7:1","nodeType":"YulIdentifier","src":"34446:7:1"},{"arguments":[{"arguments":[{"kind":"number","nativeSrc":"34463:1:1","nodeType":"YulLiteral","src":"34463:1:1","type":"","value":"0"}],"functionName":{"name":"not","nativeSrc":"34459:3:1","nodeType":"YulIdentifier","src":"34459:3:1"},"nativeSrc":"34459:6:1","nodeType":"YulFunctionCall","src":"34459:6:1"},{"name":"base_1","nativeSrc":"34467:6:1","nodeType":"YulIdentifier","src":"34467:6:1"}],"functionName":{"name":"div","nativeSrc":"34455:3:1","nodeType":"YulIdentifier","src":"34455:3:1"},"nativeSrc":"34455:19:1","nodeType":"YulFunctionCall","src":"34455:19:1"}],"functionName":{"name":"gt","nativeSrc":"34443:2:1","nodeType":"YulIdentifier","src":"34443:2:1"},"nativeSrc":"34443:32:1","nodeType":"YulFunctionCall","src":"34443:32:1"},"nativeSrc":"34440:58:1","nodeType":"YulIf","src":"34440:58:1"},{"nativeSrc":"34507:29:1","nodeType":"YulAssignment","src":"34507:29:1","value":{"arguments":[{"name":"power_1","nativeSrc":"34520:7:1","nodeType":"YulIdentifier","src":"34520:7:1"},{"name":"base_1","nativeSrc":"34529:6:1","nodeType":"YulIdentifier","src":"34529:6:1"}],"functionName":{"name":"mul","nativeSrc":"34516:3:1","nodeType":"YulIdentifier","src":"34516:3:1"},"nativeSrc":"34516:20:1","nodeType":"YulFunctionCall","src":"34516:20:1"},"variableNames":[{"name":"power","nativeSrc":"34507:5:1","nodeType":"YulIdentifier","src":"34507:5:1"}]}]},"name":"checked_exp_unsigned","nativeSrc":"33640:902:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"base","nativeSrc":"33670:4:1","nodeType":"YulTypedName","src":"33670:4:1","type":""},{"name":"exponent","nativeSrc":"33676:8:1","nodeType":"YulTypedName","src":"33676:8:1","type":""}],"returnVariables":[{"name":"power","nativeSrc":"33689:5:1","nodeType":"YulTypedName","src":"33689:5:1","type":""}],"src":"33640:902:1"},{"body":{"nativeSrc":"34617:61:1","nodeType":"YulBlock","src":"34617:61:1","statements":[{"nativeSrc":"34627:45:1","nodeType":"YulAssignment","src":"34627:45:1","value":{"arguments":[{"name":"base","nativeSrc":"34657:4:1","nodeType":"YulIdentifier","src":"34657:4:1"},{"name":"exponent","nativeSrc":"34663:8:1","nodeType":"YulIdentifier","src":"34663:8:1"}],"functionName":{"name":"checked_exp_unsigned","nativeSrc":"34636:20:1","nodeType":"YulIdentifier","src":"34636:20:1"},"nativeSrc":"34636:36:1","nodeType":"YulFunctionCall","src":"34636:36:1"},"variableNames":[{"name":"power","nativeSrc":"34627:5:1","nodeType":"YulIdentifier","src":"34627:5:1"}]}]},"name":"checked_exp_t_uint256_t_uint256","nativeSrc":"34547:131:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"base","nativeSrc":"34588:4:1","nodeType":"YulTypedName","src":"34588:4:1","type":""},{"name":"exponent","nativeSrc":"34594:8:1","nodeType":"YulTypedName","src":"34594:8:1","type":""}],"returnVariables":[{"name":"power","nativeSrc":"34607:5:1","nodeType":"YulTypedName","src":"34607:5:1","type":""}],"src":"34547:131:1"},{"body":{"nativeSrc":"34857:177:1","nodeType":"YulBlock","src":"34857:177:1","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"34874:9:1","nodeType":"YulIdentifier","src":"34874:9:1"},{"kind":"number","nativeSrc":"34885:2:1","nodeType":"YulLiteral","src":"34885:2:1","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"34867:6:1","nodeType":"YulIdentifier","src":"34867:6:1"},"nativeSrc":"34867:21:1","nodeType":"YulFunctionCall","src":"34867:21:1"},"nativeSrc":"34867:21:1","nodeType":"YulExpressionStatement","src":"34867:21:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"34908:9:1","nodeType":"YulIdentifier","src":"34908:9:1"},{"kind":"number","nativeSrc":"34919:2:1","nodeType":"YulLiteral","src":"34919:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"34904:3:1","nodeType":"YulIdentifier","src":"34904:3:1"},"nativeSrc":"34904:18:1","nodeType":"YulFunctionCall","src":"34904:18:1"},{"kind":"number","nativeSrc":"34924:2:1","nodeType":"YulLiteral","src":"34924:2:1","type":"","value":"27"}],"functionName":{"name":"mstore","nativeSrc":"34897:6:1","nodeType":"YulIdentifier","src":"34897:6:1"},"nativeSrc":"34897:30:1","nodeType":"YulFunctionCall","src":"34897:30:1"},"nativeSrc":"34897:30:1","nodeType":"YulExpressionStatement","src":"34897:30:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"34947:9:1","nodeType":"YulIdentifier","src":"34947:9:1"},{"kind":"number","nativeSrc":"34958:2:1","nodeType":"YulLiteral","src":"34958:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"34943:3:1","nodeType":"YulIdentifier","src":"34943:3:1"},"nativeSrc":"34943:18:1","nodeType":"YulFunctionCall","src":"34943:18:1"},{"hexValue":"41444d494e5f43414e4e4f545f42455f494e495449414c495a4544","kind":"string","nativeSrc":"34963:29:1","nodeType":"YulLiteral","src":"34963:29:1","type":"","value":"ADMIN_CANNOT_BE_INITIALIZED"}],"functionName":{"name":"mstore","nativeSrc":"34936:6:1","nodeType":"YulIdentifier","src":"34936:6:1"},"nativeSrc":"34936:57:1","nodeType":"YulFunctionCall","src":"34936:57:1"},"nativeSrc":"34936:57:1","nodeType":"YulExpressionStatement","src":"34936:57:1"},{"nativeSrc":"35002:26:1","nodeType":"YulAssignment","src":"35002:26:1","value":{"arguments":[{"name":"headStart","nativeSrc":"35014:9:1","nodeType":"YulIdentifier","src":"35014:9:1"},{"kind":"number","nativeSrc":"35025:2:1","nodeType":"YulLiteral","src":"35025:2:1","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"35010:3:1","nodeType":"YulIdentifier","src":"35010:3:1"},"nativeSrc":"35010:18:1","nodeType":"YulFunctionCall","src":"35010:18:1"},"variableNames":[{"name":"tail","nativeSrc":"35002:4:1","nodeType":"YulIdentifier","src":"35002:4:1"}]}]},"name":"abi_encode_tuple_t_stringliteral_b2af192d647f8b8a9f94a546a11b40d3536722e4b74d77e3330eb171e0c93079__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"34683:351:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"34834:9:1","nodeType":"YulTypedName","src":"34834:9:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"34848:4:1","nodeType":"YulTypedName","src":"34848:4:1","type":""}],"src":"34683:351:1"},{"body":{"nativeSrc":"35213:181:1","nodeType":"YulBlock","src":"35213:181:1","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"35230:9:1","nodeType":"YulIdentifier","src":"35230:9:1"},{"kind":"number","nativeSrc":"35241:2:1","nodeType":"YulLiteral","src":"35241:2:1","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"35223:6:1","nodeType":"YulIdentifier","src":"35223:6:1"},"nativeSrc":"35223:21:1","nodeType":"YulFunctionCall","src":"35223:21:1"},"nativeSrc":"35223:21:1","nodeType":"YulExpressionStatement","src":"35223:21:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"35264:9:1","nodeType":"YulIdentifier","src":"35264:9:1"},{"kind":"number","nativeSrc":"35275:2:1","nodeType":"YulLiteral","src":"35275:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"35260:3:1","nodeType":"YulIdentifier","src":"35260:3:1"},"nativeSrc":"35260:18:1","nodeType":"YulFunctionCall","src":"35260:18:1"},{"kind":"number","nativeSrc":"35280:2:1","nodeType":"YulLiteral","src":"35280:2:1","type":"","value":"31"}],"functionName":{"name":"mstore","nativeSrc":"35253:6:1","nodeType":"YulIdentifier","src":"35253:6:1"},"nativeSrc":"35253:30:1","nodeType":"YulFunctionCall","src":"35253:30:1"},"nativeSrc":"35253:30:1","nodeType":"YulExpressionStatement","src":"35253:30:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"35303:9:1","nodeType":"YulIdentifier","src":"35303:9:1"},{"kind":"number","nativeSrc":"35314:2:1","nodeType":"YulLiteral","src":"35314:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"35299:3:1","nodeType":"YulIdentifier","src":"35299:3:1"},"nativeSrc":"35299:18:1","nodeType":"YulFunctionCall","src":"35299:18:1"},{"hexValue":"45524332303a206d696e7420746f20746865207a65726f2061646472657373","kind":"string","nativeSrc":"35319:33:1","nodeType":"YulLiteral","src":"35319:33:1","type":"","value":"ERC20: mint to the zero address"}],"functionName":{"name":"mstore","nativeSrc":"35292:6:1","nodeType":"YulIdentifier","src":"35292:6:1"},"nativeSrc":"35292:61:1","nodeType":"YulFunctionCall","src":"35292:61:1"},"nativeSrc":"35292:61:1","nodeType":"YulExpressionStatement","src":"35292:61:1"},{"nativeSrc":"35362:26:1","nodeType":"YulAssignment","src":"35362:26:1","value":{"arguments":[{"name":"headStart","nativeSrc":"35374:9:1","nodeType":"YulIdentifier","src":"35374:9:1"},{"kind":"number","nativeSrc":"35385:2:1","nodeType":"YulLiteral","src":"35385:2:1","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"35370:3:1","nodeType":"YulIdentifier","src":"35370:3:1"},"nativeSrc":"35370:18:1","nodeType":"YulFunctionCall","src":"35370:18:1"},"variableNames":[{"name":"tail","nativeSrc":"35362:4:1","nodeType":"YulIdentifier","src":"35362:4:1"}]}]},"name":"abi_encode_tuple_t_stringliteral_fc0b381caf0a47702017f3c4b358ebe3d3aff6c60ce819a8bf3ef5a95d4f202e__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"35039:355:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"35190:9:1","nodeType":"YulTypedName","src":"35190:9:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"35204:4:1","nodeType":"YulTypedName","src":"35204:4:1","type":""}],"src":"35039:355:1"},{"body":{"nativeSrc":"35573:228:1","nodeType":"YulBlock","src":"35573:228:1","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"35590:9:1","nodeType":"YulIdentifier","src":"35590:9:1"},{"kind":"number","nativeSrc":"35601:2:1","nodeType":"YulLiteral","src":"35601:2:1","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"35583:6:1","nodeType":"YulIdentifier","src":"35583:6:1"},"nativeSrc":"35583:21:1","nodeType":"YulFunctionCall","src":"35583:21:1"},"nativeSrc":"35583:21:1","nodeType":"YulExpressionStatement","src":"35583:21:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"35624:9:1","nodeType":"YulIdentifier","src":"35624:9:1"},{"kind":"number","nativeSrc":"35635:2:1","nodeType":"YulLiteral","src":"35635:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"35620:3:1","nodeType":"YulIdentifier","src":"35620:3:1"},"nativeSrc":"35620:18:1","nodeType":"YulFunctionCall","src":"35620:18:1"},{"kind":"number","nativeSrc":"35640:2:1","nodeType":"YulLiteral","src":"35640:2:1","type":"","value":"38"}],"functionName":{"name":"mstore","nativeSrc":"35613:6:1","nodeType":"YulIdentifier","src":"35613:6:1"},"nativeSrc":"35613:30:1","nodeType":"YulFunctionCall","src":"35613:30:1"},"nativeSrc":"35613:30:1","nodeType":"YulExpressionStatement","src":"35613:30:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"35663:9:1","nodeType":"YulIdentifier","src":"35663:9:1"},{"kind":"number","nativeSrc":"35674:2:1","nodeType":"YulLiteral","src":"35674:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"35659:3:1","nodeType":"YulIdentifier","src":"35659:3:1"},"nativeSrc":"35659:18:1","nodeType":"YulFunctionCall","src":"35659:18:1"},{"hexValue":"416464726573733a20696e73756666696369656e742062616c616e636520666f","kind":"string","nativeSrc":"35679:34:1","nodeType":"YulLiteral","src":"35679:34:1","type":"","value":"Address: insufficient balance fo"}],"functionName":{"name":"mstore","nativeSrc":"35652:6:1","nodeType":"YulIdentifier","src":"35652:6:1"},"nativeSrc":"35652:62:1","nodeType":"YulFunctionCall","src":"35652:62:1"},"nativeSrc":"35652:62:1","nodeType":"YulExpressionStatement","src":"35652:62:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"35734:9:1","nodeType":"YulIdentifier","src":"35734:9:1"},{"kind":"number","nativeSrc":"35745:2:1","nodeType":"YulLiteral","src":"35745:2:1","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"35730:3:1","nodeType":"YulIdentifier","src":"35730:3:1"},"nativeSrc":"35730:18:1","nodeType":"YulFunctionCall","src":"35730:18:1"},{"hexValue":"722063616c6c","kind":"string","nativeSrc":"35750:8:1","nodeType":"YulLiteral","src":"35750:8:1","type":"","value":"r call"}],"functionName":{"name":"mstore","nativeSrc":"35723:6:1","nodeType":"YulIdentifier","src":"35723:6:1"},"nativeSrc":"35723:36:1","nodeType":"YulFunctionCall","src":"35723:36:1"},"nativeSrc":"35723:36:1","nodeType":"YulExpressionStatement","src":"35723:36:1"},{"nativeSrc":"35768:27:1","nodeType":"YulAssignment","src":"35768:27:1","value":{"arguments":[{"name":"headStart","nativeSrc":"35780:9:1","nodeType":"YulIdentifier","src":"35780:9:1"},{"kind":"number","nativeSrc":"35791:3:1","nodeType":"YulLiteral","src":"35791:3:1","type":"","value":"128"}],"functionName":{"name":"add","nativeSrc":"35776:3:1","nodeType":"YulIdentifier","src":"35776:3:1"},"nativeSrc":"35776:19:1","nodeType":"YulFunctionCall","src":"35776:19:1"},"variableNames":[{"name":"tail","nativeSrc":"35768:4:1","nodeType":"YulIdentifier","src":"35768:4:1"}]}]},"name":"abi_encode_tuple_t_stringliteral_565f1a77334fc4792800921178c71e4521acffab18ff9e7885b49377ee80ab4c__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"35399:402:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"35550:9:1","nodeType":"YulTypedName","src":"35550:9:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"35564:4:1","nodeType":"YulTypedName","src":"35564:4:1","type":""}],"src":"35399:402:1"},{"body":{"nativeSrc":"35943:150:1","nodeType":"YulBlock","src":"35943:150:1","statements":[{"nativeSrc":"35953:27:1","nodeType":"YulVariableDeclaration","src":"35953:27:1","value":{"arguments":[{"name":"value0","nativeSrc":"35973:6:1","nodeType":"YulIdentifier","src":"35973:6:1"}],"functionName":{"name":"mload","nativeSrc":"35967:5:1","nodeType":"YulIdentifier","src":"35967:5:1"},"nativeSrc":"35967:13:1","nodeType":"YulFunctionCall","src":"35967:13:1"},"variables":[{"name":"length","nativeSrc":"35957:6:1","nodeType":"YulTypedName","src":"35957:6:1","type":""}]},{"expression":{"arguments":[{"arguments":[{"name":"value0","nativeSrc":"36028:6:1","nodeType":"YulIdentifier","src":"36028:6:1"},{"kind":"number","nativeSrc":"36036:4:1","nodeType":"YulLiteral","src":"36036:4:1","type":"","value":"0x20"}],"functionName":{"name":"add","nativeSrc":"36024:3:1","nodeType":"YulIdentifier","src":"36024:3:1"},"nativeSrc":"36024:17:1","nodeType":"YulFunctionCall","src":"36024:17:1"},{"name":"pos","nativeSrc":"36043:3:1","nodeType":"YulIdentifier","src":"36043:3:1"},{"name":"length","nativeSrc":"36048:6:1","nodeType":"YulIdentifier","src":"36048:6:1"}],"functionName":{"name":"copy_memory_to_memory_with_cleanup","nativeSrc":"35989:34:1","nodeType":"YulIdentifier","src":"35989:34:1"},"nativeSrc":"35989:66:1","nodeType":"YulFunctionCall","src":"35989:66:1"},"nativeSrc":"35989:66:1","nodeType":"YulExpressionStatement","src":"35989:66:1"},{"nativeSrc":"36064:23:1","nodeType":"YulAssignment","src":"36064:23:1","value":{"arguments":[{"name":"pos","nativeSrc":"36075:3:1","nodeType":"YulIdentifier","src":"36075:3:1"},{"name":"length","nativeSrc":"36080:6:1","nodeType":"YulIdentifier","src":"36080:6:1"}],"functionName":{"name":"add","nativeSrc":"36071:3:1","nodeType":"YulIdentifier","src":"36071:3:1"},"nativeSrc":"36071:16:1","nodeType":"YulFunctionCall","src":"36071:16:1"},"variableNames":[{"name":"end","nativeSrc":"36064:3:1","nodeType":"YulIdentifier","src":"36064:3:1"}]}]},"name":"abi_encode_tuple_packed_t_bytes_memory_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed","nativeSrc":"35806:287:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"pos","nativeSrc":"35919:3:1","nodeType":"YulTypedName","src":"35919:3:1","type":""},{"name":"value0","nativeSrc":"35924:6:1","nodeType":"YulTypedName","src":"35924:6:1","type":""}],"returnVariables":[{"name":"end","nativeSrc":"35935:3:1","nodeType":"YulTypedName","src":"35935:3:1","type":""}],"src":"35806:287:1"},{"body":{"nativeSrc":"36272:179:1","nodeType":"YulBlock","src":"36272:179:1","statements":[{"expression":{"arguments":[{"name":"headStart","nativeSrc":"36289:9:1","nodeType":"YulIdentifier","src":"36289:9:1"},{"kind":"number","nativeSrc":"36300:2:1","nodeType":"YulLiteral","src":"36300:2:1","type":"","value":"32"}],"functionName":{"name":"mstore","nativeSrc":"36282:6:1","nodeType":"YulIdentifier","src":"36282:6:1"},"nativeSrc":"36282:21:1","nodeType":"YulFunctionCall","src":"36282:21:1"},"nativeSrc":"36282:21:1","nodeType":"YulExpressionStatement","src":"36282:21:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"36323:9:1","nodeType":"YulIdentifier","src":"36323:9:1"},{"kind":"number","nativeSrc":"36334:2:1","nodeType":"YulLiteral","src":"36334:2:1","type":"","value":"32"}],"functionName":{"name":"add","nativeSrc":"36319:3:1","nodeType":"YulIdentifier","src":"36319:3:1"},"nativeSrc":"36319:18:1","nodeType":"YulFunctionCall","src":"36319:18:1"},{"kind":"number","nativeSrc":"36339:2:1","nodeType":"YulLiteral","src":"36339:2:1","type":"","value":"29"}],"functionName":{"name":"mstore","nativeSrc":"36312:6:1","nodeType":"YulIdentifier","src":"36312:6:1"},"nativeSrc":"36312:30:1","nodeType":"YulFunctionCall","src":"36312:30:1"},"nativeSrc":"36312:30:1","nodeType":"YulExpressionStatement","src":"36312:30:1"},{"expression":{"arguments":[{"arguments":[{"name":"headStart","nativeSrc":"36362:9:1","nodeType":"YulIdentifier","src":"36362:9:1"},{"kind":"number","nativeSrc":"36373:2:1","nodeType":"YulLiteral","src":"36373:2:1","type":"","value":"64"}],"functionName":{"name":"add","nativeSrc":"36358:3:1","nodeType":"YulIdentifier","src":"36358:3:1"},"nativeSrc":"36358:18:1","nodeType":"YulFunctionCall","src":"36358:18:1"},{"hexValue":"416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374","kind":"string","nativeSrc":"36378:31:1","nodeType":"YulLiteral","src":"36378:31:1","type":"","value":"Address: call to non-contract"}],"functionName":{"name":"mstore","nativeSrc":"36351:6:1","nodeType":"YulIdentifier","src":"36351:6:1"},"nativeSrc":"36351:59:1","nodeType":"YulFunctionCall","src":"36351:59:1"},"nativeSrc":"36351:59:1","nodeType":"YulExpressionStatement","src":"36351:59:1"},{"nativeSrc":"36419:26:1","nodeType":"YulAssignment","src":"36419:26:1","value":{"arguments":[{"name":"headStart","nativeSrc":"36431:9:1","nodeType":"YulIdentifier","src":"36431:9:1"},{"kind":"number","nativeSrc":"36442:2:1","nodeType":"YulLiteral","src":"36442:2:1","type":"","value":"96"}],"functionName":{"name":"add","nativeSrc":"36427:3:1","nodeType":"YulIdentifier","src":"36427:3:1"},"nativeSrc":"36427:18:1","nodeType":"YulFunctionCall","src":"36427:18:1"},"variableNames":[{"name":"tail","nativeSrc":"36419:4:1","nodeType":"YulIdentifier","src":"36419:4:1"}]}]},"name":"abi_encode_tuple_t_stringliteral_cc2e4e38850b7c0a3e942cfed89b71c77302df25bcb2ec297a0c4ff9ff6b90ad__to_t_string_memory_ptr__fromStack_reversed","nativeSrc":"36098:353:1","nodeType":"YulFunctionDefinition","parameters":[{"name":"headStart","nativeSrc":"36249:9:1","nodeType":"YulTypedName","src":"36249:9:1","type":""}],"returnVariables":[{"name":"tail","nativeSrc":"36263:4:1","nodeType":"YulTypedName","src":"36263:4:1","type":""}],"src":"36098:353:1"}]},"contents":"{\n    { }\n    function abi_decode_address(offset) -> value\n    {\n        value := calldataload(offset)\n        if iszero(eq(value, and(value, sub(shl(160, 1), 1)))) { revert(0, 0) }\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        let value := 0\n        value := calldataload(add(headStart, 32))\n        value1 := value\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 copy_memory_to_memory_with_cleanup(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        mstore(add(dst, length), 0)\n    }\n    function abi_encode_string(value, pos) -> end\n    {\n        let length := mload(value)\n        mstore(pos, length)\n        copy_memory_to_memory_with_cleanup(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__to_t_string_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n    {\n        mstore(headStart, 32)\n        tail := abi_encode_string(value0, add(headStart, 32))\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_encode_tuple_t_uint40_t_uint216__to_t_uint40_t_uint216__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(value0, 0xffffffffff))\n        mstore(add(headStart, 32), and(value1, sub(shl(216, 1), 1)))\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_decode_tuple_t_uint256(headStart, dataEnd) -> value0\n    {\n        if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n        let value := 0\n        value := calldataload(headStart)\n        value0 := value\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, sub(shl(160, 1), 1)))\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        let value := 0\n        value := calldataload(add(headStart, 64))\n        value2 := value\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_contract$_IERC20_$77__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_uint8__to_t_uint8__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xff))\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_encode_tuple_t_uint216__to_t_uint216__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, sub(shl(216, 1), 1)))\n    }\n    function abi_encode_tuple_t_uint128_t_uint128__to_t_uint128_t_uint128__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffff))\n        mstore(add(headStart, 32), and(value1, 0xffffffffffffffffffffffffffffffff))\n    }\n    function abi_decode_enum_DelegationType(offset) -> value\n    {\n        value := calldataload(offset)\n        if iszero(lt(value, 2)) { revert(0, 0) }\n    }\n    function abi_decode_tuple_t_addresst_enum$_DelegationType_$1088(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_enum_DelegationType(add(headStart, 32))\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_string(value0, add(headStart, 32))\n    }\n    function abi_decode_tuple_t_addresst_addresst_uint256t_uint256(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        let value := 0\n        value := calldataload(add(headStart, 64))\n        value2 := value\n        let value_1 := 0\n        value_1 := calldataload(add(headStart, 96))\n        value3 := value_1\n    }\n    function abi_decode_tuple_t_addresst_addresst_addresst_uint256t_uint256(headStart, dataEnd) -> value0, value1, value2, value3, value4\n    {\n        if slt(sub(dataEnd, headStart), 160) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        value1 := abi_decode_address(add(headStart, 32))\n        value2 := abi_decode_address(add(headStart, 64))\n        let value := 0\n        value := calldataload(add(headStart, 96))\n        value3 := value\n        let value_1 := 0\n        value_1 := calldataload(add(headStart, 128))\n        value4 := value_1\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        let value := 0\n        value := calldataload(headStart)\n        value0 := value\n        value1 := abi_decode_address(add(headStart, 32))\n    }\n    function panic_error_0x41()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x41)\n        revert(0, 0x24)\n    }\n    function allocate_memory_4360() -> memPtr\n    {\n        memPtr := mload(64)\n        let newFreePtr := add(memPtr, 0x60)\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), not(31)))\n        if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n        mstore(64, newFreePtr)\n    }\n    function abi_decode_tuple_t_array$_t_struct$_AssetConfigInput_$129_memory_ptr_$dyn_memory_ptr(headStart, dataEnd) -> value0\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 _1 := add(headStart, offset)\n        if iszero(slt(add(_1, 0x1f), dataEnd)) { revert(0, 0) }\n        let length := calldataload(_1)\n        if gt(length, 0xffffffffffffffff) { panic_error_0x41() }\n        let dst := allocate_memory(add(shl(5, length), 32))\n        let array := dst\n        mstore(dst, length)\n        dst := add(dst, 32)\n        let srcEnd := add(add(_1, mul(length, 0x60)), 32)\n        if gt(srcEnd, dataEnd) { revert(0, 0) }\n        let src := add(_1, 32)\n        for { } lt(src, srcEnd) { src := add(src, 0x60) }\n        {\n            if slt(sub(dataEnd, src), 0x60) { revert(0, 0) }\n            let value := allocate_memory_4360()\n            let value_1 := calldataload(src)\n            if iszero(eq(value_1, and(value_1, 0xffffffffffffffffffffffffffffffff))) { revert(0, 0) }\n            mstore(value, value_1)\n            let value_2 := 0\n            value_2 := calldataload(add(src, 32))\n            mstore(add(value, 32), value_2)\n            mstore(add(value, 64), abi_decode_address(add(src, 64)))\n            mstore(dst, value)\n            dst := add(dst, 32)\n        }\n        value0 := array\n    }\n    function abi_decode_tuple_t_addresst_uint256t_enum$_DelegationType_$1088(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        let value := 0\n        value := calldataload(add(headStart, 32))\n        value1 := value\n        value2 := abi_decode_enum_DelegationType(add(headStart, 64))\n    }\n    function abi_encode_tuple_t_contract$_ITransferHook_$1885__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_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_addresst_uint256t_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        let value := 0\n        value := calldataload(add(headStart, 32))\n        value1 := value\n        let value_1 := 0\n        value_1 := calldataload(add(headStart, 64))\n        value2 := value_1\n        value3 := abi_decode_uint8(add(headStart, 96))\n        let value_2 := 0\n        value_2 := calldataload(add(headStart, 128))\n        value4 := value_2\n        let value_3 := 0\n        value_3 := calldataload(add(headStart, 160))\n        value5 := value_3\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        let value := 0\n        value := calldataload(add(headStart, 64))\n        value2 := value\n        let value_1 := 0\n        value_1 := calldataload(add(headStart, 96))\n        value3 := value_1\n        value4 := abi_decode_uint8(add(headStart, 128))\n        let value_2 := 0\n        value_2 := calldataload(add(headStart, 160))\n        value5 := value_2\n        let value_3 := 0\n        value_3 := calldataload(add(headStart, 192))\n        value6 := value_3\n    }\n    function abi_decode_tuple_t_addresst_uint256t_uint256(headStart, dataEnd) -> value0, value1, value2\n    {\n        if slt(sub(dataEnd, headStart), 96) { revert(0, 0) }\n        value0 := abi_decode_address(headStart)\n        let value := 0\n        value := calldataload(add(headStart, 32))\n        value1 := value\n        let value_1 := 0\n        value_1 := calldataload(add(headStart, 64))\n        value2 := value_1\n    }\n    function abi_encode_tuple_t_uint128_t_uint128_t_uint256__to_t_uint128_t_uint128_t_uint256__fromStack_reversed(headStart, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 96)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffff))\n        mstore(add(headStart, 32), and(value1, 0xffffffffffffffffffffffffffffffff))\n        mstore(add(headStart, 64), value2)\n    }\n    function abi_decode_tuple_t_addresst_enum$_DelegationType_$1088t_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_enum_DelegationType(add(headStart, 32))\n        let value := 0\n        value := calldataload(add(headStart, 64))\n        value2 := value\n        let value_1 := 0\n        value_1 := calldataload(add(headStart, 96))\n        value3 := value_1\n        value4 := abi_decode_uint8(add(headStart, 128))\n        let value_2 := 0\n        value_2 := calldataload(add(headStart, 160))\n        value5 := value_2\n        let value_3 := 0\n        value_3 := calldataload(add(headStart, 192))\n        value6 := value_3\n    }\n    function abi_encode_tuple_t_stringliteral_6fb33ededa50927431023a1ca5722fb9abe7b87aeeb47e46d1f13b646b0719ba__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), \"CALLER_NOT_SLASHING_ADMIN\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_f77daace20469de8df4d27824d8f88ae642c918133f638a98e78576c5af835a5__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), \"PREVIOUS_SLASHING_NOT_SETTLED\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_ad8e292265788ac5c19f708ed96612bf3229f5fbdf9e1b9b3466c3f5a1b60243__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 11)\n        mstore(add(headStart, 64), \"ZERO_AMOUNT\")\n        tail := add(headStart, 96)\n    }\n    function panic_error_0x11()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x11)\n        revert(0, 0x24)\n    }\n    function checked_sub_t_uint256(x, y) -> diff\n    {\n        diff := sub(x, y)\n        if gt(diff, x) { panic_error_0x11() }\n    }\n    function abi_encode_tuple_t_stringliteral_e42e312e91b2c7decf2c17d44adbe92f5dbd21dd2fe6c255c257f03ae436b4f4__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), \"REMAINING_LT_MINIMUM\")\n        tail := add(headStart, 96)\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 abi_encode_tuple_t_stringliteral_2783cc94d2815145fca23f61c101ffc8ff8c6a01d5b51321a6791062a0684adf__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), \"CALLER_NOT_CLAIM_HELPER\")\n        tail := add(headStart, 96)\n    }\n    function checked_add_t_uint256(x, y) -> sum\n    {\n        sum := add(x, y)\n        if gt(x, sum) { panic_error_0x11() }\n    }\n    function abi_encode_tuple_t_stringliteral_621f50d6436d0a4dd01bdd0a290cbd90a33871f85d2f75ec24041520fb128387__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 17)\n        mstore(add(headStart, 64), \"AMOUNT_LT_MINIMUM\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_5407ed0094c102003a23cbee6bcb44020e6bb1be4fa76486e3d76e28e8ab8c65__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 17)\n        mstore(add(headStart, 64), \"SHARES_LT_MINIMUM\")\n        tail := add(headStart, 96)\n    }\n    function checked_mul_t_uint256(x, y) -> product\n    {\n        product := mul(x, y)\n        if iszero(or(iszero(x), eq(y, div(product, x)))) { panic_error_0x11() }\n    }\n    function panic_error_0x12()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x12)\n        revert(0, 0x24)\n    }\n    function checked_div_t_uint256(x, y) -> r\n    {\n        if iszero(y)\n        {\n            mstore(0, shl(224, 0x4e487b71))\n            mstore(4, 0x12)\n            revert(0, 0x24)\n        }\n        r := div(x, y)\n    }\n    function abi_encode_tuple_t_stringliteral_d49ebb848086492947fc93c9ef60d839aa895187a88d01c0575e0469055263d2__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), \"CALLER_NOT_COOLDOWN_ADMIN\")\n        tail := add(headStart, 96)\n    }\n    function panic_error_0x32()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x32)\n        revert(0, 0x24)\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_9fbba6c4dcac9134893b633b9564f36435b3f927c1d5fa152c5c14b20cecb1a4__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), \"Contract instance has already be\")\n        mstore(add(headStart, 96), \"en initialized\")\n        tail := add(headStart, 128)\n    }\n    function abi_encode_tuple_t_stringliteral_5e135040f8dc35152fcfe1ddf129384a9ce13d1776c5e6dc86a62f244bfcfc0b__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), \"CALLER_NOT_ROLE_ADMIN\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_a28d34ff463a8cc689c6ec4b8c995983f85d0a40987242bc4cc3cec37303c18e__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), \"ONLY_EMISSION_MANAGER\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_bytes32_t_address_t_uint256_t_uint256__to_t_bytes32_t_address_t_uint256_t_uint256__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, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 64), value2)\n        mstore(add(headStart, 96), value3)\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, shl(240, 6401))\n        mstore(add(pos, 2), value0)\n        mstore(add(pos, 34), value1)\n        end := add(pos, 66)\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_stringliteral_5e2e9eaa2d734966dea0900deacd15b20129fbce05255d633a3ce5ebca181b88__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 17)\n        mstore(add(headStart, 64), \"INVALID_SIGNATURE\")\n        tail := add(headStart, 96)\n    }\n    function increment_t_uint256(value) -> ret\n    {\n        if eq(value, not(0)) { panic_error_0x11() }\n        ret := add(value, 1)\n    }\n    function abi_encode_tuple_t_stringliteral_a19e25beaf00f467d35fbe7e167b5794fca796dbfd417dd2accc8f5303300b99__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 13)\n        mstore(add(headStart, 64), \"INVALID_NONCE\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_9fe3e5cf49f72bf8a6a8455c3e990f8479f5dfa09ac808886f330a39b0029c2d__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), \"INVALID_EXPIRATION\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_a30e2b4f22d955e30086ae3aef0adfd87eec9d0d3f055d6aa9af61f522dda886__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 13)\n        mstore(add(headStart, 64), \"INVALID_OWNER\")\n        tail := add(headStart, 96)\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        mstore(add(headStart, 32), and(value1, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 64), and(value2, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 96), value3)\n        mstore(add(headStart, 128), value4)\n        mstore(add(headStart, 160), value5)\n    }\n    function panic_error_0x21()\n    {\n        mstore(0, shl(224, 0x4e487b71))\n        mstore(4, 0x21)\n        revert(0, 0x24)\n    }\n    function abi_encode_tuple_t_bytes32_t_address_t_uint256_t_uint256_t_uint256__to_t_bytes32_t_address_t_uint256_t_uint256_t_uint256__fromStack_reversed(headStart, value4, value3, value2, value1, value0) -> tail\n    {\n        tail := add(headStart, 160)\n        mstore(headStart, value0)\n        mstore(add(headStart, 32), and(value1, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 64), value2)\n        mstore(add(headStart, 96), value3)\n        mstore(add(headStart, 128), value4)\n    }\n    function abi_encode_tuple_t_stringliteral_e80295a9867834b2dfe1d7606b122307d35ebaa940c20b448f18824a9256df9d__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), \"CALLER_NOT_PENDING_ROLE_ADMIN\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_6b96bc99e56604df6600e4ce66f7e91bdc3417f453200fce123d801c60b50ff8__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), \"MATH_MULTIPLICATION_OVERFLOW\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_2f1333997521c1f7b64fb9baad89e36b71dfc7265a9804df600ce8ae5c1f6f36__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), \"ZERO_EXCHANGE_RATE\")\n        tail := add(headStart, 96)\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, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 32), value1)\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_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_33d2eb294587ef7b32eb48e48695ebfec45a9c8922ec7d1c444cfad1fb208e8d__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 19)\n        mstore(add(headStart, 64), \"INVALID_ZERO_AMOUNT\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_66cceaab4b8a6f427cff5482a526862a61c3ef92948b70aceb4a8f720a8f0ead__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), \"INSUFFICIENT_COOLDOWN\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_c6959acf2335419e4a75195e2fb1c276a96baa5b7fab6be19b14b9420a4bd962__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), \"UNSTAKE_WINDOW_FINISHED\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_fa2c368672f35856ca139c6dfba7cf36845bc24e7a2795ed29d2eba4e8313209__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), \"INVALID_ZERO_MAX_REDEEMABLE\")\n        tail := add(headStart, 96)\n    }\n    function checked_sub_t_uint216(x, y) -> diff\n    {\n        diff := sub(and(x, sub(shl(216, 1), 1)), and(y, sub(shl(216, 1), 1)))\n        if gt(diff, sub(shl(216, 1), 1)) { panic_error_0x11() }\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 abi_encode_tuple_t_stringliteral_3b6607e091cba9325f958656d2b5e0622ab7dc0eac71a26ac788cb25bc19f4fe__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), \"ERC20: insufficient allowance\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_e5f9ee9777b2bbd505a43328a4cc6b61e9df46610a556d5402b9bc072df973d7__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), \"INVALID_BALANCE_ON_COOLDOWN\")\n        tail := add(headStart, 96)\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        mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 32), and(value1, sub(shl(160, 1), 1)))\n        mstore(add(headStart, 64), value2)\n    }\n    function abi_encode_tuple_t_stringliteral_f448a4555410856eaebeffbdb1aef2dfca19f9de0904eb1029e0bbcd0330450f__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n    {\n        mstore(headStart, 32)\n        mstore(add(headStart, 32), 17)\n        mstore(add(headStart, 64), \"INVALID_DELEGATEE\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_enum_DelegationType(value, pos)\n    {\n        if iszero(lt(value, 2))\n        {\n            mstore(0, shl(224, 0x4e487b71))\n            mstore(4, 0x21)\n            revert(0, 0x24)\n        }\n        mstore(pos, value)\n    }\n    function abi_encode_tuple_t_enum$_DelegationType_$1088__to_t_uint8__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        abi_encode_enum_DelegationType(value0, headStart)\n    }\n    function abi_encode_tuple_t_stringliteral_ce93b50079b62f2df0cdb8205f7bed11a1c18f1ff774f2e6b4f84f4f62875ed5__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), \"INVALID_SLASHING_PERCENTAGE\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_ca68b1751ae29c5f09bd0021f927ba7e466485e5196910ff5ec2e20b861ddf43__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), \"SLASHING_ONGOING\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_uint128__to_t_uint256__fromStack_reversed(headStart, value0) -> tail\n    {\n        tail := add(headStart, 32)\n        mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffff))\n    }\n    function abi_encode_tuple_t_stringliteral_dd61c748dcfe71393203093270c457f6ceb8834cce0160376620e7b2f811559c__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), \"INVALID_BLOCK_NUMBER\")\n        tail := add(headStart, 96)\n    }\n    function abi_encode_tuple_t_stringliteral_8966adc0aad8dc91b207c69c3eb4937e498af8cc706cfe7edd55f3a6ea53488d__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), \"16 bits\")\n        tail := add(headStart, 128)\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_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_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_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_86c53d89b1944d561ecfa42e859033241d1df6ea8d42a57ae02f79d45de4aa75__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), \"84 bits\")\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_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_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_uint256_t_enum$_DelegationType_$1088__to_t_uint256_t_uint8__fromStack_reversed(headStart, value1, value0) -> tail\n    {\n        tail := add(headStart, 64)\n        mstore(headStart, value0)\n        abi_encode_enum_DelegationType(value1, add(headStart, 32))\n    }\n    function checked_exp_helper(_base, exponent, max) -> power, base\n    {\n        power := 1\n        base := _base\n        for { } gt(exponent, 1) { }\n        {\n            if gt(base, div(max, base)) { panic_error_0x11() }\n            if and(exponent, 1) { power := mul(power, base) }\n            base := mul(base, base)\n            exponent := shr(1, exponent)\n        }\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            let _1 := 0\n            _1 := 0\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            let _2 := 0\n            _2 := 0\n            leave\n        }\n        let power_1, base_1 := checked_exp_helper(base, exponent, not(0))\n        if gt(power_1, div(not(0), base_1)) { panic_error_0x11() }\n        power := mul(power_1, base_1)\n    }\n    function checked_exp_t_uint256_t_uint256(base, exponent) -> power\n    {\n        power := checked_exp_unsigned(base, exponent)\n    }\n    function abi_encode_tuple_t_stringliteral_b2af192d647f8b8a9f94a546a11b40d3536722e4b74d77e3330eb171e0c93079__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), \"ADMIN_CANNOT_BE_INITIALIZED\")\n        tail := add(headStart, 96)\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_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_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_with_cleanup(add(value0, 0x20), pos, length)\n        end := add(pos, length)\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}","id":1,"language":"Yul","name":"#utility.yul"}],"immutableReferences":{"2471":[{"length":32,"start":2230},{"length":32,"start":14305},{"length":32,"start":14365},{"length":32,"start":14410}],"2473":[{"length":32,"start":2697},{"length":32,"start":5741}],"4659":[{"length":32,"start":1482},{"length":32,"start":3458},{"length":32,"start":4345},{"length":32,"start":9169},{"length":32,"start":11722}],"4662":[{"length":32,"start":2335},{"length":32,"start":9458}],"4665":[{"length":32,"start":1604},{"length":32,"start":8623}],"4668":[{"length":32,"start":2269},{"length":32,"start":9492}],"5457":[{"length":32,"start":1950},{"length":32,"start":3289},{"length":32,"start":4086},{"length":32,"start":4199}]},"linkReferences":{},"object":"608060405234801561001057600080fd5b50600436106104495760003560e01c80638c9a281d11610241578063b2a5dbfa1161013b578063dc937e1c116100c3578063f036bc6811610087578063f036bc6814610b17578063f11b818814610b2b578063f34d96da14610b8d578063f713d8a814610b95578063fde9eb6914610ba857600080fd5b8063dc937e1c14610ac6578063dd62ed3e14610ad9578063dde43cba14610aec578063e6aa216c14610af3578063eab5231814610b0457600080fd5b8063c3863ada1161010a578063c3863ada14610a5e578063c3cda52014610a71578063cbcbb50714610a84578063d505accf14610aab578063dbc0ed8a14610abe57600080fd5b8063b2a5dbfa14610a05578063b2f4201d14610a18578063b9844d8d14610a2b578063c2ffbb9114610a4b57600080fd5b80639c9b5154116101c9578063aa9fbe021161018d578063aa9fbe02146109a8578063aaf5eb68146109cf578063ab406fe6146109d7578063adc9772e146109ea578063aff05aa9146109fd57600080fd5b80639c9b5154146109545780639e3ffce014610967578063a457c2d71461096f578063a6b63eb814610982578063a9059cbb1461099557600080fd5b8063946776cd11610210578063946776cd146108d857806395d89b41146108ff578063981b24d01461090757806399248ea71461091a5780639a99b4f01461094157600080fd5b80638c9a281d146108875780638dbefee21461088f5780638e9b2ca4146108a2578063919cd40f146108b157600080fd5b806341cbf54a116103525780636f50458d116102da578063781603761161029e578063781603761461080c578063787a08a61461082c5780637b5b1157146108345780637bb73c97146108475780637e90d7ef1461086757600080fd5b80636f50458d146107c057806370a08231146107d3578063727a5d57146107e657806372b49d631461079157806374011f56146107f957600080fd5b806358146d171161032157806358146d17146106f85780635b3cc0cf1461071f5780635c19a95c1461077e578063616e0bf9146107915780636198e1351461079957600080fd5b806341cbf54a1461068257806345755dd6146106a95780634575e69b146106bc5780634cdad506146106e557600080fd5b806323b872dd116103d5578063313ce567116103a4578063313ce567146105ec5780633373ee4c14610601578063359c4a961461063f5780633644e51514610666578063395093511461066f57600080fd5b806323b872dd14610578578063250201db1461058b57806330adf81f1461059e578063312f6b83146105c557600080fd5b8063111fd88b1161041c578063111fd88b1461050a578063112d037c1461053557806318160ddd1461054a5780631e9a69501461055257806320fb80b51461056557600080fd5b806302fb4d851461044e57806306fdde0314610474578063091030c314610489578063095ea7b3146104e7575b600080fd5b61046161045c3660046140b1565b610bbb565b6040519081526020015b60405180910390f35b61047c610df9565b60405161046b919061412b565b6104c261049736600461413e565b603e6020526000908152604090205464ffffffffff811690600160281b90046001600160d81b031682565b6040805164ffffffffff90931683526001600160d81b0390911660208301520161046b565b6104fa6104f53660046140b1565b610e8b565b604051901515815260200161046b565b61051d610518366004614159565b610ea3565b6040516001600160a01b03909116815260200161046b565b610548610543366004614172565b610ebe565b005b600254610461565b6105486105603660046140b1565b610f08565b610461610573366004614172565b610f17565b6104fa610586366004614172565b610f68565b61054861059936600461413e565b610f8c565b6104617f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c981565b61051d7f000000000000000000000000000000000000000000000000000000000000000081565b60125b60405160ff909116815260200161046b565b61046161060f3660046141af565b6001600160a01b038082166000908152603c60209081526040808320938616835260029093019052205492915050565b6104617f000000000000000000000000000000000000000000000000000000000000000081565b61046160435481565b6104fa61067d3660046140b1565b610fd2565b6104617f9a9a49b990ba9bb39f8048c490a40ab25c18f55d208d5fbcf958261a9b48716d81565b6105486106b7366004614159565b610ff4565b61051d6106ca366004614159565b6000908152604660205260409020546001600160a01b031690565b6104616106f3366004614159565b611159565b610707670de0b6b3a764000081565b6040516001600160d81b03909116815260200161046b565b61075e61072d3660046140b1565b60066020908152600092835260408084209091529082529020546001600160801b0380821691600160801b90041682565b604080516001600160801b0393841681529290911660208301520161046b565b61054861078c36600461413e565b611184565b604f54610461565b6104617f000000000000000000000000000000000000000000000000000000000000000081565b61051d6107ce3660046141f1565b61119c565b6104616107e136600461413e565b6111be565b6104616107f4366004614159565b6111d9565b610548610807366004614159565b6111fc565b61047c604051806040016040528060018152602001603160f81b81525081565b61054861123f565b610548610842366004614159565b61124a565b61046161085536600461413e565b60076020526000908152604090205481565b61046161087536600461413e565b603d6020526000908152604090205481565b610461600081565b61046161089d36600461413e565b6112bd565b610461670de0b6b3a764000081565b6104617f000000000000000000000000000000000000000000000000000000000000000081565b61051d7f000000000000000000000000000000000000000000000000000000000000000081565b61047c611398565b610461610915366004614159565b6113a7565b61051d7f000000000000000000000000000000000000000000000000000000000000000081565b61054861094f3660046140b1565b6113b2565b61054861096236600461421b565b6113bd565b610461600181565b6104fa61097d3660046140b1565b611414565b61054861099036600461425d565b61148f565b6104fa6109a33660046140b1565b611514565b6104617f10d8d059343739efce7dad10d09f0806da52b252b3e6a7951920d2d6ec4102e581565b6105ef601281565b6105486109e53660046142b2565b611522565b6105486109f83660046140b1565b6115e5565b6105486115f0565b610548610a13366004614345565b611662565b610461610a263660046141f1565b611713565b610461610a3936600461413e565b60446020526000908152604090205481565b610461610a59366004614439565b61173b565b60085461051d906001600160a01b031681565b610548610a7f366004614486565b611764565b61051d7f000000000000000000000000000000000000000000000000000000000000000081565b610548610ab93660046144de565b611929565b610461600281565b610548610ad43660046141f1565b611af1565b610461610ae73660046141af565b611afc565b6003610461565b6051546001600160d81b0316610707565b610548610b12366004614549565b611b27565b6051546104fa90600160d81b900460ff1681565b610b67610b3936600461413e565b603c60205260009081526040902080546001909101546001600160801b0380831692600160801b9004169083565b604080516001600160801b0394851681529390921660208401529082015260600161046b565b605054610461565b610548610ba336600461457c565b611b3e565b610548610bb6366004614159565b611d12565b6000610bc76000610ea3565b6001600160a01b0316336001600160a01b031614610c005760405162461bcd60e51b8152600401610bf7906145ae565b60405180910390fd5b605154600160d81b900460ff1615610c5a5760405162461bcd60e51b815260206004820152601d60248201527f50524556494f55535f534c415348494e475f4e4f545f534554544c45440000006044820152606401610bf7565b60008211610c985760405162461bcd60e51b815260206004820152600b60248201526a16915493d7d05353d5539560aa1b6044820152606401610bf7565b6000610ca360025490565b90506000610cb082611159565b90506000610cc960505483611de390919063ffffffff16565b905080851115610cd7578094505b7f0000000000000000000000000000000000000000000000000000000000000000610d0286846145fb565b1015610d475760405162461bcd60e51b815260206004820152601460248201527352454d41494e494e475f4c545f4d494e494d554d60601b6044820152606401610bf7565b6051805460ff60d81b1916600160d81b179055610d75610d70610d6a87856145fb565b85611e6f565b611ead565b610da96001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000168787611f50565b856001600160a01b03167f4ed05e9673c26d2ed44f7ef6a7f2942df0ee3b5e1e17db4b99f9dcd261a339cd86604051610de491815260200190565b60405180910390a28493505050505b92915050565b606060038054610e089061460e565b80601f0160208091040260200160405190810160405280929190818152602001828054610e349061460e565b8015610e815780601f10610e5657610100808354040283529160200191610e81565b820191906000526020600020905b815481529060010190602001808311610e6457829003601f168201915b5050505050905090565b600033610e99818585611fb3565b5060019392505050565b6000908152604560205260409020546001600160a01b031690565b610ec86002610ea3565b6001600160a01b0316336001600160a01b031614610ef85760405162461bcd60e51b8152600401610bf790614648565b610f038383836120d7565b505050565b610f133383836120d7565b5050565b6000610f236002610ea3565b6001600160a01b0316336001600160a01b031614610f535760405162461bcd60e51b8152600401610bf790614648565b610f5e848484612458565b90505b9392505050565b600033610f76858285612590565b610f81858585612604565b506001949350505050565b610f966002610ea3565b6001600160a01b0316336001600160a01b031614610fc65760405162461bcd60e51b8152600401610bf790614648565b610fcf81612735565b50565b600033610e99818585610fe58383611afc565b610fef919061467f565b611fb3565b7f00000000000000000000000000000000000000000000000000000000000000008110156110585760405162461bcd60e51b8152602060048201526011602482015270414d4f554e545f4c545f4d494e494d554d60781b6044820152606401610bf7565b600061106360025490565b90507f00000000000000000000000000000000000000000000000000000000000000008110156110c95760405162461bcd60e51b81526020600482015260116024820152705348415245535f4c545f4d494e494d554d60781b6044820152606401610bf7565b60006110d482611159565b90506110ec610d706110e6858461467f565b84611e6f565b6111216001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016333086612818565b6040518381527f278e51d3323fbf18b9fb8df3f8b97e31b145bc1146c52e764cf4aa1bfc4ba17d9060200160405180910390a1505050565b6051546000906001600160d81b031661117a83670de0b6b3a7640000614692565b610df391906146a9565b61119033826000612850565b610fcf33826001612850565b6000806111a883612951565b925050506111b68482612990565b949350505050565b6001600160a01b031660009081526020819052604090205490565b605154600090670de0b6b3a76400009061117a906001600160d81b031684614692565b6112066000610ea3565b6001600160a01b0316336001600160a01b0316146112365760405162461bcd60e51b8152600401610bf7906145ae565b610fcf816129bb565b61124833612735565b565b6112546001610ea3565b6001600160a01b0316336001600160a01b0316146112b45760405162461bcd60e51b815260206004820152601960248201527f43414c4c45525f4e4f545f434f4f4c444f574e5f41444d494e000000000000006044820152606401610bf7565b610fcf81612a41565b604080516001808252818301909252600091829190816020015b611304604051806060016040528060006001600160a01b0316815260200160008152602001600081525090565b8152602001906001900390816112d75790505090506040518060600160405280306001600160a01b0316815260200161133c856111be565b815260200161134a60025490565b81525081600081518110611360576113606146cb565b60200260200101819052506113758382612a76565b6001600160a01b0384166000908152603d6020526040902054610f61919061467f565b606060048054610e089061460e565b6000610df360025490565b610f03338383612458565b6113c76002610ea3565b6001600160a01b0316336001600160a01b0316146113f75760405162461bcd60e51b8152600401610bf790614648565b611402848484612458565b5061140e8484836120d7565b50505050565b600033816114228286611afc565b9050838110156114825760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610bf7565b610f818286868403611fb3565b60095460039081116114fa5760405162461bcd60e51b815260206004820152602e60248201527f436f6e747261637420696e7374616e63652068617320616c726561647920626560448201526d195b881a5b9a5d1a585b1a5e995960921b6064820152608401610bf7565b600981905561150c8686868686612b79565b505050505050565b600033610e99818585612604565b60008281526045602052604090205482906001600160a01b031633146115825760405162461bcd60e51b815260206004820152601560248201527421a0a62622a92fa727aa2fa927a622afa0a226a4a760591b6044820152606401610bf7565b60008381526046602090815260409182902080546001600160a01b0319166001600160a01b03861690811790915591518581527fc3d1bf52795a20771ee6de3e59948fd83e10db956122d4709a3b86c512963855910160405180910390a2505050565b610f13338383612c9d565b6115fa6000610ea3565b6001600160a01b0316336001600160a01b03161461162a5760405162461bcd60e51b8152600401610bf7906145ae565b6051805460ff60d81b191690556040517fcdee157e87ba915be681d4fa3f3d511afe7348eca06448a3accd6ac227fa40af90600090a1565b336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146116d25760405162461bcd60e51b815260206004820152601560248201527427a7262cafa2a6a4a9a9a4a7a72fa6a0a720a3a2a960591b6044820152606401610bf7565b60005b8151811015611709576002548282815181106116f3576116f36146cb565b60209081029190910181015101526001016116d5565b50610fcf81612e4a565b600080600061172184612951565b509150915061173282828743612fae565b95945050505050565b600080600061174984612951565b509150915061175a82828888612fae565b9695505050505050565b604080517f9a9a49b990ba9bb39f8048c490a40ab25c18f55d208d5fbcf958261a9b48716d60208201526001600160a01b03881691810191909152606081018690526080810185905260009060a0016040516020818303038152906040528051906020012090506000604354826040516020016117e29291906146e1565b60408051601f198184030181528282528051602091820120600080855291840180845281905260ff89169284019290925260608301879052608083018690529092509060019060a0016020604051602081039080840390855afa15801561184d573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166118805760405162461bcd60e51b8152600401610bf7906146fc565b6001600160a01b03811660009081526044602052604081208054916118a483614727565b9190505588146118e65760405162461bcd60e51b815260206004820152600d60248201526c494e56414c49445f4e4f4e434560981b6044820152606401610bf7565b864211156119065760405162461bcd60e51b8152600401610bf790614740565b611912818a6000612850565b61191e818a6001612850565b505050505050505050565b6001600160a01b03871661196f5760405162461bcd60e51b815260206004820152600d60248201526c24a72b20a624a22fa7aba722a960991b6044820152606401610bf7565b8342111561198f5760405162461bcd60e51b8152600401610bf790614740565b6001600160a01b0387811660008181526044602090815260408083205460435482517f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98186015280840196909652958c166060860152608085018b905260a0850181905260c08086018b90528251808703909101815260e086019092528151919092012090939192611a26929190610100016146e1565b60408051601f1981840301815282825280516020918201206000845290830180835281905260ff8816918301919091526060820186905260808201859052915060019060a0016020604051602081039080840390855afa158015611a8e573d6000803e3d6000fd5b505050602060405103516001600160a01b0316896001600160a01b031614611ac85760405162461bcd60e51b8152600401610bf7906146fc565b6001600160a01b038916600090815260446020526040902060018301905561191e898989611fb3565b610f13338383612850565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b611b32338484612458565b50610f033384836120d7565b60007f10d8d059343739efce7dad10d09f0806da52b252b3e6a7951920d2d6ec4102e588886001811115611b7457611b7461476c565b6040805160208101949094526001600160a01b039092169183019190915260608201526080810187905260a0810186905260c001604051602081830303815290604052805190602001209050600060435482604051602001611bd79291906146e1565b60408051601f198184030181528282528051602091820120600080855291840180845281905260ff89169284019290925260608301879052608083018690529092509060019060a0016020604051602081039080840390855afa158015611c42573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116611c755760405162461bcd60e51b8152600401610bf7906146fc565b6001600160a01b0381166000908152604460205260408120805491611c9983614727565b919050558814611cdb5760405162461bcd60e51b815260206004820152600d60248201526c494e56414c49445f4e4f4e434560981b6044820152606401610bf7565b86421115611cfb5760405162461bcd60e51b8152600401610bf790614740565b611d06818b8b612850565b50505050505050505050565b60008181526046602052604090205481906001600160a01b03163314611d7a5760405162461bcd60e51b815260206004820152601d60248201527f43414c4c45525f4e4f545f50454e44494e475f524f4c455f41444d494e0000006044820152606401610bf7565b60008281526045602090815260408083208054336001600160a01b0319918216811790925560468452938290208054909416909355518481527f83a9ddad961dcb7c6894c9585a16ff7792c2ec8281256a3cc7303ae830152dcf91015b60405180910390a25050565b6000821580611df0575081155b15611dfd57506000610df3565b611e09826000196146a9565b831115611e585760405162461bcd60e51b815260206004820152601c60248201527f4d4154485f4d554c5449504c49434154494f4e5f4f564552464c4f57000000006044820152606401610bf7565b612710611e658385614692565b610f6191906146a9565b6000610f6183600181611e8a670de0b6b3a764000087614692565b611e94919061467f565b611e9e91906145fb565b611ea891906146a9565b613088565b806001600160d81b0316600003611efb5760405162461bcd60e51b81526020600482015260126024820152715a45524f5f45584348414e47455f5241544560701b6044820152606401610bf7565b605180546001600160d81b0319166001600160d81b0383169081179091556040519081527fa9c433f9734baa3cf48b209454bb0ace054e191f677ba50e74b696c0d35ef262906020015b60405180910390a150565b6040516001600160a01b038316602482015260448101829052610f0390849063a9059cbb60e01b906064015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b0319909316929092179091526130f5565b6001600160a01b0383166120155760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610bf7565b6001600160a01b0382166120765760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610bf7565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b806000036120f75760405162461bcd60e51b8152600401610bf790614782565b6001600160a01b0383166000908152603e602090815260409182902082518084019093525464ffffffffff81168352600160281b90046001600160d81b031690820152605154600160d81b900460ff1661223757604f548151612161919064ffffffffff1661467f565b4210156121a85760405162461bcd60e51b815260206004820152601560248201527424a729aaa32324a1a4a2a72a2fa1a7a7a62227aba760591b6044820152606401610bf7565b604f5481517f0000000000000000000000000000000000000000000000000000000000000000916121df9164ffffffffff1661467f565b6121e990426145fb565b11156122375760405162461bcd60e51b815260206004820152601760248201527f554e5354414b455f57494e444f575f46494e49534845440000000000000000006044820152606401610bf7565b6000612242856111be565b605154909150600090600160d81b900460ff1661226c5782602001516001600160d81b031661226e565b815b9050806000036122c05760405162461bcd60e51b815260206004820152601b60248201527f494e56414c49445f5a45524f5f4d41585f52454445454d41424c4500000000006044820152606401610bf7565b60008185116122cf57846122d1565b815b90506122df878460016131c7565b5060006122eb82611159565b90506122f78883613276565b845164ffffffffff16156123c4578185602001516001600160d81b031661231e91906145fb565b600003612343576001600160a01b0388166000908152603e60205260408120556123c4565b61234c826133a8565b6001600160a01b0389166000908152603e6020526040902054612388916001600160b81b031690600160281b90046001600160d81b03166147af565b6001600160a01b0389166000908152603e6020526040902080546001600160d81b0392909216600160281b0264ffffffffff9092169190911790555b6123f86001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000168883611f50565b866001600160a01b0316886001600160a01b03167f3f693fff038bb8a046aa76d9516190ac7444f7d69cf952c4cbdc086fdef2d6fc8385604051612446929190918252602082015260400190565b60405180910390a35050505050505050565b60008160000361247a5760405162461bcd60e51b8152600401610bf790614782565b600061249085612489876111be565b60006131c7565b905060008184116124a157836124a3565b815b9050806000036124c55760405162461bcd60e51b8152600401610bf790614782565b6124cf81836145fb565b6001600160a01b038088166000908152603d602052604090209190915561253a907f0000000000000000000000000000000000000000000000000000000000000000167f00000000000000000000000000000000000000000000000000000000000000008784612818565b846001600160a01b0316866001600160a01b03167f9310ccfcb8de723f578a9e4282ea9f521f05ae40dc08f3068dfad528a65ee3c78360405161257f91815260200190565b60405180910390a395945050505050565b600061259c8484611afc565b9050600019811461140e57818110156125f75760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610bf7565b61140e8484848403611fb3565b600061260f846111be565b905061261d848260016131c7565b50826001600160a01b0316846001600160a01b03161461272a576000612642846111be565b9050612650848260016131c7565b506001600160a01b0385166000908152603e602090815260409182902082518084019093525464ffffffffff8116808452600160281b9091046001600160d81b03169183019190915215612727578383036126c3576001600160a01b0386166000908152603e6020526040812055612727565b60208101516001600160d81b03166126db85856145fb565b1015612727576126eb84846145fb565b6001600160a01b0387166000908152603e6020526040902080546001600160d81b0392909216600160281b0264ffffffffff9092169190911790555b50505b61140e848484613411565b6000612740826111be565b9050806000036127925760405162461bcd60e51b815260206004820152601b60248201527f494e56414c49445f42414c414e43455f4f4e5f434f4f4c444f574e00000000006044820152606401610bf7565b60408051808201825264ffffffffff42811682526001600160d81b0380851660208085019182526001600160a01b0388166000818152603e9092529086902094519151909216600160281b0292169190911790915590517f8a05f911d8ab7fc50fec37ef4ba7f9bfcb1a3c191c81dcd824ad0946c4e20d6590611dd79084815260200190565b6040516001600160a01b038085166024830152831660448201526064810182905261140e9085906323b872dd60e01b90608401611f7c565b6001600160a01b03821661289a5760405162461bcd60e51b8152602060048201526011602482015270494e56414c49445f44454c45474154454560781b6044820152606401610bf7565b60006128a582612951565b9250505060006128b4856111be565b905060006128c28684612990565b6001600160a01b03878116600090815260208690526040902080546001600160a01b03191691881691909117905590506128fe818684876135b5565b846001600160a01b0316866001600160a01b03167fe8d51c8e11bd570db1734c8ec775785330e77007feed45c43b608ef33ff914bd8660405161294191906147f0565b60405180910390a3505050505050565b60008080808460018111156129685761296861476c565b0361297d57506006915060079050603f612989565b50604091506041905060425b9193909250565b6001600160a01b0380831660009081526020839052604081205490911680610f615783915050610df3565b6127108110612a0c5760405162461bcd60e51b815260206004820152601b60248201527f494e56414c49445f534c415348494e475f50455243454e5441474500000000006044820152606401610bf7565b60508190556040518181527fb79c2d6c7f5c95eec9dc05affc0ed002620a4ec6d72b7b0744cc8638168c600a90602001611f45565b604f8190556040518181527fbbf67247b5c97564e30ffc0a355e71c006836de7b9149e09e3d5d6054cb0335590602001611f45565b600080805b8351811015612b71576000603c6000868481518110612a9c57612a9c6146cb565b602090810291909101810151516001600160a01b031682528101919091526040016000908120600181015481548851929450612b0a926001600160801b0380831692600160801b900416908a9088908110612af957612af96146cb565b6020026020010151604001516137b9565b9050612b5b868481518110612b2157612b216146cb565b602002602001015160200151828460020160008b6001600160a01b03166001600160a01b03168152602001908152602001600020546138c4565b612b65908561467f565b93505050600101612a7b565b509392505050565b60408051600380825260808201909252600091816020015b6040805180820190915260008082526020820152815260200190600190039081612b91579050509050604051806040016040528060008152602001876001600160a01b031681525081600081518110612bec57612bec6146cb565b6020026020010181905250604051806040016040528060018152602001866001600160a01b031681525081600181518110612c2957612c296146cb565b6020026020010181905250604051806040016040528060028152602001856001600160a01b031681525081600281518110612c6657612c666146cb565b6020026020010181905250612c7a816138f0565b612c83836129bb565b612c8c82612a41565b61150c670de0b6b3a7640000611ead565b605154600160d81b900460ff1615612cea5760405162461bcd60e51b815260206004820152601060248201526f534c415348494e475f4f4e474f494e4760801b6044820152606401610bf7565b80600003612d0a5760405162461bcd60e51b8152600401610bf790614782565b6000612d15836111be565b90506000612d2d843084612d2860025490565b613ac2565b90508015612db0576001600160a01b0384166000908152603d6020526040902054612d5990829061467f565b6001600160a01b0385166000818152603d60209081526040918290209390935580519182529181018390527f2468f9268c60ad90e2d49edb0032c8a001e733ae888b3ab8e982edf535be1a76910160405180910390a15b6000612dbb846111d9565b9050612df26001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016873087612818565b612dfc8582613b83565b846001600160a01b0316866001600160a01b03167f6c86f3fd5118b3aa8bb4f389a617046de0a3d3d477de1a1673d227f802f616dc8684604051612941929190918252602082015260400190565b60005b8151811015610f13576000603c6000848481518110612e6e57612e6e6146cb565b6020026020010151604001516001600160a01b03166001600160a01b031681526020019081526020016000209050612ee1838381518110612eb157612eb16146cb565b60200260200101516040015182858581518110612ed057612ed06146cb565b602002602001015160200151613c42565b50828281518110612ef457612ef46146cb565b60209081029190910101515181546fffffffffffffffffffffffffffffffff19166001600160801b039091161781558251839083908110612f3757612f376146cb565b6020026020010151604001516001600160a01b03167f87fa03892a0556cb6b8f97e6d533a150d4d55fcbf275fff5fa003fa636bcc7fa848481518110612f7f57612f7f6146cb565b602090810291909101810151516040516001600160801b0390911681520160405180910390a250600101612e4d565b600043821115612ff75760405162461bcd60e51b815260206004820152601460248201527324a72b20a624a22fa12627a1a5afa72aa6a122a960611b6044820152606401610bf7565b6001600160a01b0383166000908152602085905260408120549081900361302957613021846111be565b9150506111b6565b6001600160a01b0384166000908152602087815260408083208380529091529020546001600160801b03168310156130655760009150506111b6565b6001600160a01b038416600090815260208790526040902061175a908285613cfa565b60006001600160d81b038211156130f15760405162461bcd60e51b815260206004820152602760248201527f53616665436173743a2076616c756520646f65736e27742066697420696e20326044820152663136206269747360c81b6064820152608401610bf7565b5090565b600061314a826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316613e069092919063ffffffff16565b805190915015610f03578080602001905181019061316891906147fe565b610f035760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610bf7565b6000806131d9853086612d2860025490565b6001600160a01b0386166000908152603d60205260408120549192509061320190839061467f565b9050811561173257831561322b576001600160a01b0386166000908152603d602052604090208190555b604080516001600160a01b0388168152602081018490527f2468f9268c60ad90e2d49edb0032c8a001e733ae888b3ab8e982edf535be1a76910160405180910390a195945050505050565b6001600160a01b0382166132d65760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610bf7565b6001600160a01b0382166000908152602081905260409020548181101561334a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610bf7565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b60006001600160b81b038211156130f15760405162461bcd60e51b815260206004820152602760248201527f53616665436173743a2076616c756520646f65736e27742066697420696e20316044820152663834206269747360c81b6064820152608401610bf7565b6001600160a01b0383166134755760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610bf7565b6001600160a01b0382166134d75760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610bf7565b6001600160a01b0383166000908152602081905260409020548181101561354f5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610bf7565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a361140e565b826001600160a01b0316846001600160a01b0316031561140e576000806135db83612951565b5090925090506001600160a01b038616156136cc576001600160a01b038616600090815260208290526040812054801561365b576001600160a01b0388166000908152602085905260408120906136336001846145fb565b8152602081019190915260400160002054600160801b90046001600160801b03169150613667565b613664886111be565b91505b61367d84848a856136788b826145fb565b613e15565b6001600160a01b0388167fa0a19463ee116110c9b282012d9b65cc5522dc38a9520340cbaf3142e550127f6136b288856145fb565b876040516136c1929190614820565b60405180910390a250505b6001600160a01b0385161561150c576001600160a01b0385166000908152602082905260408120548015613746576001600160a01b03871660009081526020859052604081209061371e6001846145fb565b8152602081019190915260400160002054600160801b90046001600160801b03169150613752565b61374f876111be565b91505b613763848489856136788b8261467f565b6001600160a01b0387167fa0a19463ee116110c9b282012d9b65cc5522dc38a9520340cbaf3142e550127f613798888561467f565b876040516137a7929190614820565b60405180910390a25050505050505050565b60008315806137c6575081155b806137d9575042836001600160801b0316145b8061380d57507f0000000000000000000000000000000000000000000000000000000000000000836001600160801b031610155b156138195750836111b6565b60007f00000000000000000000000000000000000000000000000000000000000000004211613848574261386a565b7f00000000000000000000000000000000000000000000000000000000000000005b905060006138816001600160801b038616836145fb565b905086846138916012600a61491b565b61389b848a614692565b6138a59190614692565b6138af91906146a9565b6138b9919061467f565b979650505050505050565b60006138d26012600a61491b565b6138dc83856145fb565b6138e69086614692565b610f5e91906146a9565b60005b8151811015610f135760006001600160a01b03166045600084848151811061391d5761391d6146cb565b602090810291909101810151518252810191909152604001600020546001600160a01b031614801561397f575060006001600160a01b0316828281518110613967576139676146cb565b6020026020010151602001516001600160a01b031614155b6139cb5760405162461bcd60e51b815260206004820152601b60248201527f41444d494e5f43414e4e4f545f42455f494e495449414c495a454400000000006044820152606401610bf7565b8181815181106139dd576139dd6146cb565b602002602001015160200151604560008484815181106139ff576139ff6146cb565b602002602001015160000151815260200190815260200160002060006101000a8154816001600160a01b0302191690836001600160a01b03160217905550818181518110613a4f57613a4f6146cb565b6020026020010151602001516001600160a01b03167f83a9ddad961dcb7c6894c9585a16ff7792c2ec8281256a3cc7303ae830152dcf838381518110613a9757613a976146cb565b602002602001015160000151604051613ab291815260200190565b60405180910390a26001016138f3565b6001600160a01b038084166000908152603c602090815260408083209388168352600284019091528120549091908280613afd888588613c42565b9050808314613b77578615613b1a57613b178782856138c4565b91505b6001600160a01b03808a1660008181526002870160205260409081902084905551918a16917fbb123b5c06d5408bbea3c4fef481578175cfb432e3b482c6186f02ed9086585b90613b6e9085815260200190565b60405180910390a35b50979650505050505050565b6001600160a01b038216613bd95760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610bf7565b8060026000828254613beb919061467f565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001820154825460009190600160801b90046001600160801b031642819003613c6d57509050610f61565b8454600090613c889084906001600160801b031684886137b9565b9050828114613cd757600186018190556040518181526001600160a01b038816907f5777ca300dfe5bead41006fbce4389794dbc0ed8d6cccebfaf94630aa04184bc9060200160405180910390a25b85546001600160801b03428116600160801b029116178655925050509392505050565b60001982016000908152602084905260408120546001600160801b03168210613d4757506000198201600090815260208490526040902054600160801b90046001600160801b0316610f61565b600060001984015b81811115613ddd576002828203048103600081815260208881526040918290208251808401909352546001600160801b03808216808552600160801b9092041691830191909152869003613db557602001516001600160801b03169350610f6192505050565b80516001600160801b0316861115613dcf57819350613dd6565b6001820392505b5050613d4f565b5060009081526020949094525050604090912054600160801b90046001600160801b0316919050565b6060610f5e8484600085613f2c565b6001600160a01b03831660009081526020858152604080832054918890529091204391908115801590613e7757506001600160801b038316816000613e5b6001866145fb565b81526020810191909152604001600020546001600160801b0316145b15613ebb5783816000613e8b6001866145fb565b8152602081019190915260400160002080546001600160801b03928316600160801b029216919091179055613f22565b6040805180820182526001600160801b038086168252868116602080840191825260008781529086905293909320915192518116600160801b029216919091179055613f0882600161467f565b6001600160a01b0387166000908152602089905260409020555b5050505050505050565b606082471015613f8d5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610bf7565b600080866001600160a01b03168587604051613fa99190614927565b60006040518083038185875af1925050503d8060008114613fe6576040519150601f19603f3d011682016040523d82523d6000602084013e613feb565b606091505b50915091506138b9878383876060831561406657825160000361405f576001600160a01b0385163b61405f5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610bf7565b50816111b6565b6111b6838381511561407b5781518083602001fd5b8060405162461bcd60e51b8152600401610bf7919061412b565b80356001600160a01b03811681146140ac57600080fd5b919050565b600080604083850312156140c457600080fd5b6140cd83614095565b946020939093013593505050565b60005b838110156140f65781810151838201526020016140de565b50506000910152565b600081518084526141178160208601602086016140db565b601f01601f19169290920160200192915050565b602081526000610f6160208301846140ff565b60006020828403121561415057600080fd5b610f6182614095565b60006020828403121561416b57600080fd5b5035919050565b60008060006060848603121561418757600080fd5b61419084614095565b925061419e60208501614095565b929592945050506040919091013590565b600080604083850312156141c257600080fd5b6141cb83614095565b91506141d960208401614095565b90509250929050565b8035600281106140ac57600080fd5b6000806040838503121561420457600080fd5b61420d83614095565b91506141d9602084016141e2565b6000806000806080858703121561423157600080fd5b61423a85614095565b935061424860208601614095565b93969395505050506040820135916060013590565b600080600080600060a0868803121561427557600080fd5b61427e86614095565b945061428c60208701614095565b935061429a60408701614095565b94979396509394606081013594506080013592915050565b600080604083850312156142c557600080fd5b823591506141d960208401614095565b634e487b7160e01b600052604160045260246000fd5b6040516060810167ffffffffffffffff8111828210171561430e5761430e6142d5565b60405290565b604051601f8201601f1916810167ffffffffffffffff8111828210171561433d5761433d6142d5565b604052919050565b60006020828403121561435757600080fd5b813567ffffffffffffffff81111561436e57600080fd5b8201601f8101841361437f57600080fd5b803567ffffffffffffffff811115614399576143996142d5565b6143a860208260051b01614314565b808282526020820191506020606084028501019250868311156143ca57600080fd5b6020840193505b8284101561175a57606084880312156143e957600080fd5b6143f16142eb565b84356001600160801b038116811461440857600080fd5b81526020858101359082015261442060408601614095565b60408201528252606093909301926020909101906143d1565b60008060006060848603121561444e57600080fd5b61445784614095565b92506020840135915061446c604085016141e2565b90509250925092565b803560ff811681146140ac57600080fd5b60008060008060008060c0878903121561449f57600080fd5b6144a887614095565b955060208701359450604087013593506144c460608801614475565b9598949750929560808101359460a0909101359350915050565b600080600080600080600060e0888a0312156144f957600080fd5b61450288614095565b965061451060208901614095565b9550604088013594506060880135935061452c60808901614475565b9699959850939692959460a0840135945060c09093013592915050565b60008060006060848603121561455e57600080fd5b61456784614095565b95602085013595506040909401359392505050565b600080600080600080600060e0888a03121561459757600080fd5b6145a088614095565b9650614510602089016141e2565b60208082526019908201527f43414c4c45525f4e4f545f534c415348494e475f41444d494e00000000000000604082015260600190565b634e487b7160e01b600052601160045260246000fd5b81810381811115610df357610df36145e5565b600181811c9082168061462257607f821691505b60208210810361464257634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526017908201527f43414c4c45525f4e4f545f434c41494d5f48454c504552000000000000000000604082015260600190565b80820180821115610df357610df36145e5565b8082028115828204841417610df357610df36145e5565b6000826146c657634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b61190160f01b81526002810192909252602282015260420190565b602080825260119082015270494e56414c49445f5349474e415455524560781b604082015260600190565b600060018201614739576147396145e5565b5060010190565b60208082526012908201527124a72b20a624a22fa2ac2824a920aa24a7a760711b604082015260600190565b634e487b7160e01b600052602160045260246000fd5b6020808252601390820152721253959053125117d6915493d7d05353d55395606a1b604082015260600190565b6001600160d81b038281168282160390811115610df357610df36145e5565b600281106147ec57634e487b7160e01b600052602160045260246000fd5b9052565b60208101610df382846147ce565b60006020828403121561481057600080fd5b81518015158114610f6157600080fd5b82815260408101610f6160208301846147ce565b6001815b600184111561486f57808504811115614853576148536145e5565b600184161561486157908102905b60019390931c928002614838565b935093915050565b60008261488657506001610df3565b8161489357506000610df3565b81600181146148a957600281146148b3576148cf565b6001915050610df3565b60ff8411156148c4576148c46145e5565b50506001821b610df3565b5060208310610133831016604e8410600b84101617156148f2575081810a610df3565b6148ff6000198484614834565b8060001904821115614913576149136145e5565b029392505050565b6000610f618383614877565b600082516149398184602087016140db565b919091019291505056fea2646970667358221220f11c3a784e62382c2f497b068ab353948d5b71f45a233267301678035d95f2b764736f6c634300081b0033","opcodes":"PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x449 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x8C9A281D GT PUSH2 0x241 JUMPI DUP1 PUSH4 0xB2A5DBFA GT PUSH2 0x13B JUMPI DUP1 PUSH4 0xDC937E1C GT PUSH2 0xC3 JUMPI DUP1 PUSH4 0xF036BC68 GT PUSH2 0x87 JUMPI DUP1 PUSH4 0xF036BC68 EQ PUSH2 0xB17 JUMPI DUP1 PUSH4 0xF11B8188 EQ PUSH2 0xB2B JUMPI DUP1 PUSH4 0xF34D96DA EQ PUSH2 0xB8D JUMPI DUP1 PUSH4 0xF713D8A8 EQ PUSH2 0xB95 JUMPI DUP1 PUSH4 0xFDE9EB69 EQ PUSH2 0xBA8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0xDC937E1C EQ PUSH2 0xAC6 JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0xAD9 JUMPI DUP1 PUSH4 0xDDE43CBA EQ PUSH2 0xAEC JUMPI DUP1 PUSH4 0xE6AA216C EQ PUSH2 0xAF3 JUMPI DUP1 PUSH4 0xEAB52318 EQ PUSH2 0xB04 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0xC3863ADA GT PUSH2 0x10A JUMPI DUP1 PUSH4 0xC3863ADA EQ PUSH2 0xA5E JUMPI DUP1 PUSH4 0xC3CDA520 EQ PUSH2 0xA71 JUMPI DUP1 PUSH4 0xCBCBB507 EQ PUSH2 0xA84 JUMPI DUP1 PUSH4 0xD505ACCF EQ PUSH2 0xAAB JUMPI DUP1 PUSH4 0xDBC0ED8A EQ PUSH2 0xABE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0xB2A5DBFA EQ PUSH2 0xA05 JUMPI DUP1 PUSH4 0xB2F4201D EQ PUSH2 0xA18 JUMPI DUP1 PUSH4 0xB9844D8D EQ PUSH2 0xA2B JUMPI DUP1 PUSH4 0xC2FFBB91 EQ PUSH2 0xA4B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x9C9B5154 GT PUSH2 0x1C9 JUMPI DUP1 PUSH4 0xAA9FBE02 GT PUSH2 0x18D JUMPI DUP1 PUSH4 0xAA9FBE02 EQ PUSH2 0x9A8 JUMPI DUP1 PUSH4 0xAAF5EB68 EQ PUSH2 0x9CF JUMPI DUP1 PUSH4 0xAB406FE6 EQ PUSH2 0x9D7 JUMPI DUP1 PUSH4 0xADC9772E EQ PUSH2 0x9EA JUMPI DUP1 PUSH4 0xAFF05AA9 EQ PUSH2 0x9FD JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x9C9B5154 EQ PUSH2 0x954 JUMPI DUP1 PUSH4 0x9E3FFCE0 EQ PUSH2 0x967 JUMPI DUP1 PUSH4 0xA457C2D7 EQ PUSH2 0x96F JUMPI DUP1 PUSH4 0xA6B63EB8 EQ PUSH2 0x982 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x995 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x946776CD GT PUSH2 0x210 JUMPI DUP1 PUSH4 0x946776CD EQ PUSH2 0x8D8 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x8FF JUMPI DUP1 PUSH4 0x981B24D0 EQ PUSH2 0x907 JUMPI DUP1 PUSH4 0x99248EA7 EQ PUSH2 0x91A JUMPI DUP1 PUSH4 0x9A99B4F0 EQ PUSH2 0x941 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x8C9A281D EQ PUSH2 0x887 JUMPI DUP1 PUSH4 0x8DBEFEE2 EQ PUSH2 0x88F JUMPI DUP1 PUSH4 0x8E9B2CA4 EQ PUSH2 0x8A2 JUMPI DUP1 PUSH4 0x919CD40F EQ PUSH2 0x8B1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x41CBF54A GT PUSH2 0x352 JUMPI DUP1 PUSH4 0x6F50458D GT PUSH2 0x2DA JUMPI DUP1 PUSH4 0x78160376 GT PUSH2 0x29E JUMPI DUP1 PUSH4 0x78160376 EQ PUSH2 0x80C JUMPI DUP1 PUSH4 0x787A08A6 EQ PUSH2 0x82C JUMPI DUP1 PUSH4 0x7B5B1157 EQ PUSH2 0x834 JUMPI DUP1 PUSH4 0x7BB73C97 EQ PUSH2 0x847 JUMPI DUP1 PUSH4 0x7E90D7EF EQ PUSH2 0x867 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x6F50458D EQ PUSH2 0x7C0 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x7D3 JUMPI DUP1 PUSH4 0x727A5D57 EQ PUSH2 0x7E6 JUMPI DUP1 PUSH4 0x72B49D63 EQ PUSH2 0x791 JUMPI DUP1 PUSH4 0x74011F56 EQ PUSH2 0x7F9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x58146D17 GT PUSH2 0x321 JUMPI DUP1 PUSH4 0x58146D17 EQ PUSH2 0x6F8 JUMPI DUP1 PUSH4 0x5B3CC0CF EQ PUSH2 0x71F JUMPI DUP1 PUSH4 0x5C19A95C EQ PUSH2 0x77E JUMPI DUP1 PUSH4 0x616E0BF9 EQ PUSH2 0x791 JUMPI DUP1 PUSH4 0x6198E135 EQ PUSH2 0x799 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x41CBF54A EQ PUSH2 0x682 JUMPI DUP1 PUSH4 0x45755DD6 EQ PUSH2 0x6A9 JUMPI DUP1 PUSH4 0x4575E69B EQ PUSH2 0x6BC JUMPI DUP1 PUSH4 0x4CDAD506 EQ PUSH2 0x6E5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x23B872DD GT PUSH2 0x3D5 JUMPI DUP1 PUSH4 0x313CE567 GT PUSH2 0x3A4 JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x5EC JUMPI DUP1 PUSH4 0x3373EE4C EQ PUSH2 0x601 JUMPI DUP1 PUSH4 0x359C4A96 EQ PUSH2 0x63F JUMPI DUP1 PUSH4 0x3644E515 EQ PUSH2 0x666 JUMPI DUP1 PUSH4 0x39509351 EQ PUSH2 0x66F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x23B872DD EQ PUSH2 0x578 JUMPI DUP1 PUSH4 0x250201DB EQ PUSH2 0x58B JUMPI DUP1 PUSH4 0x30ADF81F EQ PUSH2 0x59E JUMPI DUP1 PUSH4 0x312F6B83 EQ PUSH2 0x5C5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x111FD88B GT PUSH2 0x41C JUMPI DUP1 PUSH4 0x111FD88B EQ PUSH2 0x50A JUMPI DUP1 PUSH4 0x112D037C EQ PUSH2 0x535 JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x54A JUMPI DUP1 PUSH4 0x1E9A6950 EQ PUSH2 0x552 JUMPI DUP1 PUSH4 0x20FB80B5 EQ PUSH2 0x565 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x2FB4D85 EQ PUSH2 0x44E JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x474 JUMPI DUP1 PUSH4 0x91030C3 EQ PUSH2 0x489 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x4E7 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x461 PUSH2 0x45C CALLDATASIZE PUSH1 0x4 PUSH2 0x40B1 JUMP JUMPDEST PUSH2 0xBBB JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x47C PUSH2 0xDF9 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x46B SWAP2 SWAP1 PUSH2 0x412B JUMP JUMPDEST PUSH2 0x4C2 PUSH2 0x497 CALLDATASIZE PUSH1 0x4 PUSH2 0x413E JUMP JUMPDEST PUSH1 0x3E PUSH1 0x20 MSTORE PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH5 0xFFFFFFFFFF DUP2 AND SWAP1 PUSH1 0x1 PUSH1 0x28 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0xD8 SHL SUB AND DUP3 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH5 0xFFFFFFFFFF SWAP1 SWAP4 AND DUP4 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xD8 SHL SUB SWAP1 SWAP2 AND PUSH1 0x20 DUP4 ADD MSTORE ADD PUSH2 0x46B JUMP JUMPDEST PUSH2 0x4FA PUSH2 0x4F5 CALLDATASIZE PUSH1 0x4 PUSH2 0x40B1 JUMP JUMPDEST PUSH2 0xE8B JUMP JUMPDEST PUSH1 0x40 MLOAD SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x46B JUMP JUMPDEST PUSH2 0x51D PUSH2 0x518 CALLDATASIZE PUSH1 0x4 PUSH2 0x4159 JUMP JUMPDEST PUSH2 0xEA3 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x46B JUMP JUMPDEST PUSH2 0x548 PUSH2 0x543 CALLDATASIZE PUSH1 0x4 PUSH2 0x4172 JUMP JUMPDEST PUSH2 0xEBE JUMP JUMPDEST STOP JUMPDEST PUSH1 0x2 SLOAD PUSH2 0x461 JUMP JUMPDEST PUSH2 0x548 PUSH2 0x560 CALLDATASIZE PUSH1 0x4 PUSH2 0x40B1 JUMP JUMPDEST PUSH2 0xF08 JUMP JUMPDEST PUSH2 0x461 PUSH2 0x573 CALLDATASIZE PUSH1 0x4 PUSH2 0x4172 JUMP JUMPDEST PUSH2 0xF17 JUMP JUMPDEST PUSH2 0x4FA PUSH2 0x586 CALLDATASIZE PUSH1 0x4 PUSH2 0x4172 JUMP JUMPDEST PUSH2 0xF68 JUMP JUMPDEST PUSH2 0x548 PUSH2 0x599 CALLDATASIZE PUSH1 0x4 PUSH2 0x413E JUMP JUMPDEST PUSH2 0xF8C JUMP JUMPDEST PUSH2 0x461 PUSH32 0x6E71EDAE12B1B97F4D1F60370FEF10105FA2FAAE0126114A169C64845D6126C9 DUP2 JUMP JUMPDEST PUSH2 0x51D PUSH32 0x0 DUP2 JUMP JUMPDEST PUSH1 0x12 JUMPDEST PUSH1 0x40 MLOAD PUSH1 0xFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x46B JUMP JUMPDEST PUSH2 0x461 PUSH2 0x60F CALLDATASIZE PUSH1 0x4 PUSH2 0x41AF JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3C PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 DUP7 AND DUP4 MSTORE PUSH1 0x2 SWAP1 SWAP4 ADD SWAP1 MSTORE KECCAK256 SLOAD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x461 PUSH32 0x0 DUP2 JUMP JUMPDEST PUSH2 0x461 PUSH1 0x43 SLOAD DUP2 JUMP JUMPDEST PUSH2 0x4FA PUSH2 0x67D CALLDATASIZE PUSH1 0x4 PUSH2 0x40B1 JUMP JUMPDEST PUSH2 0xFD2 JUMP JUMPDEST PUSH2 0x461 PUSH32 0x9A9A49B990BA9BB39F8048C490A40AB25C18F55D208D5FBCF958261A9B48716D DUP2 JUMP JUMPDEST PUSH2 0x548 PUSH2 0x6B7 CALLDATASIZE PUSH1 0x4 PUSH2 0x4159 JUMP JUMPDEST PUSH2 0xFF4 JUMP JUMPDEST PUSH2 0x51D PUSH2 0x6CA CALLDATASIZE PUSH1 0x4 PUSH2 0x4159 JUMP JUMPDEST PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x46 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH2 0x461 PUSH2 0x6F3 CALLDATASIZE PUSH1 0x4 PUSH2 0x4159 JUMP JUMPDEST PUSH2 0x1159 JUMP JUMPDEST PUSH2 0x707 PUSH8 0xDE0B6B3A7640000 DUP2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD8 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x46B JUMP JUMPDEST PUSH2 0x75E PUSH2 0x72D CALLDATASIZE PUSH1 0x4 PUSH2 0x40B1 JUMP JUMPDEST PUSH1 0x6 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x0 SWAP3 DUP4 MSTORE PUSH1 0x40 DUP1 DUP5 KECCAK256 SWAP1 SWAP2 MSTORE SWAP1 DUP3 MSTORE SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB DUP1 DUP3 AND SWAP2 PUSH1 0x1 PUSH1 0x80 SHL SWAP1 DIV AND DUP3 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB SWAP4 DUP5 AND DUP2 MSTORE SWAP3 SWAP1 SWAP2 AND PUSH1 0x20 DUP4 ADD MSTORE ADD PUSH2 0x46B JUMP JUMPDEST PUSH2 0x548 PUSH2 0x78C CALLDATASIZE PUSH1 0x4 PUSH2 0x413E JUMP JUMPDEST PUSH2 0x1184 JUMP JUMPDEST PUSH1 0x4F SLOAD PUSH2 0x461 JUMP JUMPDEST PUSH2 0x461 PUSH32 0x0 DUP2 JUMP JUMPDEST PUSH2 0x51D PUSH2 0x7CE CALLDATASIZE PUSH1 0x4 PUSH2 0x41F1 JUMP JUMPDEST PUSH2 0x119C JUMP JUMPDEST PUSH2 0x461 PUSH2 0x7E1 CALLDATASIZE PUSH1 0x4 PUSH2 0x413E JUMP JUMPDEST PUSH2 0x11BE JUMP JUMPDEST PUSH2 0x461 PUSH2 0x7F4 CALLDATASIZE PUSH1 0x4 PUSH2 0x4159 JUMP JUMPDEST PUSH2 0x11D9 JUMP JUMPDEST PUSH2 0x548 PUSH2 0x807 CALLDATASIZE PUSH1 0x4 PUSH2 0x4159 JUMP JUMPDEST PUSH2 0x11FC JUMP JUMPDEST PUSH2 0x47C 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 DUP2 JUMP JUMPDEST PUSH2 0x548 PUSH2 0x123F JUMP JUMPDEST PUSH2 0x548 PUSH2 0x842 CALLDATASIZE PUSH1 0x4 PUSH2 0x4159 JUMP JUMPDEST PUSH2 0x124A JUMP JUMPDEST PUSH2 0x461 PUSH2 0x855 CALLDATASIZE PUSH1 0x4 PUSH2 0x413E JUMP JUMPDEST PUSH1 0x7 PUSH1 0x20 MSTORE PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 JUMP JUMPDEST PUSH2 0x461 PUSH2 0x875 CALLDATASIZE PUSH1 0x4 PUSH2 0x413E JUMP JUMPDEST PUSH1 0x3D PUSH1 0x20 MSTORE PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 JUMP JUMPDEST PUSH2 0x461 PUSH1 0x0 DUP2 JUMP JUMPDEST PUSH2 0x461 PUSH2 0x89D CALLDATASIZE PUSH1 0x4 PUSH2 0x413E JUMP JUMPDEST PUSH2 0x12BD JUMP JUMPDEST PUSH2 0x461 PUSH8 0xDE0B6B3A7640000 DUP2 JUMP JUMPDEST PUSH2 0x461 PUSH32 0x0 DUP2 JUMP JUMPDEST PUSH2 0x51D PUSH32 0x0 DUP2 JUMP JUMPDEST PUSH2 0x47C PUSH2 0x1398 JUMP JUMPDEST PUSH2 0x461 PUSH2 0x915 CALLDATASIZE PUSH1 0x4 PUSH2 0x4159 JUMP JUMPDEST PUSH2 0x13A7 JUMP JUMPDEST PUSH2 0x51D PUSH32 0x0 DUP2 JUMP JUMPDEST PUSH2 0x548 PUSH2 0x94F CALLDATASIZE PUSH1 0x4 PUSH2 0x40B1 JUMP JUMPDEST PUSH2 0x13B2 JUMP JUMPDEST PUSH2 0x548 PUSH2 0x962 CALLDATASIZE PUSH1 0x4 PUSH2 0x421B JUMP JUMPDEST PUSH2 0x13BD JUMP JUMPDEST PUSH2 0x461 PUSH1 0x1 DUP2 JUMP JUMPDEST PUSH2 0x4FA PUSH2 0x97D CALLDATASIZE PUSH1 0x4 PUSH2 0x40B1 JUMP JUMPDEST PUSH2 0x1414 JUMP JUMPDEST PUSH2 0x548 PUSH2 0x990 CALLDATASIZE PUSH1 0x4 PUSH2 0x425D JUMP JUMPDEST PUSH2 0x148F JUMP JUMPDEST PUSH2 0x4FA PUSH2 0x9A3 CALLDATASIZE PUSH1 0x4 PUSH2 0x40B1 JUMP JUMPDEST PUSH2 0x1514 JUMP JUMPDEST PUSH2 0x461 PUSH32 0x10D8D059343739EFCE7DAD10D09F0806DA52B252B3E6A7951920D2D6EC4102E5 DUP2 JUMP JUMPDEST PUSH2 0x5EF PUSH1 0x12 DUP2 JUMP JUMPDEST PUSH2 0x548 PUSH2 0x9E5 CALLDATASIZE PUSH1 0x4 PUSH2 0x42B2 JUMP JUMPDEST PUSH2 0x1522 JUMP JUMPDEST PUSH2 0x548 PUSH2 0x9F8 CALLDATASIZE PUSH1 0x4 PUSH2 0x40B1 JUMP JUMPDEST PUSH2 0x15E5 JUMP JUMPDEST PUSH2 0x548 PUSH2 0x15F0 JUMP JUMPDEST PUSH2 0x548 PUSH2 0xA13 CALLDATASIZE PUSH1 0x4 PUSH2 0x4345 JUMP JUMPDEST PUSH2 0x1662 JUMP JUMPDEST PUSH2 0x461 PUSH2 0xA26 CALLDATASIZE PUSH1 0x4 PUSH2 0x41F1 JUMP JUMPDEST PUSH2 0x1713 JUMP JUMPDEST PUSH2 0x461 PUSH2 0xA39 CALLDATASIZE PUSH1 0x4 PUSH2 0x413E JUMP JUMPDEST PUSH1 0x44 PUSH1 0x20 MSTORE PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 JUMP JUMPDEST PUSH2 0x461 PUSH2 0xA59 CALLDATASIZE PUSH1 0x4 PUSH2 0x4439 JUMP JUMPDEST PUSH2 0x173B JUMP JUMPDEST PUSH1 0x8 SLOAD PUSH2 0x51D SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 JUMP JUMPDEST PUSH2 0x548 PUSH2 0xA7F CALLDATASIZE PUSH1 0x4 PUSH2 0x4486 JUMP JUMPDEST PUSH2 0x1764 JUMP JUMPDEST PUSH2 0x51D PUSH32 0x0 DUP2 JUMP JUMPDEST PUSH2 0x548 PUSH2 0xAB9 CALLDATASIZE PUSH1 0x4 PUSH2 0x44DE JUMP JUMPDEST PUSH2 0x1929 JUMP JUMPDEST PUSH2 0x461 PUSH1 0x2 DUP2 JUMP JUMPDEST PUSH2 0x548 PUSH2 0xAD4 CALLDATASIZE PUSH1 0x4 PUSH2 0x41F1 JUMP JUMPDEST PUSH2 0x1AF1 JUMP JUMPDEST PUSH2 0x461 PUSH2 0xAE7 CALLDATASIZE PUSH1 0x4 PUSH2 0x41AF JUMP JUMPDEST PUSH2 0x1AFC JUMP JUMPDEST PUSH1 0x3 PUSH2 0x461 JUMP JUMPDEST PUSH1 0x51 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD8 SHL SUB AND PUSH2 0x707 JUMP JUMPDEST PUSH2 0x548 PUSH2 0xB12 CALLDATASIZE PUSH1 0x4 PUSH2 0x4549 JUMP JUMPDEST PUSH2 0x1B27 JUMP JUMPDEST PUSH1 0x51 SLOAD PUSH2 0x4FA SWAP1 PUSH1 0x1 PUSH1 0xD8 SHL SWAP1 DIV PUSH1 0xFF AND DUP2 JUMP JUMPDEST PUSH2 0xB67 PUSH2 0xB39 CALLDATASIZE PUSH1 0x4 PUSH2 0x413E JUMP JUMPDEST PUSH1 0x3C PUSH1 0x20 MSTORE PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x1 SWAP1 SWAP2 ADD SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB DUP1 DUP4 AND SWAP3 PUSH1 0x1 PUSH1 0x80 SHL SWAP1 DIV AND SWAP1 DUP4 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB SWAP5 DUP6 AND DUP2 MSTORE SWAP4 SWAP1 SWAP3 AND PUSH1 0x20 DUP5 ADD MSTORE SWAP1 DUP3 ADD MSTORE PUSH1 0x60 ADD PUSH2 0x46B JUMP JUMPDEST PUSH1 0x50 SLOAD PUSH2 0x461 JUMP JUMPDEST PUSH2 0x548 PUSH2 0xBA3 CALLDATASIZE PUSH1 0x4 PUSH2 0x457C JUMP JUMPDEST PUSH2 0x1B3E JUMP JUMPDEST PUSH2 0x548 PUSH2 0xBB6 CALLDATASIZE PUSH1 0x4 PUSH2 0x4159 JUMP JUMPDEST PUSH2 0x1D12 JUMP JUMPDEST PUSH1 0x0 PUSH2 0xBC7 PUSH1 0x0 PUSH2 0xEA3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xC00 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xBF7 SWAP1 PUSH2 0x45AE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x51 SLOAD PUSH1 0x1 PUSH1 0xD8 SHL SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0xC5A 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 0x50524556494F55535F534C415348494E475F4E4F545F534554544C4544000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xBF7 JUMP JUMPDEST PUSH1 0x0 DUP3 GT PUSH2 0xC98 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0xB PUSH1 0x24 DUP3 ADD MSTORE PUSH11 0x16915493D7D05353D55395 PUSH1 0xAA SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xBF7 JUMP JUMPDEST PUSH1 0x0 PUSH2 0xCA3 PUSH1 0x2 SLOAD SWAP1 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0xCB0 DUP3 PUSH2 0x1159 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0xCC9 PUSH1 0x50 SLOAD DUP4 PUSH2 0x1DE3 SWAP1 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST SWAP1 POP DUP1 DUP6 GT ISZERO PUSH2 0xCD7 JUMPI DUP1 SWAP5 POP JUMPDEST PUSH32 0x0 PUSH2 0xD02 DUP7 DUP5 PUSH2 0x45FB JUMP JUMPDEST LT ISZERO PUSH2 0xD47 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 PUSH20 0x52454D41494E494E475F4C545F4D494E494D554D PUSH1 0x60 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xBF7 JUMP JUMPDEST PUSH1 0x51 DUP1 SLOAD PUSH1 0xFF PUSH1 0xD8 SHL NOT AND PUSH1 0x1 PUSH1 0xD8 SHL OR SWAP1 SSTORE PUSH2 0xD75 PUSH2 0xD70 PUSH2 0xD6A DUP8 DUP6 PUSH2 0x45FB JUMP JUMPDEST DUP6 PUSH2 0x1E6F JUMP JUMPDEST PUSH2 0x1EAD JUMP JUMPDEST PUSH2 0xDA9 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND DUP8 DUP8 PUSH2 0x1F50 JUMP JUMPDEST DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x4ED05E9673C26D2ED44F7EF6A7F2942DF0EE3B5E1E17DB4B99F9DCD261A339CD DUP7 PUSH1 0x40 MLOAD PUSH2 0xDE4 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 DUP5 SWAP4 POP POP POP POP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0xE08 SWAP1 PUSH2 0x460E 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 0xE34 SWAP1 PUSH2 0x460E JUMP JUMPDEST DUP1 ISZERO PUSH2 0xE81 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0xE56 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0xE81 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 0xE64 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0xE99 DUP2 DUP6 DUP6 PUSH2 0x1FB3 JUMP JUMPDEST POP PUSH1 0x1 SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x45 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH2 0xEC8 PUSH1 0x2 PUSH2 0xEA3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xEF8 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xBF7 SWAP1 PUSH2 0x4648 JUMP JUMPDEST PUSH2 0xF03 DUP4 DUP4 DUP4 PUSH2 0x20D7 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0xF13 CALLER DUP4 DUP4 PUSH2 0x20D7 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xF23 PUSH1 0x2 PUSH2 0xEA3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xF53 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xBF7 SWAP1 PUSH2 0x4648 JUMP JUMPDEST PUSH2 0xF5E DUP5 DUP5 DUP5 PUSH2 0x2458 JUMP JUMPDEST SWAP1 POP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0xF76 DUP6 DUP3 DUP6 PUSH2 0x2590 JUMP JUMPDEST PUSH2 0xF81 DUP6 DUP6 DUP6 PUSH2 0x2604 JUMP JUMPDEST POP PUSH1 0x1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH2 0xF96 PUSH1 0x2 PUSH2 0xEA3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0xFC6 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xBF7 SWAP1 PUSH2 0x4648 JUMP JUMPDEST PUSH2 0xFCF DUP2 PUSH2 0x2735 JUMP JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0xE99 DUP2 DUP6 DUP6 PUSH2 0xFE5 DUP4 DUP4 PUSH2 0x1AFC JUMP JUMPDEST PUSH2 0xFEF SWAP2 SWAP1 PUSH2 0x467F JUMP JUMPDEST PUSH2 0x1FB3 JUMP JUMPDEST PUSH32 0x0 DUP2 LT ISZERO PUSH2 0x1058 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x11 PUSH1 0x24 DUP3 ADD MSTORE PUSH17 0x414D4F554E545F4C545F4D494E494D554D PUSH1 0x78 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xBF7 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1063 PUSH1 0x2 SLOAD SWAP1 JUMP JUMPDEST SWAP1 POP PUSH32 0x0 DUP2 LT ISZERO PUSH2 0x10C9 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x11 PUSH1 0x24 DUP3 ADD MSTORE PUSH17 0x5348415245535F4C545F4D494E494D554D PUSH1 0x78 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xBF7 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x10D4 DUP3 PUSH2 0x1159 JUMP JUMPDEST SWAP1 POP PUSH2 0x10EC PUSH2 0xD70 PUSH2 0x10E6 DUP6 DUP5 PUSH2 0x467F JUMP JUMPDEST DUP5 PUSH2 0x1E6F JUMP JUMPDEST PUSH2 0x1121 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND CALLER ADDRESS DUP7 PUSH2 0x2818 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP4 DUP2 MSTORE PUSH32 0x278E51D3323FBF18B9FB8DF3F8B97E31B145BC1146C52E764CF4AA1BFC4BA17D SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP POP POP JUMP JUMPDEST PUSH1 0x51 SLOAD PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xD8 SHL SUB AND PUSH2 0x117A DUP4 PUSH8 0xDE0B6B3A7640000 PUSH2 0x4692 JUMP JUMPDEST PUSH2 0xDF3 SWAP2 SWAP1 PUSH2 0x46A9 JUMP JUMPDEST PUSH2 0x1190 CALLER DUP3 PUSH1 0x0 PUSH2 0x2850 JUMP JUMPDEST PUSH2 0xFCF CALLER DUP3 PUSH1 0x1 PUSH2 0x2850 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x11A8 DUP4 PUSH2 0x2951 JUMP JUMPDEST SWAP3 POP POP POP PUSH2 0x11B6 DUP5 DUP3 PUSH2 0x2990 JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP 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 PUSH1 0x51 SLOAD PUSH1 0x0 SWAP1 PUSH8 0xDE0B6B3A7640000 SWAP1 PUSH2 0x117A SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xD8 SHL SUB AND DUP5 PUSH2 0x4692 JUMP JUMPDEST PUSH2 0x1206 PUSH1 0x0 PUSH2 0xEA3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x1236 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xBF7 SWAP1 PUSH2 0x45AE JUMP JUMPDEST PUSH2 0xFCF DUP2 PUSH2 0x29BB JUMP JUMPDEST PUSH2 0x1248 CALLER PUSH2 0x2735 JUMP JUMPDEST JUMP JUMPDEST PUSH2 0x1254 PUSH1 0x1 PUSH2 0xEA3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x12B4 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 0x43414C4C45525F4E4F545F434F4F4C444F574E5F41444D494E00000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xBF7 JUMP JUMPDEST PUSH2 0xFCF DUP2 PUSH2 0x2A41 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 DUP1 DUP3 MSTORE DUP2 DUP4 ADD SWAP1 SWAP3 MSTORE PUSH1 0x0 SWAP2 DUP3 SWAP2 SWAP1 DUP2 PUSH1 0x20 ADD JUMPDEST PUSH2 0x1304 PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP2 MSTORE POP SWAP1 JUMP JUMPDEST DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 SWAP1 SUB SWAP1 DUP2 PUSH2 0x12D7 JUMPI SWAP1 POP POP SWAP1 POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE DUP1 ADDRESS PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x133C DUP6 PUSH2 0x11BE JUMP JUMPDEST DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x134A PUSH1 0x2 SLOAD SWAP1 JUMP JUMPDEST DUP2 MSTORE POP DUP2 PUSH1 0x0 DUP2 MLOAD DUP2 LT PUSH2 0x1360 JUMPI PUSH2 0x1360 PUSH2 0x46CB JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 SWAP1 MSTORE POP PUSH2 0x1375 DUP4 DUP3 PUSH2 0x2A76 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3D PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH2 0xF61 SWAP2 SWAP1 PUSH2 0x467F JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0xE08 SWAP1 PUSH2 0x460E JUMP JUMPDEST PUSH1 0x0 PUSH2 0xDF3 PUSH1 0x2 SLOAD SWAP1 JUMP JUMPDEST PUSH2 0xF03 CALLER DUP4 DUP4 PUSH2 0x2458 JUMP JUMPDEST PUSH2 0x13C7 PUSH1 0x2 PUSH2 0xEA3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x13F7 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xBF7 SWAP1 PUSH2 0x4648 JUMP JUMPDEST PUSH2 0x1402 DUP5 DUP5 DUP5 PUSH2 0x2458 JUMP JUMPDEST POP PUSH2 0x140E DUP5 DUP5 DUP4 PUSH2 0x20D7 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 CALLER DUP2 PUSH2 0x1422 DUP3 DUP7 PUSH2 0x1AFC JUMP JUMPDEST SWAP1 POP DUP4 DUP2 LT ISZERO PUSH2 0x1482 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 PUSH5 0x207A65726F PUSH1 0xD8 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0xBF7 JUMP JUMPDEST PUSH2 0xF81 DUP3 DUP7 DUP7 DUP5 SUB PUSH2 0x1FB3 JUMP JUMPDEST PUSH1 0x9 SLOAD PUSH1 0x3 SWAP1 DUP2 GT PUSH2 0x14FA 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 0x436F6E747261637420696E7374616E63652068617320616C7265616479206265 PUSH1 0x44 DUP3 ADD MSTORE PUSH14 0x195B881A5B9A5D1A585B1A5E9959 PUSH1 0x92 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0xBF7 JUMP JUMPDEST PUSH1 0x9 DUP2 SWAP1 SSTORE PUSH2 0x150C DUP7 DUP7 DUP7 DUP7 DUP7 PUSH2 0x2B79 JUMP JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 CALLER PUSH2 0xE99 DUP2 DUP6 DUP6 PUSH2 0x2604 JUMP JUMPDEST PUSH1 0x0 DUP3 DUP2 MSTORE PUSH1 0x45 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP3 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x1582 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 PUSH21 0x21A0A62622A92FA727AA2FA927A622AFA0A226A4A7 PUSH1 0x59 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xBF7 JUMP JUMPDEST PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x46 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE SWAP2 MLOAD DUP6 DUP2 MSTORE PUSH32 0xC3D1BF52795A20771EE6DE3E59948FD83E10DB956122D4709A3B86C512963855 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP JUMP JUMPDEST PUSH2 0xF13 CALLER DUP4 DUP4 PUSH2 0x2C9D JUMP JUMPDEST PUSH2 0x15FA PUSH1 0x0 PUSH2 0xEA3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x162A JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xBF7 SWAP1 PUSH2 0x45AE JUMP JUMPDEST PUSH1 0x51 DUP1 SLOAD PUSH1 0xFF PUSH1 0xD8 SHL NOT AND SWAP1 SSTORE PUSH1 0x40 MLOAD PUSH32 0xCDEE157E87BA915BE681D4FA3F3D511AFE7348ECA06448A3ACCD6AC227FA40AF SWAP1 PUSH1 0x0 SWAP1 LOG1 JUMP JUMPDEST CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND EQ PUSH2 0x16D2 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 PUSH21 0x27A7262CAFA2A6A4A9A9A4A7A72FA6A0A720A3A2A9 PUSH1 0x59 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xBF7 JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP2 MLOAD DUP2 LT ISZERO PUSH2 0x1709 JUMPI PUSH1 0x2 SLOAD DUP3 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x16F3 JUMPI PUSH2 0x16F3 PUSH2 0x46CB JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD DUP2 ADD MLOAD ADD MSTORE PUSH1 0x1 ADD PUSH2 0x16D5 JUMP JUMPDEST POP PUSH2 0xFCF DUP2 PUSH2 0x2E4A JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH2 0x1721 DUP5 PUSH2 0x2951 JUMP JUMPDEST POP SWAP2 POP SWAP2 POP PUSH2 0x1732 DUP3 DUP3 DUP8 NUMBER PUSH2 0x2FAE JUMP JUMPDEST SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH2 0x1749 DUP5 PUSH2 0x2951 JUMP JUMPDEST POP SWAP2 POP SWAP2 POP PUSH2 0x175A DUP3 DUP3 DUP9 DUP9 PUSH2 0x2FAE JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH32 0x9A9A49B990BA9BB39F8048C490A40AB25C18F55D208D5FBCF958261A9B48716D PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP9 AND SWAP2 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x60 DUP2 ADD DUP7 SWAP1 MSTORE PUSH1 0x80 DUP2 ADD DUP6 SWAP1 MSTORE PUSH1 0x0 SWAP1 PUSH1 0xA0 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 PUSH1 0x43 SLOAD DUP3 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x17E2 SWAP3 SWAP2 SWAP1 PUSH2 0x46E1 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F NOT DUP2 DUP5 SUB ADD DUP2 MSTORE DUP3 DUP3 MSTORE DUP1 MLOAD PUSH1 0x20 SWAP2 DUP3 ADD KECCAK256 PUSH1 0x0 DUP1 DUP6 MSTORE SWAP2 DUP5 ADD DUP1 DUP5 MSTORE DUP2 SWAP1 MSTORE PUSH1 0xFF DUP10 AND SWAP3 DUP5 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x60 DUP4 ADD DUP8 SWAP1 MSTORE PUSH1 0x80 DUP4 ADD DUP7 SWAP1 MSTORE SWAP1 SWAP3 POP SWAP1 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 0x184D 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 0x1880 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xBF7 SWAP1 PUSH2 0x46FC JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x44 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD SWAP2 PUSH2 0x18A4 DUP4 PUSH2 0x4727 JUMP JUMPDEST SWAP2 SWAP1 POP SSTORE DUP9 EQ PUSH2 0x18E6 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0xD PUSH1 0x24 DUP3 ADD MSTORE PUSH13 0x494E56414C49445F4E4F4E4345 PUSH1 0x98 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xBF7 JUMP JUMPDEST DUP7 TIMESTAMP GT ISZERO PUSH2 0x1906 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xBF7 SWAP1 PUSH2 0x4740 JUMP JUMPDEST PUSH2 0x1912 DUP2 DUP11 PUSH1 0x0 PUSH2 0x2850 JUMP JUMPDEST PUSH2 0x191E DUP2 DUP11 PUSH1 0x1 PUSH2 0x2850 JUMP JUMPDEST POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND PUSH2 0x196F JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0xD PUSH1 0x24 DUP3 ADD MSTORE PUSH13 0x24A72B20A624A22FA7ABA722A9 PUSH1 0x99 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xBF7 JUMP JUMPDEST DUP4 TIMESTAMP GT ISZERO PUSH2 0x198F JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xBF7 SWAP1 PUSH2 0x4740 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 DUP2 AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x44 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SLOAD PUSH1 0x43 SLOAD DUP3 MLOAD PUSH32 0x6E71EDAE12B1B97F4D1F60370FEF10105FA2FAAE0126114A169C64845D6126C9 DUP2 DUP7 ADD MSTORE DUP1 DUP5 ADD SWAP7 SWAP1 SWAP7 MSTORE SWAP6 DUP13 AND PUSH1 0x60 DUP7 ADD MSTORE PUSH1 0x80 DUP6 ADD DUP12 SWAP1 MSTORE PUSH1 0xA0 DUP6 ADD DUP2 SWAP1 MSTORE PUSH1 0xC0 DUP1 DUP7 ADD DUP12 SWAP1 MSTORE DUP3 MLOAD DUP1 DUP8 SUB SWAP1 SWAP2 ADD DUP2 MSTORE PUSH1 0xE0 DUP7 ADD SWAP1 SWAP3 MSTORE DUP2 MLOAD SWAP2 SWAP1 SWAP3 ADD KECCAK256 SWAP1 SWAP4 SWAP2 SWAP3 PUSH2 0x1A26 SWAP3 SWAP2 SWAP1 PUSH2 0x100 ADD PUSH2 0x46E1 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F NOT DUP2 DUP5 SUB ADD DUP2 MSTORE DUP3 DUP3 MSTORE DUP1 MLOAD PUSH1 0x20 SWAP2 DUP3 ADD KECCAK256 PUSH1 0x0 DUP5 MSTORE SWAP1 DUP4 ADD DUP1 DUP4 MSTORE DUP2 SWAP1 MSTORE PUSH1 0xFF DUP9 AND SWAP2 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x60 DUP3 ADD DUP7 SWAP1 MSTORE PUSH1 0x80 DUP3 ADD DUP6 SWAP1 MSTORE SWAP2 POP 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 0x1A8E JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP PUSH1 0x20 PUSH1 0x40 MLOAD SUB MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP10 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x1AC8 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xBF7 SWAP1 PUSH2 0x46FC JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP10 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x44 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH1 0x1 DUP4 ADD SWAP1 SSTORE PUSH2 0x191E DUP10 DUP10 DUP10 PUSH2 0x1FB3 JUMP JUMPDEST PUSH2 0xF13 CALLER DUP4 DUP4 PUSH2 0x2850 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 0x1B32 CALLER DUP5 DUP5 PUSH2 0x2458 JUMP JUMPDEST POP PUSH2 0xF03 CALLER DUP5 DUP4 PUSH2 0x20D7 JUMP JUMPDEST PUSH1 0x0 PUSH32 0x10D8D059343739EFCE7DAD10D09F0806DA52B252B3E6A7951920D2D6EC4102E5 DUP9 DUP9 PUSH1 0x1 DUP2 GT ISZERO PUSH2 0x1B74 JUMPI PUSH2 0x1B74 PUSH2 0x476C JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x20 DUP2 ADD SWAP5 SWAP1 SWAP5 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP3 AND SWAP2 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 DUP2 ADD DUP8 SWAP1 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 PUSH1 0x43 SLOAD DUP3 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x1BD7 SWAP3 SWAP2 SWAP1 PUSH2 0x46E1 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F NOT DUP2 DUP5 SUB ADD DUP2 MSTORE DUP3 DUP3 MSTORE DUP1 MLOAD PUSH1 0x20 SWAP2 DUP3 ADD KECCAK256 PUSH1 0x0 DUP1 DUP6 MSTORE SWAP2 DUP5 ADD DUP1 DUP5 MSTORE DUP2 SWAP1 MSTORE PUSH1 0xFF DUP10 AND SWAP3 DUP5 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x60 DUP4 ADD DUP8 SWAP1 MSTORE PUSH1 0x80 DUP4 ADD DUP7 SWAP1 MSTORE SWAP1 SWAP3 POP SWAP1 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 0x1C42 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 0x1C75 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xBF7 SWAP1 PUSH2 0x46FC JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x44 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD SWAP2 PUSH2 0x1C99 DUP4 PUSH2 0x4727 JUMP JUMPDEST SWAP2 SWAP1 POP SSTORE DUP9 EQ PUSH2 0x1CDB JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0xD PUSH1 0x24 DUP3 ADD MSTORE PUSH13 0x494E56414C49445F4E4F4E4345 PUSH1 0x98 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xBF7 JUMP JUMPDEST DUP7 TIMESTAMP GT ISZERO PUSH2 0x1CFB JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xBF7 SWAP1 PUSH2 0x4740 JUMP JUMPDEST PUSH2 0x1D06 DUP2 DUP12 DUP12 PUSH2 0x2850 JUMP JUMPDEST POP POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x46 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD DUP2 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER EQ PUSH2 0x1D7A 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 0x43414C4C45525F4E4F545F50454E44494E475F524F4C455F41444D494E000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xBF7 JUMP JUMPDEST PUSH1 0x0 DUP3 DUP2 MSTORE PUSH1 0x45 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 DUP1 SLOAD CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT SWAP2 DUP3 AND DUP2 OR SWAP1 SWAP3 SSTORE PUSH1 0x46 DUP5 MSTORE SWAP4 DUP3 SWAP1 KECCAK256 DUP1 SLOAD SWAP1 SWAP5 AND SWAP1 SWAP4 SSTORE MLOAD DUP5 DUP2 MSTORE PUSH32 0x83A9DDAD961DCB7C6894C9585A16FF7792C2EC8281256A3CC7303AE830152DCF SWAP2 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 ISZERO DUP1 PUSH2 0x1DF0 JUMPI POP DUP2 ISZERO JUMPDEST ISZERO PUSH2 0x1DFD JUMPI POP PUSH1 0x0 PUSH2 0xDF3 JUMP JUMPDEST PUSH2 0x1E09 DUP3 PUSH1 0x0 NOT PUSH2 0x46A9 JUMP JUMPDEST DUP4 GT ISZERO PUSH2 0x1E58 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 0x4D4154485F4D554C5449504C49434154494F4E5F4F564552464C4F5700000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xBF7 JUMP JUMPDEST PUSH2 0x2710 PUSH2 0x1E65 DUP4 DUP6 PUSH2 0x4692 JUMP JUMPDEST PUSH2 0xF61 SWAP2 SWAP1 PUSH2 0x46A9 JUMP JUMPDEST PUSH1 0x0 PUSH2 0xF61 DUP4 PUSH1 0x1 DUP2 PUSH2 0x1E8A PUSH8 0xDE0B6B3A7640000 DUP8 PUSH2 0x4692 JUMP JUMPDEST PUSH2 0x1E94 SWAP2 SWAP1 PUSH2 0x467F JUMP JUMPDEST PUSH2 0x1E9E SWAP2 SWAP1 PUSH2 0x45FB JUMP JUMPDEST PUSH2 0x1EA8 SWAP2 SWAP1 PUSH2 0x46A9 JUMP JUMPDEST PUSH2 0x3088 JUMP JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xD8 SHL SUB AND PUSH1 0x0 SUB PUSH2 0x1EFB 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 PUSH18 0x5A45524F5F45584348414E47455F52415445 PUSH1 0x70 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xBF7 JUMP JUMPDEST PUSH1 0x51 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD8 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xD8 SHL SUB DUP4 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE PUSH1 0x40 MLOAD SWAP1 DUP2 MSTORE PUSH32 0xA9C433F9734BAA3CF48B209454BB0ACE054E191F677BA50E74B696C0D35EF262 SWAP1 PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 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 0xF03 SWAP1 DUP5 SWAP1 PUSH4 0xA9059CBB PUSH1 0xE0 SHL 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 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT SWAP1 SWAP4 AND SWAP3 SWAP1 SWAP3 OR SWAP1 SWAP2 MSTORE PUSH2 0x30F5 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x2015 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 PUSH4 0x72657373 PUSH1 0xE0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0xBF7 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x2076 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 PUSH2 0x7373 PUSH1 0xF0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0xBF7 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 DUP1 PUSH1 0x0 SUB PUSH2 0x20F7 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xBF7 SWAP1 PUSH2 0x4782 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3E PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 DUP3 MLOAD DUP1 DUP5 ADD SWAP1 SWAP4 MSTORE SLOAD PUSH5 0xFFFFFFFFFF DUP2 AND DUP4 MSTORE PUSH1 0x1 PUSH1 0x28 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0xD8 SHL SUB AND SWAP1 DUP3 ADD MSTORE PUSH1 0x51 SLOAD PUSH1 0x1 PUSH1 0xD8 SHL SWAP1 DIV PUSH1 0xFF AND PUSH2 0x2237 JUMPI PUSH1 0x4F SLOAD DUP2 MLOAD PUSH2 0x2161 SWAP2 SWAP1 PUSH5 0xFFFFFFFFFF AND PUSH2 0x467F JUMP JUMPDEST TIMESTAMP LT ISZERO PUSH2 0x21A8 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 PUSH21 0x24A729AAA32324A1A4A2A72A2FA1A7A7A62227ABA7 PUSH1 0x59 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xBF7 JUMP JUMPDEST PUSH1 0x4F SLOAD DUP2 MLOAD PUSH32 0x0 SWAP2 PUSH2 0x21DF SWAP2 PUSH5 0xFFFFFFFFFF AND PUSH2 0x467F JUMP JUMPDEST PUSH2 0x21E9 SWAP1 TIMESTAMP PUSH2 0x45FB JUMP JUMPDEST GT ISZERO PUSH2 0x2237 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 0x554E5354414B455F57494E444F575F46494E4953484544000000000000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xBF7 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2242 DUP6 PUSH2 0x11BE JUMP JUMPDEST PUSH1 0x51 SLOAD SWAP1 SWAP2 POP PUSH1 0x0 SWAP1 PUSH1 0x1 PUSH1 0xD8 SHL SWAP1 DIV PUSH1 0xFF AND PUSH2 0x226C JUMPI DUP3 PUSH1 0x20 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD8 SHL SUB AND PUSH2 0x226E JUMP JUMPDEST DUP2 JUMPDEST SWAP1 POP DUP1 PUSH1 0x0 SUB PUSH2 0x22C0 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 0x494E56414C49445F5A45524F5F4D41585F52454445454D41424C450000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xBF7 JUMP JUMPDEST PUSH1 0x0 DUP2 DUP6 GT PUSH2 0x22CF JUMPI DUP5 PUSH2 0x22D1 JUMP JUMPDEST DUP2 JUMPDEST SWAP1 POP PUSH2 0x22DF DUP8 DUP5 PUSH1 0x1 PUSH2 0x31C7 JUMP JUMPDEST POP PUSH1 0x0 PUSH2 0x22EB DUP3 PUSH2 0x1159 JUMP JUMPDEST SWAP1 POP PUSH2 0x22F7 DUP9 DUP4 PUSH2 0x3276 JUMP JUMPDEST DUP5 MLOAD PUSH5 0xFFFFFFFFFF AND ISZERO PUSH2 0x23C4 JUMPI DUP2 DUP6 PUSH1 0x20 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD8 SHL SUB AND PUSH2 0x231E SWAP2 SWAP1 PUSH2 0x45FB JUMP JUMPDEST PUSH1 0x0 SUB PUSH2 0x2343 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP9 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3E PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SSTORE PUSH2 0x23C4 JUMP JUMPDEST PUSH2 0x234C DUP3 PUSH2 0x33A8 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP10 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3E PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH2 0x2388 SWAP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xB8 SHL SUB AND SWAP1 PUSH1 0x1 PUSH1 0x28 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0xD8 SHL SUB AND PUSH2 0x47AF JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP10 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3E PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD8 SHL SUB SWAP3 SWAP1 SWAP3 AND PUSH1 0x1 PUSH1 0x28 SHL MUL PUSH5 0xFFFFFFFFFF SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMPDEST PUSH2 0x23F8 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND DUP9 DUP4 PUSH2 0x1F50 JUMP JUMPDEST DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP9 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x3F693FFF038BB8A046AA76D9516190AC7444F7D69CF952C4CBDC086FDEF2D6FC DUP4 DUP6 PUSH1 0x40 MLOAD PUSH2 0x2446 SWAP3 SWAP2 SWAP1 SWAP2 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x0 SUB PUSH2 0x247A JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xBF7 SWAP1 PUSH2 0x4782 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2490 DUP6 PUSH2 0x2489 DUP8 PUSH2 0x11BE JUMP JUMPDEST PUSH1 0x0 PUSH2 0x31C7 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP2 DUP5 GT PUSH2 0x24A1 JUMPI DUP4 PUSH2 0x24A3 JUMP JUMPDEST DUP2 JUMPDEST SWAP1 POP DUP1 PUSH1 0x0 SUB PUSH2 0x24C5 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xBF7 SWAP1 PUSH2 0x4782 JUMP JUMPDEST PUSH2 0x24CF DUP2 DUP4 PUSH2 0x45FB JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP9 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3D PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SWAP2 SWAP1 SWAP2 SSTORE PUSH2 0x253A SWAP1 PUSH32 0x0 AND PUSH32 0x0 DUP8 DUP5 PUSH2 0x2818 JUMP JUMPDEST DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x9310CCFCB8DE723F578A9E4282EA9F521F05AE40DC08F3068DFAD528A65EE3C7 DUP4 PUSH1 0x40 MLOAD PUSH2 0x257F SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x259C DUP5 DUP5 PUSH2 0x1AFC JUMP JUMPDEST SWAP1 POP PUSH1 0x0 NOT DUP2 EQ PUSH2 0x140E JUMPI DUP2 DUP2 LT ISZERO PUSH2 0x25F7 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 0x45524332303A20696E73756666696369656E7420616C6C6F77616E6365000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xBF7 JUMP JUMPDEST PUSH2 0x140E DUP5 DUP5 DUP5 DUP5 SUB PUSH2 0x1FB3 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x260F DUP5 PUSH2 0x11BE JUMP JUMPDEST SWAP1 POP PUSH2 0x261D DUP5 DUP3 PUSH1 0x1 PUSH2 0x31C7 JUMP JUMPDEST POP DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x272A JUMPI PUSH1 0x0 PUSH2 0x2642 DUP5 PUSH2 0x11BE JUMP JUMPDEST SWAP1 POP PUSH2 0x2650 DUP5 DUP3 PUSH1 0x1 PUSH2 0x31C7 JUMP JUMPDEST POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3E PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 DUP3 MLOAD DUP1 DUP5 ADD SWAP1 SWAP4 MSTORE SLOAD PUSH5 0xFFFFFFFFFF DUP2 AND DUP1 DUP5 MSTORE PUSH1 0x1 PUSH1 0x28 SHL SWAP1 SWAP2 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0xD8 SHL SUB AND SWAP2 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE ISZERO PUSH2 0x2727 JUMPI DUP4 DUP4 SUB PUSH2 0x26C3 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3E PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SSTORE PUSH2 0x2727 JUMP JUMPDEST PUSH1 0x20 DUP2 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD8 SHL SUB AND PUSH2 0x26DB DUP6 DUP6 PUSH2 0x45FB JUMP JUMPDEST LT ISZERO PUSH2 0x2727 JUMPI PUSH2 0x26EB DUP5 DUP5 PUSH2 0x45FB JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3E PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xD8 SHL SUB SWAP3 SWAP1 SWAP3 AND PUSH1 0x1 PUSH1 0x28 SHL MUL PUSH5 0xFFFFFFFFFF SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE JUMPDEST POP POP JUMPDEST PUSH2 0x140E DUP5 DUP5 DUP5 PUSH2 0x3411 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2740 DUP3 PUSH2 0x11BE JUMP JUMPDEST SWAP1 POP DUP1 PUSH1 0x0 SUB PUSH2 0x2792 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 0x494E56414C49445F42414C414E43455F4F4E5F434F4F4C444F574E0000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xBF7 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD DUP3 MSTORE PUSH5 0xFFFFFFFFFF TIMESTAMP DUP2 AND DUP3 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xD8 SHL SUB DUP1 DUP6 AND PUSH1 0x20 DUP1 DUP6 ADD SWAP2 DUP3 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP9 AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x3E SWAP1 SWAP3 MSTORE SWAP1 DUP7 SWAP1 KECCAK256 SWAP5 MLOAD SWAP2 MLOAD SWAP1 SWAP3 AND PUSH1 0x1 PUSH1 0x28 SHL MUL SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SWAP2 SSTORE SWAP1 MLOAD PUSH32 0x8A05F911D8AB7FC50FEC37EF4BA7F9BFCB1A3C191C81DCD824AD0946C4E20D65 SWAP1 PUSH2 0x1DD7 SWAP1 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 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 0x140E SWAP1 DUP6 SWAP1 PUSH4 0x23B872DD PUSH1 0xE0 SHL SWAP1 PUSH1 0x84 ADD PUSH2 0x1F7C JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x289A JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x11 PUSH1 0x24 DUP3 ADD MSTORE PUSH17 0x494E56414C49445F44454C454741544545 PUSH1 0x78 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xBF7 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x28A5 DUP3 PUSH2 0x2951 JUMP JUMPDEST SWAP3 POP POP POP PUSH1 0x0 PUSH2 0x28B4 DUP6 PUSH2 0x11BE JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x28C2 DUP7 DUP5 PUSH2 0x2990 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 DUP2 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP7 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND SWAP2 DUP9 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE SWAP1 POP PUSH2 0x28FE DUP2 DUP7 DUP5 DUP8 PUSH2 0x35B5 JUMP JUMPDEST DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0xE8D51C8E11BD570DB1734C8EC775785330E77007FEED45C43B608EF33FF914BD DUP7 PUSH1 0x40 MLOAD PUSH2 0x2941 SWAP2 SWAP1 PUSH2 0x47F0 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP1 DUP1 DUP5 PUSH1 0x1 DUP2 GT ISZERO PUSH2 0x2968 JUMPI PUSH2 0x2968 PUSH2 0x476C JUMP JUMPDEST SUB PUSH2 0x297D JUMPI POP PUSH1 0x6 SWAP2 POP PUSH1 0x7 SWAP1 POP PUSH1 0x3F PUSH2 0x2989 JUMP JUMPDEST POP PUSH1 0x40 SWAP2 POP PUSH1 0x41 SWAP1 POP PUSH1 0x42 JUMPDEST SWAP2 SWAP4 SWAP1 SWAP3 POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP4 SWAP1 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD SWAP1 SWAP2 AND DUP1 PUSH2 0xF61 JUMPI DUP4 SWAP2 POP POP PUSH2 0xDF3 JUMP JUMPDEST PUSH2 0x2710 DUP2 LT PUSH2 0x2A0C 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 0x494E56414C49445F534C415348494E475F50455243454E544147450000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xBF7 JUMP JUMPDEST PUSH1 0x50 DUP2 SWAP1 SSTORE PUSH1 0x40 MLOAD DUP2 DUP2 MSTORE PUSH32 0xB79C2D6C7F5C95EEC9DC05AFFC0ED002620A4EC6D72B7B0744CC8638168C600A SWAP1 PUSH1 0x20 ADD PUSH2 0x1F45 JUMP JUMPDEST PUSH1 0x4F DUP2 SWAP1 SSTORE PUSH1 0x40 MLOAD DUP2 DUP2 MSTORE PUSH32 0xBBF67247B5C97564E30FFC0A355E71C006836DE7B9149E09E3D5D6054CB03355 SWAP1 PUSH1 0x20 ADD PUSH2 0x1F45 JUMP JUMPDEST PUSH1 0x0 DUP1 DUP1 JUMPDEST DUP4 MLOAD DUP2 LT ISZERO PUSH2 0x2B71 JUMPI PUSH1 0x0 PUSH1 0x3C PUSH1 0x0 DUP7 DUP5 DUP2 MLOAD DUP2 LT PUSH2 0x2A9C JUMPI PUSH2 0x2A9C PUSH2 0x46CB JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD DUP2 ADD MLOAD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP3 MSTORE DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x40 ADD PUSH1 0x0 SWAP1 DUP2 KECCAK256 PUSH1 0x1 DUP2 ADD SLOAD DUP2 SLOAD DUP9 MLOAD SWAP3 SWAP5 POP PUSH2 0x2B0A SWAP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB DUP1 DUP4 AND SWAP3 PUSH1 0x1 PUSH1 0x80 SHL SWAP1 DIV AND SWAP1 DUP11 SWAP1 DUP9 SWAP1 DUP2 LT PUSH2 0x2AF9 JUMPI PUSH2 0x2AF9 PUSH2 0x46CB JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x40 ADD MLOAD PUSH2 0x37B9 JUMP JUMPDEST SWAP1 POP PUSH2 0x2B5B DUP7 DUP5 DUP2 MLOAD DUP2 LT PUSH2 0x2B21 JUMPI PUSH2 0x2B21 PUSH2 0x46CB JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x20 ADD MLOAD DUP3 DUP5 PUSH1 0x2 ADD PUSH1 0x0 DUP12 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD PUSH2 0x38C4 JUMP JUMPDEST PUSH2 0x2B65 SWAP1 DUP6 PUSH2 0x467F JUMP JUMPDEST SWAP4 POP POP POP PUSH1 0x1 ADD PUSH2 0x2A7B JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x3 DUP1 DUP3 MSTORE PUSH1 0x80 DUP3 ADD SWAP1 SWAP3 MSTORE PUSH1 0x0 SWAP2 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 0x2B91 JUMPI SWAP1 POP POP SWAP1 POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE PUSH1 0x20 ADD DUP8 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 MSTORE POP DUP2 PUSH1 0x0 DUP2 MLOAD DUP2 LT PUSH2 0x2BEC JUMPI PUSH2 0x2BEC PUSH2 0x46CB JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 SWAP1 MSTORE POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x1 DUP2 MSTORE PUSH1 0x20 ADD DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 MSTORE POP DUP2 PUSH1 0x1 DUP2 MLOAD DUP2 LT PUSH2 0x2C29 JUMPI PUSH2 0x2C29 PUSH2 0x46CB JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 SWAP1 MSTORE POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x2 DUP2 MSTORE PUSH1 0x20 ADD DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 MSTORE POP DUP2 PUSH1 0x2 DUP2 MLOAD DUP2 LT PUSH2 0x2C66 JUMPI PUSH2 0x2C66 PUSH2 0x46CB JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 SWAP1 MSTORE POP PUSH2 0x2C7A DUP2 PUSH2 0x38F0 JUMP JUMPDEST PUSH2 0x2C83 DUP4 PUSH2 0x29BB JUMP JUMPDEST PUSH2 0x2C8C DUP3 PUSH2 0x2A41 JUMP JUMPDEST PUSH2 0x150C PUSH8 0xDE0B6B3A7640000 PUSH2 0x1EAD JUMP JUMPDEST PUSH1 0x51 SLOAD PUSH1 0x1 PUSH1 0xD8 SHL SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0x2CEA 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 PUSH16 0x534C415348494E475F4F4E474F494E47 PUSH1 0x80 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xBF7 JUMP JUMPDEST DUP1 PUSH1 0x0 SUB PUSH2 0x2D0A JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xBF7 SWAP1 PUSH2 0x4782 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2D15 DUP4 PUSH2 0x11BE JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x2D2D DUP5 ADDRESS DUP5 PUSH2 0x2D28 PUSH1 0x2 SLOAD SWAP1 JUMP JUMPDEST PUSH2 0x3AC2 JUMP JUMPDEST SWAP1 POP DUP1 ISZERO PUSH2 0x2DB0 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3D PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH2 0x2D59 SWAP1 DUP3 SWAP1 PUSH2 0x467F JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x3D PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 SWAP4 SWAP1 SWAP4 SSTORE DUP1 MLOAD SWAP2 DUP3 MSTORE SWAP2 DUP2 ADD DUP4 SWAP1 MSTORE PUSH32 0x2468F9268C60AD90E2D49EDB0032C8A001E733AE888B3AB8E982EDF535BE1A76 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMPDEST PUSH1 0x0 PUSH2 0x2DBB DUP5 PUSH2 0x11D9 JUMP JUMPDEST SWAP1 POP PUSH2 0x2DF2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB PUSH32 0x0 AND DUP8 ADDRESS DUP8 PUSH2 0x2818 JUMP JUMPDEST PUSH2 0x2DFC DUP6 DUP3 PUSH2 0x3B83 JUMP JUMPDEST DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x6C86F3FD5118B3AA8BB4F389A617046DE0A3D3D477DE1A1673D227F802F616DC DUP7 DUP5 PUSH1 0x40 MLOAD PUSH2 0x2941 SWAP3 SWAP2 SWAP1 SWAP2 DUP3 MSTORE PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP2 MLOAD DUP2 LT ISZERO PUSH2 0xF13 JUMPI PUSH1 0x0 PUSH1 0x3C PUSH1 0x0 DUP5 DUP5 DUP2 MLOAD DUP2 LT PUSH2 0x2E6E JUMPI PUSH2 0x2E6E PUSH2 0x46CB JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x40 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SWAP1 POP PUSH2 0x2EE1 DUP4 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x2EB1 JUMPI PUSH2 0x2EB1 PUSH2 0x46CB JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x40 ADD MLOAD DUP3 DUP6 DUP6 DUP2 MLOAD DUP2 LT PUSH2 0x2ED0 JUMPI PUSH2 0x2ED0 PUSH2 0x46CB JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x20 ADD MLOAD PUSH2 0x3C42 JUMP JUMPDEST POP DUP3 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x2EF4 JUMPI PUSH2 0x2EF4 PUSH2 0x46CB JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD ADD MLOAD MLOAD DUP2 SLOAD PUSH16 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB SWAP1 SWAP2 AND OR DUP2 SSTORE DUP3 MLOAD DUP4 SWAP1 DUP4 SWAP1 DUP2 LT PUSH2 0x2F37 JUMPI PUSH2 0x2F37 PUSH2 0x46CB JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x40 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x87FA03892A0556CB6B8F97E6D533A150D4D55FCBF275FFF5FA003FA636BCC7FA DUP5 DUP5 DUP2 MLOAD DUP2 LT PUSH2 0x2F7F JUMPI PUSH2 0x2F7F PUSH2 0x46CB JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD DUP2 ADD MLOAD MLOAD PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP PUSH1 0x1 ADD PUSH2 0x2E4D JUMP JUMPDEST PUSH1 0x0 NUMBER DUP3 GT ISZERO PUSH2 0x2FF7 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 PUSH20 0x24A72B20A624A22FA12627A1A5AFA72AA6A122A9 PUSH1 0x61 SHL PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xBF7 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP6 SWAP1 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD SWAP1 DUP2 SWAP1 SUB PUSH2 0x3029 JUMPI PUSH2 0x3021 DUP5 PUSH2 0x11BE JUMP JUMPDEST SWAP2 POP POP PUSH2 0x11B6 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP8 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 DUP4 DUP1 MSTORE SWAP1 SWAP2 MSTORE SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND DUP4 LT ISZERO PUSH2 0x3065 JUMPI PUSH1 0x0 SWAP2 POP POP PUSH2 0x11B6 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP8 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 PUSH2 0x175A SWAP1 DUP3 DUP6 PUSH2 0x3CFA JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xD8 SHL SUB DUP3 GT ISZERO PUSH2 0x30F1 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 PUSH7 0x31362062697473 PUSH1 0xC8 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0xBF7 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x314A 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 0x3E06 SWAP1 SWAP3 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST DUP1 MLOAD SWAP1 SWAP2 POP ISZERO PUSH2 0xF03 JUMPI DUP1 DUP1 PUSH1 0x20 ADD SWAP1 MLOAD DUP2 ADD SWAP1 PUSH2 0x3168 SWAP2 SWAP1 PUSH2 0x47FE JUMP JUMPDEST PUSH2 0xF03 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 PUSH10 0x1BDD081CDD58D8D95959 PUSH1 0xB2 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0xBF7 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x31D9 DUP6 ADDRESS DUP7 PUSH2 0x2D28 PUSH1 0x2 SLOAD SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3D PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD SWAP2 SWAP3 POP SWAP1 PUSH2 0x3201 SWAP1 DUP4 SWAP1 PUSH2 0x467F JUMP JUMPDEST SWAP1 POP DUP2 ISZERO PUSH2 0x1732 JUMPI DUP4 ISZERO PUSH2 0x322B JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3D PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP2 SWAP1 SSTORE JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP9 AND DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 SWAP1 MSTORE PUSH32 0x2468F9268C60AD90E2D49EDB0032C8A001E733AE888B3AB8E982EDF535BE1A76 SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x32D6 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 PUSH1 0x73 PUSH1 0xF8 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0xBF7 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 0x334A 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 PUSH2 0x6365 PUSH1 0xF0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0xBF7 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 DUP7 DUP7 SUB SWAP1 SSTORE PUSH1 0x2 DUP1 SLOAD DUP8 SWAP1 SUB SWAP1 SSTORE MLOAD DUP6 DUP2 MSTORE SWAP2 SWAP3 SWAP2 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xB8 SHL SUB DUP3 GT ISZERO PUSH2 0x30F1 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 PUSH7 0x38342062697473 PUSH1 0xC8 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0xBF7 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH2 0x3475 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 PUSH5 0x6472657373 PUSH1 0xD8 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0xBF7 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x34D7 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 PUSH3 0x657373 PUSH1 0xE8 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0xBF7 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 0x354F 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 PUSH6 0x616C616E6365 PUSH1 0xD0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0xBF7 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 DUP2 AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 DUP8 DUP8 SUB SWAP1 SSTORE SWAP4 DUP8 AND DUP1 DUP4 MSTORE SWAP2 DUP5 SWAP1 KECCAK256 DUP1 SLOAD DUP8 ADD SWAP1 SSTORE SWAP3 MLOAD DUP6 DUP2 MSTORE SWAP1 SWAP3 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH2 0x140E JUMP JUMPDEST DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SUB ISZERO PUSH2 0x140E JUMPI PUSH1 0x0 DUP1 PUSH2 0x35DB DUP4 PUSH2 0x2951 JUMP JUMPDEST POP SWAP1 SWAP3 POP SWAP1 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND ISZERO PUSH2 0x36CC JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP3 SWAP1 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD DUP1 ISZERO PUSH2 0x365B JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP9 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP6 SWAP1 MSTORE PUSH1 0x40 DUP2 KECCAK256 SWAP1 PUSH2 0x3633 PUSH1 0x1 DUP5 PUSH2 0x45FB JUMP JUMPDEST DUP2 MSTORE PUSH1 0x20 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x40 ADD PUSH1 0x0 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x80 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND SWAP2 POP PUSH2 0x3667 JUMP JUMPDEST PUSH2 0x3664 DUP9 PUSH2 0x11BE JUMP JUMPDEST SWAP2 POP JUMPDEST PUSH2 0x367D DUP5 DUP5 DUP11 DUP6 PUSH2 0x3678 DUP12 DUP3 PUSH2 0x45FB JUMP JUMPDEST PUSH2 0x3E15 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP9 AND PUSH32 0xA0A19463EE116110C9B282012D9B65CC5522DC38A9520340CBAF3142E550127F PUSH2 0x36B2 DUP9 DUP6 PUSH2 0x45FB JUMP JUMPDEST DUP8 PUSH1 0x40 MLOAD PUSH2 0x36C1 SWAP3 SWAP2 SWAP1 PUSH2 0x4820 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND ISZERO PUSH2 0x150C JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP3 SWAP1 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD DUP1 ISZERO PUSH2 0x3746 JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP6 SWAP1 MSTORE PUSH1 0x40 DUP2 KECCAK256 SWAP1 PUSH2 0x371E PUSH1 0x1 DUP5 PUSH2 0x45FB JUMP JUMPDEST DUP2 MSTORE PUSH1 0x20 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x40 ADD PUSH1 0x0 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x80 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND SWAP2 POP PUSH2 0x3752 JUMP JUMPDEST PUSH2 0x374F DUP8 PUSH2 0x11BE JUMP JUMPDEST SWAP2 POP JUMPDEST PUSH2 0x3763 DUP5 DUP5 DUP10 DUP6 PUSH2 0x3678 DUP12 DUP3 PUSH2 0x467F JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND PUSH32 0xA0A19463EE116110C9B282012D9B65CC5522DC38A9520340CBAF3142E550127F PUSH2 0x3798 DUP9 DUP6 PUSH2 0x467F JUMP JUMPDEST DUP8 PUSH1 0x40 MLOAD PUSH2 0x37A7 SWAP3 SWAP2 SWAP1 PUSH2 0x4820 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP4 ISZERO DUP1 PUSH2 0x37C6 JUMPI POP DUP2 ISZERO JUMPDEST DUP1 PUSH2 0x37D9 JUMPI POP TIMESTAMP DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND EQ JUMPDEST DUP1 PUSH2 0x380D JUMPI POP PUSH32 0x0 DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND LT ISZERO JUMPDEST ISZERO PUSH2 0x3819 JUMPI POP DUP4 PUSH2 0x11B6 JUMP JUMPDEST PUSH1 0x0 PUSH32 0x0 TIMESTAMP GT PUSH2 0x3848 JUMPI TIMESTAMP PUSH2 0x386A JUMP JUMPDEST PUSH32 0x0 JUMPDEST SWAP1 POP PUSH1 0x0 PUSH2 0x3881 PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB DUP7 AND DUP4 PUSH2 0x45FB JUMP JUMPDEST SWAP1 POP DUP7 DUP5 PUSH2 0x3891 PUSH1 0x12 PUSH1 0xA PUSH2 0x491B JUMP JUMPDEST PUSH2 0x389B DUP5 DUP11 PUSH2 0x4692 JUMP JUMPDEST PUSH2 0x38A5 SWAP2 SWAP1 PUSH2 0x4692 JUMP JUMPDEST PUSH2 0x38AF SWAP2 SWAP1 PUSH2 0x46A9 JUMP JUMPDEST PUSH2 0x38B9 SWAP2 SWAP1 PUSH2 0x467F JUMP JUMPDEST SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x38D2 PUSH1 0x12 PUSH1 0xA PUSH2 0x491B JUMP JUMPDEST PUSH2 0x38DC DUP4 DUP6 PUSH2 0x45FB JUMP JUMPDEST PUSH2 0x38E6 SWAP1 DUP7 PUSH2 0x4692 JUMP JUMPDEST PUSH2 0xF5E SWAP2 SWAP1 PUSH2 0x46A9 JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP2 MLOAD DUP2 LT ISZERO PUSH2 0xF13 JUMPI PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x45 PUSH1 0x0 DUP5 DUP5 DUP2 MLOAD DUP2 LT PUSH2 0x391D JUMPI PUSH2 0x391D PUSH2 0x46CB JUMP JUMPDEST PUSH1 0x20 SWAP1 DUP2 MUL SWAP2 SWAP1 SWAP2 ADD DUP2 ADD MLOAD MLOAD DUP3 MSTORE DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x40 ADD PUSH1 0x0 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ DUP1 ISZERO PUSH2 0x397F JUMPI POP PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP3 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x3967 JUMPI PUSH2 0x3967 PUSH2 0x46CB JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x20 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ ISZERO JUMPDEST PUSH2 0x39CB 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 0x41444D494E5F43414E4E4F545F42455F494E495449414C495A45440000000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0xBF7 JUMP JUMPDEST DUP2 DUP2 DUP2 MLOAD DUP2 LT PUSH2 0x39DD JUMPI PUSH2 0x39DD PUSH2 0x46CB JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x20 ADD MLOAD PUSH1 0x45 PUSH1 0x0 DUP5 DUP5 DUP2 MLOAD DUP2 LT PUSH2 0x39FF JUMPI PUSH2 0x39FF PUSH2 0x46CB JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x0 ADD MLOAD DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB MUL NOT AND SWAP1 DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND MUL OR SWAP1 SSTORE POP DUP2 DUP2 DUP2 MLOAD DUP2 LT PUSH2 0x3A4F JUMPI PUSH2 0x3A4F PUSH2 0x46CB JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x20 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x83A9DDAD961DCB7C6894C9585A16FF7792C2EC8281256A3CC7303AE830152DCF DUP4 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x3A97 JUMPI PUSH2 0x3A97 PUSH2 0x46CB JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH1 0x0 ADD MLOAD PUSH1 0x40 MLOAD PUSH2 0x3AB2 SWAP2 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 PUSH1 0x1 ADD PUSH2 0x38F3 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP5 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3C PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 DUP9 AND DUP4 MSTORE PUSH1 0x2 DUP5 ADD SWAP1 SWAP2 MSTORE DUP2 KECCAK256 SLOAD SWAP1 SWAP2 SWAP1 DUP3 DUP1 PUSH2 0x3AFD DUP9 DUP6 DUP9 PUSH2 0x3C42 JUMP JUMPDEST SWAP1 POP DUP1 DUP4 EQ PUSH2 0x3B77 JUMPI DUP7 ISZERO PUSH2 0x3B1A JUMPI PUSH2 0x3B17 DUP8 DUP3 DUP6 PUSH2 0x38C4 JUMP JUMPDEST SWAP2 POP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP1 DUP11 AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x2 DUP8 ADD PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 DUP2 SWAP1 KECCAK256 DUP5 SWAP1 SSTORE MLOAD SWAP2 DUP11 AND SWAP2 PUSH32 0xBB123B5C06D5408BBEA3C4FEF481578175CFB432E3B482C6186F02ED9086585B SWAP1 PUSH2 0x3B6E SWAP1 DUP6 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 JUMPDEST POP SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x3BD9 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 0xBF7 JUMP JUMPDEST DUP1 PUSH1 0x2 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x3BEB SWAP2 SWAP1 PUSH2 0x467F JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x20 DUP2 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 DUP1 SLOAD DUP7 ADD SWAP1 SSTORE MLOAD DUP5 DUP2 MSTORE PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP2 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x1 DUP3 ADD SLOAD DUP3 SLOAD PUSH1 0x0 SWAP2 SWAP1 PUSH1 0x1 PUSH1 0x80 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND TIMESTAMP DUP2 SWAP1 SUB PUSH2 0x3C6D JUMPI POP SWAP1 POP PUSH2 0xF61 JUMP JUMPDEST DUP5 SLOAD PUSH1 0x0 SWAP1 PUSH2 0x3C88 SWAP1 DUP5 SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND DUP5 DUP9 PUSH2 0x37B9 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 EQ PUSH2 0x3CD7 JUMPI PUSH1 0x1 DUP7 ADD DUP2 SWAP1 SSTORE PUSH1 0x40 MLOAD DUP2 DUP2 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP9 AND SWAP1 PUSH32 0x5777CA300DFE5BEAD41006FBCE4389794DBC0ED8D6CCCEBFAF94630AA04184BC SWAP1 PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 JUMPDEST DUP6 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB TIMESTAMP DUP2 AND PUSH1 0x1 PUSH1 0x80 SHL MUL SWAP2 AND OR DUP7 SSTORE SWAP3 POP POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 NOT DUP3 ADD PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP5 SWAP1 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND DUP3 LT PUSH2 0x3D47 JUMPI POP PUSH1 0x0 NOT DUP3 ADD PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP5 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x80 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND PUSH2 0xF61 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x0 NOT DUP5 ADD JUMPDEST DUP2 DUP2 GT ISZERO PUSH2 0x3DDD JUMPI PUSH1 0x2 DUP3 DUP3 SUB DIV DUP2 SUB PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x20 DUP9 DUP2 MSTORE PUSH1 0x40 SWAP2 DUP3 SWAP1 KECCAK256 DUP3 MLOAD DUP1 DUP5 ADD SWAP1 SWAP4 MSTORE SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB DUP1 DUP3 AND DUP1 DUP6 MSTORE PUSH1 0x1 PUSH1 0x80 SHL SWAP1 SWAP3 DIV AND SWAP2 DUP4 ADD SWAP2 SWAP1 SWAP2 MSTORE DUP7 SWAP1 SUB PUSH2 0x3DB5 JUMPI PUSH1 0x20 ADD MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND SWAP4 POP PUSH2 0xF61 SWAP3 POP POP POP JUMP JUMPDEST DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND DUP7 GT ISZERO PUSH2 0x3DCF JUMPI DUP2 SWAP4 POP PUSH2 0x3DD6 JUMP JUMPDEST PUSH1 0x1 DUP3 SUB SWAP3 POP JUMPDEST POP POP PUSH2 0x3D4F JUMP JUMPDEST POP PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 SWAP5 SWAP1 SWAP5 MSTORE POP POP PUSH1 0x40 SWAP1 SWAP2 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x80 SHL SWAP1 DIV PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 PUSH2 0xF5E DUP5 DUP5 PUSH1 0x0 DUP6 PUSH2 0x3F2C JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP6 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SLOAD SWAP2 DUP9 SWAP1 MSTORE SWAP1 SWAP2 KECCAK256 NUMBER SWAP2 SWAP1 DUP2 ISZERO DUP1 ISZERO SWAP1 PUSH2 0x3E77 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB DUP4 AND DUP2 PUSH1 0x0 PUSH2 0x3E5B PUSH1 0x1 DUP7 PUSH2 0x45FB JUMP JUMPDEST DUP2 MSTORE PUSH1 0x20 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x40 ADD PUSH1 0x0 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB AND EQ JUMPDEST ISZERO PUSH2 0x3EBB JUMPI DUP4 DUP2 PUSH1 0x0 PUSH2 0x3E8B PUSH1 0x1 DUP7 PUSH2 0x45FB JUMP JUMPDEST DUP2 MSTORE PUSH1 0x20 DUP2 ADD SWAP2 SWAP1 SWAP2 MSTORE PUSH1 0x40 ADD PUSH1 0x0 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB SWAP3 DUP4 AND PUSH1 0x1 PUSH1 0x80 SHL MUL SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE PUSH2 0x3F22 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD DUP3 MSTORE PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB DUP1 DUP7 AND DUP3 MSTORE DUP7 DUP2 AND PUSH1 0x20 DUP1 DUP5 ADD SWAP2 DUP3 MSTORE PUSH1 0x0 DUP8 DUP2 MSTORE SWAP1 DUP7 SWAP1 MSTORE SWAP4 SWAP1 SWAP4 KECCAK256 SWAP2 MLOAD SWAP3 MLOAD DUP2 AND PUSH1 0x1 PUSH1 0x80 SHL MUL SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE PUSH2 0x3F08 DUP3 PUSH1 0x1 PUSH2 0x467F JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP8 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x20 DUP10 SWAP1 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SSTORE JUMPDEST POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP3 SELFBALANCE LT ISZERO PUSH2 0x3F8D 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 PUSH6 0x1C8818D85B1B PUSH1 0xD2 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0xBF7 JUMP JUMPDEST PUSH1 0x0 DUP1 DUP7 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP6 DUP8 PUSH1 0x40 MLOAD PUSH2 0x3FA9 SWAP2 SWAP1 PUSH2 0x4927 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 0x3FE6 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 0x3FEB JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP SWAP2 POP SWAP2 POP PUSH2 0x38B9 DUP8 DUP4 DUP4 DUP8 PUSH1 0x60 DUP4 ISZERO PUSH2 0x4066 JUMPI DUP3 MLOAD PUSH1 0x0 SUB PUSH2 0x405F JUMPI PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 AND EXTCODESIZE PUSH2 0x405F 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 0xBF7 JUMP JUMPDEST POP DUP2 PUSH2 0x11B6 JUMP JUMPDEST PUSH2 0x11B6 DUP4 DUP4 DUP2 MLOAD ISZERO PUSH2 0x407B JUMPI DUP2 MLOAD DUP1 DUP4 PUSH1 0x20 ADD REVERT JUMPDEST DUP1 PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xBF7 SWAP2 SWAP1 PUSH2 0x412B JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x40AC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x40C4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x40CD DUP4 PUSH2 0x4095 JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x40F6 JUMPI DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH2 0x40DE JUMP JUMPDEST POP POP PUSH1 0x0 SWAP2 ADD MSTORE JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD DUP1 DUP5 MSTORE PUSH2 0x4117 DUP2 PUSH1 0x20 DUP7 ADD PUSH1 0x20 DUP7 ADD PUSH2 0x40DB JUMP JUMPDEST PUSH1 0x1F ADD PUSH1 0x1F NOT AND SWAP3 SWAP1 SWAP3 ADD PUSH1 0x20 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH1 0x0 PUSH2 0xF61 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x40FF JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4150 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xF61 DUP3 PUSH2 0x4095 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x416B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x4187 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x4190 DUP5 PUSH2 0x4095 JUMP JUMPDEST SWAP3 POP PUSH2 0x419E PUSH1 0x20 DUP6 ADD PUSH2 0x4095 JUMP JUMPDEST SWAP3 SWAP6 SWAP3 SWAP5 POP POP POP PUSH1 0x40 SWAP2 SWAP1 SWAP2 ADD CALLDATALOAD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x41C2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x41CB DUP4 PUSH2 0x4095 JUMP JUMPDEST SWAP2 POP PUSH2 0x41D9 PUSH1 0x20 DUP5 ADD PUSH2 0x4095 JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x2 DUP2 LT PUSH2 0x40AC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x4204 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x420D DUP4 PUSH2 0x4095 JUMP JUMPDEST SWAP2 POP PUSH2 0x41D9 PUSH1 0x20 DUP5 ADD PUSH2 0x41E2 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x4231 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x423A DUP6 PUSH2 0x4095 JUMP JUMPDEST SWAP4 POP PUSH2 0x4248 PUSH1 0x20 DUP7 ADD PUSH2 0x4095 JUMP JUMPDEST SWAP4 SWAP7 SWAP4 SWAP6 POP POP POP POP PUSH1 0x40 DUP3 ADD CALLDATALOAD SWAP2 PUSH1 0x60 ADD CALLDATALOAD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0xA0 DUP7 DUP9 SUB SLT ISZERO PUSH2 0x4275 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x427E DUP7 PUSH2 0x4095 JUMP JUMPDEST SWAP5 POP PUSH2 0x428C PUSH1 0x20 DUP8 ADD PUSH2 0x4095 JUMP JUMPDEST SWAP4 POP PUSH2 0x429A PUSH1 0x40 DUP8 ADD PUSH2 0x4095 JUMP JUMPDEST SWAP5 SWAP8 SWAP4 SWAP7 POP SWAP4 SWAP5 PUSH1 0x60 DUP2 ADD CALLDATALOAD SWAP5 POP PUSH1 0x80 ADD CALLDATALOAD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x42C5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD SWAP2 POP PUSH2 0x41D9 PUSH1 0x20 DUP5 ADD PUSH2 0x4095 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x60 DUP2 ADD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x430E JUMPI PUSH2 0x430E PUSH2 0x42D5 JUMP JUMPDEST PUSH1 0x40 MSTORE SWAP1 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 0x433D JUMPI PUSH2 0x433D PUSH2 0x42D5 JUMP JUMPDEST PUSH1 0x40 MSTORE SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4357 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x436E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 ADD PUSH1 0x1F DUP2 ADD DUP5 SGT PUSH2 0x437F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x4399 JUMPI PUSH2 0x4399 PUSH2 0x42D5 JUMP JUMPDEST PUSH2 0x43A8 PUSH1 0x20 DUP3 PUSH1 0x5 SHL ADD PUSH2 0x4314 JUMP JUMPDEST DUP1 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP2 POP PUSH1 0x20 PUSH1 0x60 DUP5 MUL DUP6 ADD ADD SWAP3 POP DUP7 DUP4 GT ISZERO PUSH2 0x43CA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x20 DUP5 ADD SWAP4 POP JUMPDEST DUP3 DUP5 LT ISZERO PUSH2 0x175A JUMPI PUSH1 0x60 DUP5 DUP9 SUB SLT ISZERO PUSH2 0x43E9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x43F1 PUSH2 0x42EB JUMP JUMPDEST DUP5 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x80 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x4408 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MSTORE PUSH1 0x20 DUP6 DUP2 ADD CALLDATALOAD SWAP1 DUP3 ADD MSTORE PUSH2 0x4420 PUSH1 0x40 DUP7 ADD PUSH2 0x4095 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD MSTORE DUP3 MSTORE PUSH1 0x60 SWAP4 SWAP1 SWAP4 ADD SWAP3 PUSH1 0x20 SWAP1 SWAP2 ADD SWAP1 PUSH2 0x43D1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x444E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x4457 DUP5 PUSH2 0x4095 JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD SWAP2 POP PUSH2 0x446C PUSH1 0x40 DUP6 ADD PUSH2 0x41E2 JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0xFF DUP2 AND DUP2 EQ PUSH2 0x40AC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0xC0 DUP8 DUP10 SUB SLT ISZERO PUSH2 0x449F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x44A8 DUP8 PUSH2 0x4095 JUMP JUMPDEST SWAP6 POP PUSH1 0x20 DUP8 ADD CALLDATALOAD SWAP5 POP PUSH1 0x40 DUP8 ADD CALLDATALOAD SWAP4 POP PUSH2 0x44C4 PUSH1 0x60 DUP9 ADD PUSH2 0x4475 JUMP JUMPDEST SWAP6 SWAP9 SWAP5 SWAP8 POP SWAP3 SWAP6 PUSH1 0x80 DUP2 ADD CALLDATALOAD SWAP5 PUSH1 0xA0 SWAP1 SWAP2 ADD CALLDATALOAD SWAP4 POP SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0xE0 DUP9 DUP11 SUB SLT ISZERO PUSH2 0x44F9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x4502 DUP9 PUSH2 0x4095 JUMP JUMPDEST SWAP7 POP PUSH2 0x4510 PUSH1 0x20 DUP10 ADD PUSH2 0x4095 JUMP JUMPDEST SWAP6 POP PUSH1 0x40 DUP9 ADD CALLDATALOAD SWAP5 POP PUSH1 0x60 DUP9 ADD CALLDATALOAD SWAP4 POP PUSH2 0x452C PUSH1 0x80 DUP10 ADD PUSH2 0x4475 JUMP 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 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x455E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x4567 DUP5 PUSH2 0x4095 JUMP JUMPDEST SWAP6 PUSH1 0x20 DUP6 ADD CALLDATALOAD SWAP6 POP PUSH1 0x40 SWAP1 SWAP5 ADD CALLDATALOAD SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0xE0 DUP9 DUP11 SUB SLT ISZERO PUSH2 0x4597 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x45A0 DUP9 PUSH2 0x4095 JUMP JUMPDEST SWAP7 POP PUSH2 0x4510 PUSH1 0x20 DUP10 ADD PUSH2 0x41E2 JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE PUSH1 0x19 SWAP1 DUP3 ADD MSTORE PUSH32 0x43414C4C45525F4E4F545F534C415348494E475F41444D494E00000000000000 PUSH1 0x40 DUP3 ADD MSTORE PUSH1 0x60 ADD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST DUP2 DUP2 SUB DUP2 DUP2 GT ISZERO PUSH2 0xDF3 JUMPI PUSH2 0xDF3 PUSH2 0x45E5 JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SHR SWAP1 DUP3 AND DUP1 PUSH2 0x4622 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x4642 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 0x20 DUP1 DUP3 MSTORE PUSH1 0x17 SWAP1 DUP3 ADD MSTORE PUSH32 0x43414C4C45525F4E4F545F434C41494D5F48454C504552000000000000000000 PUSH1 0x40 DUP3 ADD MSTORE PUSH1 0x60 ADD SWAP1 JUMP JUMPDEST DUP1 DUP3 ADD DUP1 DUP3 GT ISZERO PUSH2 0xDF3 JUMPI PUSH2 0xDF3 PUSH2 0x45E5 JUMP JUMPDEST DUP1 DUP3 MUL DUP2 ISZERO DUP3 DUP3 DIV DUP5 EQ OR PUSH2 0xDF3 JUMPI PUSH2 0xDF3 PUSH2 0x45E5 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x46C6 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 PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH2 0x1901 PUSH1 0xF0 SHL DUP2 MSTORE PUSH1 0x2 DUP2 ADD SWAP3 SWAP1 SWAP3 MSTORE PUSH1 0x22 DUP3 ADD MSTORE PUSH1 0x42 ADD SWAP1 JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE PUSH1 0x11 SWAP1 DUP3 ADD MSTORE PUSH17 0x494E56414C49445F5349474E4154555245 PUSH1 0x78 SHL PUSH1 0x40 DUP3 ADD MSTORE PUSH1 0x60 ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 DUP3 ADD PUSH2 0x4739 JUMPI PUSH2 0x4739 PUSH2 0x45E5 JUMP JUMPDEST POP PUSH1 0x1 ADD SWAP1 JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE PUSH1 0x12 SWAP1 DUP3 ADD MSTORE PUSH18 0x24A72B20A624A22FA2AC2824A920AA24A7A7 PUSH1 0x71 SHL PUSH1 0x40 DUP3 ADD MSTORE PUSH1 0x60 ADD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE PUSH1 0x13 SWAP1 DUP3 ADD MSTORE PUSH19 0x1253959053125117D6915493D7D05353D55395 PUSH1 0x6A SHL PUSH1 0x40 DUP3 ADD MSTORE PUSH1 0x60 ADD SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xD8 SHL SUB DUP3 DUP2 AND DUP3 DUP3 AND SUB SWAP1 DUP2 GT ISZERO PUSH2 0xDF3 JUMPI PUSH2 0xDF3 PUSH2 0x45E5 JUMP JUMPDEST PUSH1 0x2 DUP2 LT PUSH2 0x47EC JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST SWAP1 MSTORE JUMP JUMPDEST PUSH1 0x20 DUP2 ADD PUSH2 0xDF3 DUP3 DUP5 PUSH2 0x47CE JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4810 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 MLOAD DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0xF61 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 DUP2 MSTORE PUSH1 0x40 DUP2 ADD PUSH2 0xF61 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x47CE JUMP JUMPDEST PUSH1 0x1 DUP2 JUMPDEST PUSH1 0x1 DUP5 GT ISZERO PUSH2 0x486F JUMPI DUP1 DUP6 DIV DUP2 GT ISZERO PUSH2 0x4853 JUMPI PUSH2 0x4853 PUSH2 0x45E5 JUMP JUMPDEST PUSH1 0x1 DUP5 AND ISZERO PUSH2 0x4861 JUMPI SWAP1 DUP2 MUL SWAP1 JUMPDEST PUSH1 0x1 SWAP4 SWAP1 SWAP4 SHR SWAP3 DUP1 MUL PUSH2 0x4838 JUMP JUMPDEST SWAP4 POP SWAP4 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x4886 JUMPI POP PUSH1 0x1 PUSH2 0xDF3 JUMP JUMPDEST DUP2 PUSH2 0x4893 JUMPI POP PUSH1 0x0 PUSH2 0xDF3 JUMP JUMPDEST DUP2 PUSH1 0x1 DUP2 EQ PUSH2 0x48A9 JUMPI PUSH1 0x2 DUP2 EQ PUSH2 0x48B3 JUMPI PUSH2 0x48CF JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP PUSH2 0xDF3 JUMP JUMPDEST PUSH1 0xFF DUP5 GT ISZERO PUSH2 0x48C4 JUMPI PUSH2 0x48C4 PUSH2 0x45E5 JUMP JUMPDEST POP POP PUSH1 0x1 DUP3 SHL PUSH2 0xDF3 JUMP JUMPDEST POP PUSH1 0x20 DUP4 LT PUSH2 0x133 DUP4 LT AND PUSH1 0x4E DUP5 LT PUSH1 0xB DUP5 LT AND OR ISZERO PUSH2 0x48F2 JUMPI POP DUP2 DUP2 EXP PUSH2 0xDF3 JUMP JUMPDEST PUSH2 0x48FF PUSH1 0x0 NOT DUP5 DUP5 PUSH2 0x4834 JUMP JUMPDEST DUP1 PUSH1 0x0 NOT DIV DUP3 GT ISZERO PUSH2 0x4913 JUMPI PUSH2 0x4913 PUSH2 0x45E5 JUMP JUMPDEST MUL SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xF61 DUP4 DUP4 PUSH2 0x4877 JUMP JUMPDEST PUSH1 0x0 DUP3 MLOAD PUSH2 0x4939 DUP2 DUP5 PUSH1 0x20 DUP8 ADD PUSH2 0x40DB JUMP JUMPDEST SWAP2 SWAP1 SWAP2 ADD SWAP3 SWAP2 POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 CALL SHR GASPRICE PUSH25 0x4E62382C2F497B068AB353948D5B71F45A233267301678035D SWAP6 CALLCODE 0xB7 PUSH5 0x736F6C6343 STOP ADDMOD SHL STOP CALLER ","sourceMap":"114302:15744:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;121016:767;;;;;;:::i;:::-;;:::i;:::-;;;643:25:1;;;631:2;616:18;121016:767:0;;;;;;;;18232:98;;;:::i;:::-;;;;;;;:::i;104053:60::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;-1:-1:-1;;;104053:60:0;;-1:-1:-1;;;;;104053:60:0;;;;;;;1828:12:1;1816:25;;;1798:44;;-1:-1:-1;;;;;1878:32:1;;;1873:2;1858:18;;1851:60;1771:18;104053:60:0;1626:291:1;20509:197:0;;;;;;:::i;:::-;;:::i;:::-;;;2087:14:1;;2080:22;2062:41;;2050:2;2035:18;20509:197:0;1922:187:1;112463:93:0;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2509:32:1;;;2491:51;;2479:2;2464:18;112463:93:0;2345:203:1;119527:152:0;;;;;;:::i;:::-;;:::i;:::-;;19320:106;19407:12;;19320:106;;119345:145;;;;;;:::i;:::-;;:::i;119910:189::-;;;;;;:::i;:::-;;:::i;21268:286::-;;;;;;:::i;:::-;;:::i;118898:102::-;;;;;;:::i;:::-;;:::i;104786:153::-;;104832:107;104786:153;;103661:36;;;;;19169:91;19251:2;19169:91;;;3507:4:1;3495:17;;;3477:36;;3465:2;3450:18;19169:91:0;3335:184:1;64436:142:0;;;;;;:::i;:::-;-1:-1:-1;;;;;64548:13:0;;;64524:7;64548:13;;;:6;:13;;;;;;;;:25;;;;;:19;;;;:25;;;;64436:142;;;;;103822:39;;;;;104540:31;;;;;;21949:234;;;;;;:::i;:::-;;:::i;32075:121::-;;32119:77;32075:121;;121820:453;;;;;;:::i;:::-;;:::i;112718:107::-;;;;;;:::i;:::-;112778:7;112800:20;;;:14;:20;;;;;;-1:-1:-1;;;;;112800:20:0;;112718:107;120813:166;;;;;;:::i;:::-;;:::i;114657:52::-;;114705:4;114657:52;;;;;-1:-1:-1;;;;;3953:32:1;;;3935:51;;3923:2;3908:18;114657:52:0;3789:203:1;42725:72:0;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;42725:72:0;;;;-1:-1:-1;;;42725:72:0;;;;;;;;;-1:-1:-1;;;;;4189:47:1;;;4171:66;;4273:47;;;;4268:2;4253:18;;4246:75;4144:18;42725:72:0;3997:330:1;32849:211:0;;;;;;:::i;:::-;;:::i;123015:96::-;123090:16;;123015:96;;114982:36;;;;;33171:291;;;;;;:::i;:::-;;:::i;19484:125::-;;;;;;:::i;:::-;;:::i;118405:138::-;;;;;;:::i;:::-;;:::i;122476:154::-;;;;;;:::i;:::-;;:::i;104575:50::-;;104615:10;;;;;;;;;;;;;-1:-1:-1;;;104615:10:0;;;104575:50;;118760:101;;;:::i;122841:137::-;;;;;;:::i;:::-;;:::i;42801:57::-;;;;;;:::i;:::-;;;;;;;;;;;;;;103994:55;;;;;;:::i;:::-;;;;;;;;;;;;;;114509:44;;114552:1;114509:44;;105899:491;;;;;;:::i;:::-;;:::i;114713:49::-;;114758:4;114713:49;;57216:41;;;;;103951:38;;;;;18443:102;;;:::i;34963:110::-;;;;;;:::i;:::-;;:::i;103701:36::-;;;;;119716:157;;;;;;:::i;:::-;;:::i;120389:246::-;;;;;;:::i;:::-;;:::i;114557:47::-;;114603:1;114557:47;;22670:427;;;;;;:::i;:::-;;:::i;116990:349::-;;;;;;:::i;:::-;;:::i;19805:189::-;;;;;;:::i;:::-;;:::i;31922:148::-;;31974:96;31922:148;;57308:36;;57342:2;57308:36;;113034:203;;;;;;:::i;:::-;;:::i;118580:143::-;;;;;;:::i;:::-;;:::i;122310:129::-;;;:::i;118013:355::-;;;;;;:::i;:::-;;:::i;33641:406::-;;;;;;:::i;:::-;;:::i;105005:42::-;;;;;;:::i;:::-;;;;;;;;;;;;;;34157:424;;;;;;:::i;:::-;;:::i;43166:36::-;;;;;-1:-1:-1;;;;;43166:36:0;;;108928:736;;;;;;:::i;:::-;;:::i;57262:41::-;;;;;106427:849;;;;;;:::i;:::-;;:::i;114608:45::-;;114652:1;114608:45;;32553:157;;;;;;:::i;:::-;;:::i;20052:149::-;;;;;;:::i;:::-;;:::i;116654:77::-;116725:1;116654:77;;120672:104;120751:20;;-1:-1:-1;;;;;120751:20:0;120672:104;;120136:216;;;;;;:::i;:::-;;:::i;115561:32::-;;;;;-1:-1:-1;;;115561:32:0;;;;;;57349:43;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;57349:43:0;;;;-1:-1:-1;;;57349:43:0;;;;;;;;;;-1:-1:-1;;;;;11499:47:1;;;11481:66;;11583:47;;;;11578:2;11563:18;;11556:75;11647:18;;;11640:34;11469:2;11454:18;57349:43:0;11279:401:1;122667:137:0;122776:23;;122667:137;;107760:768;;;;;;:::i;:::-;;:::i;113388:190::-;;;;;;:::i;:::-;;:::i;121016:767::-;121129:7;115662:26;114552:1;115662:8;:26::i;:::-;-1:-1:-1;;;;;115648:40:0;:10;-1:-1:-1;;;;;115648:40:0;;115633:96;;;;-1:-1:-1;;;115633:96:0;;;;;;;:::i;:::-;;;;;;;;;121155:20:::1;::::0;-1:-1:-1;;;121155:20:0;::::1;;;121154:21;121146:63;;;::::0;-1:-1:-1;;;121146:63:0;;13085:2:1;121146:63:0::1;::::0;::::1;13067:21:1::0;13124:2;13104:18;;;13097:30;13163:31;13143:18;;;13136:59;13212:18;;121146:63:0::1;12883:353:1::0;121146:63:0::1;121232:1;121223:6;:10;121215:34;;;::::0;-1:-1:-1;;;121215:34:0;;13443:2:1;121215:34:0::1;::::0;::::1;13425:21:1::0;13482:2;13462:18;;;13455:30;-1:-1:-1;;;13501:18:1;;;13494:41;13552:18;;121215:34:0::1;13241:335:1::0;121215:34:0::1;121255:21;121279:13;19407:12:::0;;;19320:106;121279:13:::1;121255:37;;121298:15;121316:28;121330:13;121316;:28::i;:::-;121298:46;;121351:20;121374:43;121393:23;;121374:7;:18;;:43;;;;:::i;:::-;121351:66;;121437:12;121428:6;:21;121424:63;;;121468:12;121459:21;;121424:63;121520:11;121500:16;121510:6:::0;121500:7;:16:::1;:::i;:::-;:31;;121492:64;;;::::0;-1:-1:-1;;;121492:64:0;;14048:2:1;121492:64:0::1;::::0;::::1;14030:21:1::0;14087:2;14067:18;;;14060:30;-1:-1:-1;;;14106:18:1;;;14099:50;14166:18;;121492:64:0::1;13846:344:1::0;121492:64:0::1;121563:20;:27:::0;;-1:-1:-1;;;;121563:27:0::1;-1:-1:-1::0;;;121563:27:0::1;::::0;;121596:70:::1;121616:49;121633:16;121643:6:::0;121633:7;:16:::1;:::i;:::-;121651:13;121616:16;:49::i;:::-;121596:19;:70::i;:::-;121673:46;-1:-1:-1::0;;;;;121673:12:0::1;:25;121699:11:::0;121712:6;121673:25:::1;:46::i;:::-;121739:11;-1:-1:-1::0;;;;;121731:28:0::1;;121752:6;121731:28;;;;643:25:1::0;;631:2;616:18;;497:177;121731:28:0::1;;;;;;;;121772:6;121765:13;;;;;115735:1;121016:767:::0;;;;:::o;18232:98::-;18286:13;18318:5;18311:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18232:98;:::o;20509:197::-;20592:4;16050:10;20646:32;16050:10;20662:7;20671:6;20646:8;:32::i;:::-;-1:-1:-1;20695:4:0;;20509:197;-1:-1:-1;;;20509:197:0:o;112463:93::-;112516:7;112538:13;;;:7;:13;;;;;;-1:-1:-1;;;;;112538:13:0;;112463:93::o;119527:152::-;115957:27;114652:1;115957:8;:27::i;:::-;-1:-1:-1;;;;;115943:41:0;:10;-1:-1:-1;;;;;115943:41:0;;115928:95;;;;-1:-1:-1;;;115928:95:0;;;;;;;:::i;:::-;119649:25:::1;119657:4;119663:2;119667:6;119649:7;:25::i;:::-;119527:152:::0;;;:::o;119345:145::-;119454:31;119462:10;119474:2;119478:6;119454:7;:31::i;:::-;119345:145;;:::o;119910:189::-;120041:7;115957:27;114652:1;115957:8;:27::i;:::-;-1:-1:-1;;;;;115943:41:0;:10;-1:-1:-1;;;;;115943:41:0;;115928:95;;;;-1:-1:-1;;;115928:95:0;;;;;;;:::i;:::-;120063:31:::1;120077:4;120083:2;120087:6;120063:13;:31::i;:::-;120056:38;;116029:1;119910:189:::0;;;;;:::o;21268:286::-;21395:4;16050:10;21451:38;21467:4;16050:10;21482:6;21451:15;:38::i;:::-;21499:27;21509:4;21515:2;21519:6;21499:9;:27::i;:::-;-1:-1:-1;21543:4:0;;21268:286;-1:-1:-1;;;;21268:286:0:o;118898:102::-;115957:27;114652:1;115957:8;:27::i;:::-;-1:-1:-1;;;;;115943:41:0;:10;-1:-1:-1;;;;;115943:41:0;;115928:95;;;;-1:-1:-1;;;115928:95:0;;;;;;;:::i;:::-;118980:15:::1;118990:4;118980:9;:15::i;:::-;118898:102:::0;:::o;21949:234::-;22037:4;16050:10;22091:64;16050:10;22107:7;22144:10;22116:25;16050:10;22107:7;22116:9;:25::i;:::-;:38;;;;:::i;:::-;22091:8;:64::i;121820:453::-;121899:11;121889:6;:21;;121881:51;;;;-1:-1:-1;;;121881:51:0;;15264:2:1;121881:51:0;;;15246:21:1;15303:2;15283:18;;;15276:30;-1:-1:-1;;;15322:18:1;;;15315:47;15379:18;;121881:51:0;15062:341:1;121881:51:0;121938:21;121962:13;19407:12;;;19320:106;121962:13;121938:37;;122006:11;121989:13;:28;;121981:58;;;;-1:-1:-1;;;121981:58:0;;15610:2:1;121981:58:0;;;15592:21:1;15649:2;15629:18;;;15622:30;-1:-1:-1;;;15668:18:1;;;15661:47;15725:18;;121981:58:0;15408:341:1;121981:58:0;122045:14;122062:28;122076:13;122062;:28::i;:::-;122045:45;-1:-1:-1;122096:69:0;122116:48;122133:15;122142:6;122045:45;122133:15;:::i;:::-;122150:13;122116:16;:48::i;122096:69::-;122172:64;-1:-1:-1;;;;;122172:12:0;:29;122202:10;122222:4;122229:6;122172:29;:64::i;:::-;122247:21;;643:25:1;;;122247:21:0;;631:2:1;616:18;122247:21:0;;;;;;;121875:398;;121820:453;:::o;120813:166::-;120954:20;;120898:7;;-1:-1:-1;;;;;120954:20:0;120923:27;120944:6;114758:4;120923:27;:::i;:::-;120922:52;;;;:::i;32849:211::-;32910:67;32926:10;32938:9;32949:27;32910:15;:67::i;:::-;32983:72;32999:10;33011:9;33022:32;32983:15;:72::i;33171:291::-;33297:7;33319:45;33368:40;33393:14;33368:24;:40::i;:::-;33314:94;;;;33422:35;33436:9;33447;33422:13;:35::i;:::-;33415:42;33171:291;-1:-1:-1;;;;33171:291:0:o;19484:125::-;-1:-1:-1;;;;;19584:18:0;19558:7;19584:18;;;;;;;;;;;;19484:125::o;118405:138::-;118496:20;;118464:7;;114758:4;;118487:29;;-1:-1:-1;;;;;118496:20:0;118487:6;:29;:::i;122476:154::-;115662:26;114552:1;115662:8;:26::i;:::-;-1:-1:-1;;;;;115648:40:0;:10;-1:-1:-1;;;;;115648:40:0;;115633:96;;;;-1:-1:-1;;;115633:96:0;;;;;;;:::i;:::-;122587:38:::1;122614:10;122587:26;:38::i;118760:101::-:0;118835:21;118845:10;118835:9;:21::i;:::-;118760:101::o;122841:137::-;115809:29;114603:1;115809:8;:29::i;:::-;-1:-1:-1;;;;;115795:43:0;:10;-1:-1:-1;;;;;115795:43:0;;115780:99;;;;-1:-1:-1;;;115780:99:0;;16483:2:1;115780:99:0;;;16465:21:1;16522:2;16502:18;;;16495:30;16561:27;16541:18;;;16534:55;16606:18;;115780:99:0;16281:349:1;115780:99:0;122937:36:::1;122957:15;122937:19;:36::i;105899:491::-:0;106065:41;;;106104:1;106065:41;;;;;;;;;105982:7;;;;106065:41;;;;;;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;106065:41:0;;;;;;;;;;;;;;;;105999:107;;106133:151;;;;;;;;106199:4;-1:-1:-1;;;;;106133:151:0;;;;;106226:17;106236:6;106226:9;:17::i;:::-;106133:151;;;;106264:13;19407:12;;;19320:106;106264:13;106133:151;;;106112:15;106128:1;106112:18;;;;;;;;:::i;:::-;;;;;;:172;;;;106340:45;106361:6;106369:15;106340:20;:45::i;:::-;-1:-1:-1;;;;;106303:28:0;;;;;;:20;:28;;;;;;:82;;;;:::i;18443:102::-;18499:13;18531:7;18524:14;;;;;:::i;34963:110::-;35027:7;35049:19;19407:12;;;19320:106;119716:157;119831:37;119845:10;119857:2;119861:6;119831:13;:37::i;120389:246::-;115957:27;114652:1;115957:8;:27::i;:::-;-1:-1:-1;;;;;115943:41:0;:10;-1:-1:-1;;;;;115943:41:0;;115928:95;;;;-1:-1:-1;;;115928:95:0;;;;;;;:::i;:::-;120557:36:::1;120571:4;120577:2;120581:11;120557:13;:36::i;:::-;;120599:31;120607:4;120613:2;120617:12;120599:7;:31::i;:::-;120389:246:::0;;;;:::o;22670:427::-;22763:4;16050:10;22763:4;22844:25;16050:10;22861:7;22844:9;:25::i;:::-;22817:52;;22907:15;22887:16;:35;;22879:85;;;;-1:-1:-1;;;22879:85:0;;16969:2:1;22879:85:0;;;16951:21:1;17008:2;16988:18;;;16981:30;17047:34;17027:18;;;17020:62;-1:-1:-1;;;17098:18:1;;;17091:35;17143:19;;22879:85:0;16767:401:1;22879:85:0;22998:60;23007:5;23014:7;23042:15;23023:16;:34;22998:8;:60::i;116990:349::-;102749:23;;116725:1;;102738:34;;102723:111;;;;-1:-1:-1;;;102723:111:0;;17375:2:1;102723:111:0;;;17357:21:1;17414:2;17394:18;;;17387:30;17453:34;17433:18;;;17426:62;-1:-1:-1;;;17504:18:1;;;17497:44;17558:19;;102723:111:0;17173:410:1;102723:111:0;102841:23;:34;;;117198:136:::1;117217:13:::0;117238:18;117264:11;117283:22;117313:15;117198:11:::1;:136::i;:::-;102679:209:::0;116990:349;;;;;:::o;19805:189::-;19884:4;16050:10;19938:28;16050:10;19955:2;19959:6;19938:9;:28::i;113034:203::-;112092:13;;;;:7;:13;;;;;;113127:4;;-1:-1:-1;;;;;112092:13:0;112109:10;112092:27;112084:61;;;;-1:-1:-1;;;112084:61:0;;17790:2:1;112084:61:0;;;17772:21:1;17829:2;17809:18;;;17802:30;-1:-1:-1;;;17848:18:1;;;17841:51;17909:18;;112084:61:0;17588:345:1;112084:61:0;113141:20:::1;::::0;;;:14:::1;:20;::::0;;;;;;;;:38;;-1:-1:-1;;;;;;113141:38:0::1;-1:-1:-1::0;;;;;113141:38:0;::::1;::::0;;::::1;::::0;;;113190:42;;643:25:1;;;113190:42:0::1;::::0;616:18:1;113190:42:0::1;;;;;;;113034:203:::0;;;:::o;118580:143::-;118688:30;118695:10;118707:2;118711:6;118688;:30::i;122310:129::-;115662:26;114552:1;115662:8;:26::i;:::-;-1:-1:-1;;;;;115648:40:0;:10;-1:-1:-1;;;;;115648:40:0;;115633:96;;;;-1:-1:-1;;;115633:96:0;;;;;;;:::i;:::-;122378:20:::1;:28:::0;;-1:-1:-1;;;;122378:28:0::1;::::0;;122417:17:::1;::::0;::::1;::::0;122401:5:::1;::::0;122417:17:::1;122310:129::o:0;118013:355::-;118141:10;-1:-1:-1;;;;;118155:16:0;118141:30;;118133:64;;;;-1:-1:-1;;;118133:64:0;;18140:2:1;118133:64:0;;;18122:21:1;18179:2;18159:18;;;18152:30;-1:-1:-1;;;18198:18:1;;;18191:51;18259:18;;118133:64:0;17938:345:1;118133:64:0;118209:9;118204:118;118228:17;:24;118224:1;:28;118204:118;;;19407:12;;118267:17;118285:1;118267:20;;;;;;;;:::i;:::-;;;;;;;;;;;;:32;:48;118254:3;;118204:118;;;;118328:35;118345:17;118328:16;:35::i;33641:406::-;33759:7;33784:66;33858:51;33920:40;33945:14;33920:24;:40::i;:::-;33776:184;;;;;33974:68;33995:9;34006:15;34023:4;34029:12;33974:20;:68::i;:::-;33967:75;33641:406;-1:-1:-1;;;;;33641:406:0:o;34157:424::-;34296:7;34319:66;34393:51;34455:40;34480:14;34455:24;:40::i;:::-;34311:184;;;;;34509:67;34530:9;34541:15;34558:4;34564:11;34509:20;:67::i;:::-;34502:74;34157:424;-1:-1:-1;;;;;;34157:424:0:o;108928:736::-;109111:55;;;32119:77;109111:55;;;18519:25:1;-1:-1:-1;;;;;18580:32:1;;18560:18;;;18553:60;;;;18629:18;;;18622:34;;;18672:18;;;18665:34;;;109073:18:0;;18491:19:1;;109111:55:0;;;;;;;;;;;;109094:78;;;;;;109073:99;;109178:14;109241:16;;109259:10;109212:58;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;109212:58:0;;;;;;;;;109195:81;;109212:58;109195:81;;;;109282:17;109302:26;;;;;;;;;19334:25:1;;;19407:4;19395:17;;19375:18;;;19368:45;;;;19429:18;;;19422:34;;;19472:18;;;19465:34;;;109195:81:0;;-1:-1:-1;109282:17:0;109302:26;;19306:19:1;;109302:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;109302:26:0;;-1:-1:-1;;109302:26:0;;;-1:-1:-1;;;;;;;109342:23:0;;109334:53;;;;-1:-1:-1;;;109334:53:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;109410:18:0;;;;;;:7;:18;;;;;:20;;;;;;:::i;:::-;;;;;109401:5;:29;109393:55;;;;-1:-1:-1;;;109393:55:0;;20198:2:1;109393:55:0;;;20180:21:1;20237:2;20217:18;;;20210:30;-1:-1:-1;;;20256:18:1;;;20249:43;20309:18;;109393:55:0;19996:337:1;109393:55:0;109481:6;109462:15;:25;;109454:56;;;;-1:-1:-1;;;109454:56:0;;;;;;;:::i;:::-;109516:66;109532:9;109543;109554:27;109516:15;:66::i;:::-;109588:71;109604:9;109615;109626:32;109588:15;:71::i;:::-;109067:597;;;108928:736;;;;;;:::o;106427:849::-;-1:-1:-1;;;;;106594:19:0;;106586:45;;;;-1:-1:-1;;;106586:45:0;;20887:2:1;106586:45:0;;;20869:21:1;20926:2;20906:18;;;20899:30;-1:-1:-1;;;20945:18:1;;;20938:43;20998:18;;106586:45:0;20685:337:1;106586:45:0;106695:8;106676:15;:27;;106668:58;;;;-1:-1:-1;;;106668:58:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;106760:14:0;;;106732:25;106760:14;;;:7;:14;;;;;;;;;106860:16;;106907:163;;104832:107;106907:163;;;21314:25:1;21355:18;;;21348:60;;;;21444:32;;;21424:18;;;21417:60;21493:18;;;21486:34;;;21536:19;;;21529:35;;;21580:19;;;;21573:35;;;106907:163:0;;;;;;;;;;21286:19:1;;;106907:163:0;;;106886:194;;;;;;;106760:14;;106732:25;;106814:274;;106860:16;106886:194;106814:274;;;:::i;:::-;;;;-1:-1:-1;;106814:274:0;;;;;;;;;106797:297;;106814:274;106797:297;;;;107118:26;;;;;;;;;19334:25:1;;;19407:4;19395:17;;19375:18;;;19368:45;;;;19429:18;;;19422:34;;;19472:18;;;19465:34;;;106797:297:0;-1:-1:-1;107118:26:0;;19306:19:1;;107118:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;107109:35:0;:5;-1:-1:-1;;;;;107109:35:0;;107101:65;;;;-1:-1:-1;;;107101:65:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;107190:14:0;;;;;;:7;:14;;;;;107227:1;107207:21;;107190:38;;107240:31;107198:5;107256:7;107265:5;107240:8;:31::i;32553:157::-;32651:54;32667:10;32679:9;32690:14;32651:15;:54::i;20052:149::-;-1:-1:-1;;;;;20167:18:0;;;20141:7;20167:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;20052:149::o;120136:216::-;120262:42;120276:10;120288:2;120292:11;120262:13;:42::i;:::-;;120310:37;120318:10;120330:2;120334:12;120310:7;:37::i;107760:768::-;107946:18;31974:96;108039:9;108066:14;108058:23;;;;;;;;:::i;:::-;107984:136;;;;;;22010:25:1;;;;-1:-1:-1;;;;;22071:32:1;;;22051:18;;;22044:60;;;;22120:18;;;22113:34;22163:18;;;22156:34;;;22206:19;;;22199:35;;;21982:19;;107984:136:0;;;;;;;;;;;;107967:159;;;;;;107946:180;;108132:14;108195:16;;108213:10;108166:58;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;108166:58:0;;;;;;;;;108149:81;;108166:58;108149:81;;;;108236:17;108256:26;;;;;;;;;19334:25:1;;;19407:4;19395:17;;19375:18;;;19368:45;;;;19429:18;;;19422:34;;;19472:18;;;19465:34;;;108149:81:0;;-1:-1:-1;108236:17:0;108256:26;;19306:19:1;;108256:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;108256:26:0;;-1:-1:-1;;108256:26:0;;;-1:-1:-1;;;;;;;108296:23:0;;108288:53;;;;-1:-1:-1;;;108288:53:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;108364:18:0;;;;;;:7;:18;;;;;:20;;;;;;:::i;:::-;;;;;108355:5;:29;108347:55;;;;-1:-1:-1;;;108347:55:0;;20198:2:1;108347:55:0;;;20180:21:1;20237:2;20217:18;;;20210:30;-1:-1:-1;;;20256:18:1;;;20249:43;20309:18;;108347:55:0;19996:337:1;108347:55:0;108435:6;108416:15;:25;;108408:56;;;;-1:-1:-1;;;108408:56:0;;;;;;;:::i;:::-;108470:53;108486:9;108497;108508:14;108470:15;:53::i;:::-;107940:588;;;107760:768;;;;;;;:::o;113388:190::-;112226:20;;;;:14;:20;;;;;;113456:4;;-1:-1:-1;;;;;112226:20:0;112250:10;112226:34;112211:94;;;;-1:-1:-1;;;112211:94:0;;22447:2:1;112211:94:0;;;22429:21:1;22486:2;22466:18;;;22459:30;22525:31;22505:18;;;22498:59;22574:18;;112211:94:0;22245:353:1;112211:94:0;113468:13:::1;::::0;;;:7:::1;:13;::::0;;;;;;;:26;;113484:10:::1;-1:-1:-1::0;;;;;;113468:26:0;;::::1;::::0;::::1;::::0;;;113500:14:::1;:20:::0;;;;;;:33;;;;::::1;::::0;;;113544:29;643:25:1;;;113544:29:0::1;::::0;616:18:1;113544:29:0::1;;;;;;;;113388:190:::0;;:::o;100553:384::-;100655:7;100682:10;;;:29;;-1:-1:-1;100696:15:0;;100682:29;100678:68;;;-1:-1:-1;100734:1:0;100727:8;;100678:68;100786:32;100808:10;-1:-1:-1;;100786:32:0;:::i;:::-;100777:5;:41;;100756:116;;;;-1:-1:-1;;;100756:116:0;;22805:2:1;100756:116:0;;;22787:21:1;22844:2;22824:18;;;22817:30;22883;22863:18;;;22856:58;22931:18;;100756:116:0;22603:352:1;100756:116:0;100201:3;100891:18;100899:10;100891:5;:18;:::i;:::-;100890:40;;;;:::i;128926:229::-;129029:7;129059:91;129117:11;129112:1;129117:11;129062:32;114758:4;129062:11;:32;:::i;:::-;129061:48;;;;:::i;:::-;:52;;;;:::i;:::-;129060:68;;;;:::i;:::-;129059:89;:91::i;128346:224::-;128431:15;-1:-1:-1;;;;;128431:20:0;128450:1;128431:20;128423:51;;;;-1:-1:-1;;;128423:51:0;;23162:2:1;128423:51:0;;;23144:21:1;23201:2;23181:18;;;23174:30;-1:-1:-1;;;23220:18:1;;;23213:48;23278:18;;128423:51:0;22960:342:1;128423:51:0;128480:20;:38;;-1:-1:-1;;;;;;128480:38:0;-1:-1:-1;;;;;128480:38:0;;;;;;;;128529:36;;3935:51:1;;;128529:36:0;;3923:2:1;3908:18;128529:36:0;;;;;;;;128346:224;:::o;53116:239::-;53280:58;;-1:-1:-1;;;;;23499:32:1;;53280:58:0;;;23481:51:1;23548:18;;;23541:34;;;53228:120:0;;53261:5;;-1:-1:-1;;;53303:23:0;23454:18:1;;53280:58:0;;;;-1:-1:-1;;53280:58:0;;;;;;;;;;;;;;-1:-1:-1;;;;;53280:58:0;-1:-1:-1;;;;;;53280:58:0;;;;;;;;;;53228:19;:120::i;26582:370::-;-1:-1:-1;;;;;26713:19:0;;26705:68;;;;-1:-1:-1;;;26705:68:0;;23788:2:1;26705:68:0;;;23770:21:1;23827:2;23807:18;;;23800:30;23866:34;23846:18;;;23839:62;-1:-1:-1;;;23917:18:1;;;23910:34;23961:19;;26705:68:0;23586:400:1;26705:68:0;-1:-1:-1;;;;;26791:21:0;;26783:68;;;;-1:-1:-1;;;26783:68:0;;24193:2:1;26783:68:0;;;24175:21:1;24232:2;24212:18;;;24205:30;24271:34;24251:18;;;24244:62;-1:-1:-1;;;24322:18:1;;;24315:32;24364:19;;26783:68:0;23991:398:1;26783:68:0;-1:-1:-1;;;;;26862:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;26913:32;;643:25:1;;;26913:32:0;;616:18:1;26913:32:0;;;;;;;26582:370;;;:::o;126795:1421::-;126893:6;126903:1;126893:11;126885:43;;;;-1:-1:-1;;;126885:43:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;126978:22:0;;126935:40;126978:22;;;:16;:22;;;;;;;;;126935:65;;;;;;;;;;;;;;-1:-1:-1;;;126935:65:0;;-1:-1:-1;;;;;126935:65:0;;;;;127011:20;;-1:-1:-1;;;127011:20:0;;;;127006:329;;127107:16;;127078:26;;:45;;127107:16;127078:45;;;:::i;:::-;127059:15;:64;;127041:124;;;;-1:-1:-1;;;127041:124:0;;24944:2:1;127041:124:0;;;24926:21:1;24983:2;24963:18;;;24956:30;-1:-1:-1;;;25002:18:1;;;24995:51;25063:18;;127041:124:0;24742:345:1;127041:124:0;127239:16;;127210:26;;127270:14;;127210:45;;;;;:::i;:::-;127191:65;;:15;:65;:::i;:::-;:93;;127173:155;;;;-1:-1:-1;;;127173:155:0;;25294:2:1;127173:155:0;;;25276:21:1;25333:2;25313:18;;;25306:30;25372:25;25352:18;;;25345:53;25415:18;;127173:155:0;25092:347:1;127173:155:0;127341:21;127365:15;127375:4;127365:9;:15::i;:::-;127410:20;;127341:39;;-1:-1:-1;127386:21:0;;-1:-1:-1;;;127410:20:0;;;;:74;;127461:16;:23;;;-1:-1:-1;;;;;127410:74:0;;;;127439:13;127410:74;127386:98;;127498:13;127515:1;127498:18;127490:58;;;;-1:-1:-1;;;127490:58:0;;25646:2:1;127490:58:0;;;25628:21:1;25685:2;25665:18;;;25658:30;25724:29;25704:18;;;25697:57;25771:18;;127490:58:0;25444:351:1;127490:58:0;127555:22;127590:13;127581:6;:22;127580:49;;127623:6;127580:49;;;127607:13;127580:49;127555:74;;127636:57;127667:4;127673:13;127688:4;127636:30;:57::i;:::-;;127700:26;127729:29;127743:14;127729:13;:29::i;:::-;127700:58;;127765:27;127771:4;127777:14;127765:5;:27::i;:::-;127803:26;;:31;;;127799:285;;127874:14;127848:16;:23;;;-1:-1:-1;;;;;127848:40:0;;;;;:::i;:::-;127892:1;127848:45;127844:234;;-1:-1:-1;;;;;127912:22:0;;;;;;:16;:22;;;;;127905:29;127844:234;;;128043:26;:14;:24;:26::i;:::-;-1:-1:-1;;;;;128001:22:0;;;;;;:16;:22;;;;;:29;:68;;-1:-1:-1;;;;;128001:68:0;;-1:-1:-1;;;128001:29:0;;-1:-1:-1;;;;;128001:29:0;:68;:::i;:::-;-1:-1:-1;;;;;127959:22:0;;;;;;:16;:22;;;;;:110;;-1:-1:-1;;;;;127959:110:0;;;;-1:-1:-1;;;127959:110:0;;;;;;;;;;;127844:234;128090:57;-1:-1:-1;;;;;128097:12:0;128090:33;128124:2;128128:18;128090:33;:57::i;:::-;128172:2;-1:-1:-1;;;;;128159:52:0;128166:4;-1:-1:-1;;;;;128159:52:0;;128176:18;128196:14;128159:52;;;;;;26177:25:1;;;26233:2;26218:18;;26211:34;26165:2;26150:18;;26003:248;128159:52:0;;;;;;;;126879:1337;;;;;126795:1421;;;:::o;124232:642::-;124331:7;124354:6;124364:1;124354:11;124346:43;;;;-1:-1:-1;;;124346:43:0;;;;;;;:::i;:::-;124395:23;124421:84;124459:4;124471:15;124481:4;124471:9;:15::i;:::-;124494:5;124421:30;:84::i;:::-;124395:110;;124512:21;124546:15;124537:6;:24;124536:65;;124595:6;124536:65;;;124571:15;124536:65;124512:89;;124615:13;124632:1;124615:18;124607:50;;;;-1:-1:-1;;;124607:50:0;;;;;;;:::i;:::-;124693:31;124711:13;124693:15;:31;:::i;:::-;-1:-1:-1;;;;;124664:26:0;;;;;;;:20;:26;;;;;:60;;;;124730:63;;:12;:29;124760:13;124775:2;124779:13;124730:29;:63::i;:::-;124825:2;-1:-1:-1;;;;;124804:39:0;124819:4;-1:-1:-1;;;;;124804:39:0;;124829:13;124804:39;;;;643:25:1;;631:2;616:18;;497:177;124804:39:0;;;;;;;;124856:13;124232:642;-1:-1:-1;;;;;124232:642:0:o;27233:441::-;27363:24;27390:25;27400:5;27407:7;27390:9;:25::i;:::-;27363:52;;-1:-1:-1;;27429:16:0;:37;27425:243;;27510:6;27490:16;:26;;27482:68;;;;-1:-1:-1;;;27482:68:0;;26458:2:1;27482:68:0;;;26440:21:1;26497:2;26477:18;;;26470:30;26536:31;26516:18;;;26509:59;26585:18;;27482:68:0;26256:353:1;27482:68:0;27592:51;27601:5;27608:7;27636:6;27617:16;:25;27592:8;:51::i;129159:885::-;129260:21;129284:15;129294:4;129284:9;:15::i;:::-;129260:39;;129319:57;129350:4;129356:13;129371:4;129319:30;:57::i;:::-;;129412:2;-1:-1:-1;;;;;129404:10:0;:4;-1:-1:-1;;;;;129404:10:0;;129400:600;;129424:19;129446:13;129456:2;129446:9;:13::i;:::-;129424:35;;129467:53;129498:2;129502:11;129515:4;129467:30;:53::i;:::-;-1:-1:-1;;;;;;129578:22:0;;129529:46;129578:22;;;:16;:22;;;;;;;;;129529:71;;;;;;;;;;;;;;;-1:-1:-1;;;129529:71:0;;;-1:-1:-1;;;;;129529:71:0;;;;;;;;129612:37;129608:386;;129774:6;129757:13;:23;129753:233;;-1:-1:-1;;;;;129801:22:0;;;;;;:16;:22;;;;;129794:29;129753:233;;;129869:29;;;;-1:-1:-1;;;;;129844:54:0;:22;129860:6;129844:13;:22;:::i;:::-;:54;129840:146;;;129952:22;129968:6;129952:13;:22;:::i;:::-;-1:-1:-1;;;;;129912:22:0;;;;;;:16;:22;;;;;:63;;-1:-1:-1;;;;;129912:63:0;;;;-1:-1:-1;;;129912:63:0;;;;;;;;;;;129840:146;129416:584;;129400:600;130006:33;130022:4;130028:2;130032:6;130006:15;:33::i;119004:304::-;119052:14;119069:15;119079:4;119069:9;:15::i;:::-;119052:32;;119098:6;119108:1;119098:11;119090:51;;;;-1:-1:-1;;;119090:51:0;;26816:2:1;119090:51:0;;;26798:21:1;26855:2;26835:18;;;26828:30;26894:29;26874:18;;;26867:57;26941:18;;119090:51:0;26614:351:1;119090:51:0;119172:97;;;;;;;;;119215:15;119172:97;;;;-1:-1:-1;;;;;119172:97:0;;;;;;;;;;-1:-1:-1;;;;;119147:22:0;;-1:-1:-1;119147:22:0;;;:16;:22;;;;;;;:122;;;;;;;-1:-1:-1;;;119147:122:0;;;;;;;;;;119281:22;;;;;;119255:6;643:25:1;;631:2;616:18;;497:177;53361:275:0;53551:68;;-1:-1:-1;;;;;27190:32:1;;;53551:68:0;;;27172:51:1;27259:32;;27239:18;;;27232:60;27308:18;;;27301:34;;;53499:130:0;;53532:5;;-1:-1:-1;;;53574:27:0;27145:18:1;;53551:68:0;26970:371:1;35293:602:0;-1:-1:-1;;;;;35426:23:0;;35418:53;;;;-1:-1:-1;;;35418:53:0;;27548:2:1;35418:53:0;;;27530:21:1;27587:2;27567:18;;;27560:30;-1:-1:-1;;;27606:18:1;;;27599:47;27663:18;;35418:53:0;27346:341:1;35418:53:0;35483:45;35532:40;35557:14;35532:24;:40::i;:::-;35478:94;;;;35579:24;35606:20;35616:9;35606;:20::i;:::-;35579:47;;35633:25;35661:35;35675:9;35686;35661:13;:35::i;:::-;-1:-1:-1;;;;;35703:20:0;;;;;;;;;;;;;;:32;;-1:-1:-1;;;;;;35703:32:0;;;;;;;;;;35633:63;-1:-1:-1;35742:84:0;35633:63;35703:32;35793:16;35811:14;35742:20;:84::i;:::-;35864:9;-1:-1:-1;;;;;35837:53:0;35853:9;-1:-1:-1;;;;;35837:53:0;;35875:14;35837:53;;;;;;:::i;:::-;;;;;;;;35412:483;;;35293:602;;;:::o;110737:612::-;110857:56;;;;111066:14;:45;;;;;;;;:::i;:::-;;111062:283;;-1:-1:-1;111129:16:0;;-1:-1:-1;111147:22:0;;-1:-1:-1;111171:16:0;111121:67;;111062:283;-1:-1:-1;111226:26:0;;-1:-1:-1;111262:32:0;;-1:-1:-1;111304:26:0;111062:283;110737:612;;;;;:::o;41594:299::-;-1:-1:-1;;;;;41763:20:0;;;41718:7;41763:20;;;;;;;;;;;41718:7;;41763:20;;41790:68;;41842:9;41835:16;;;;;123423:274;100201:3;123509:10;:45;123494:103;;;;-1:-1:-1;;;123494:103:0;;28364:2:1;123494:103:0;;;28346:21:1;28403:2;28383:18;;;28376:30;28442:29;28422:18;;;28415:57;28489:18;;123494:103:0;28162:351:1;123494:103:0;123604:23;:36;;;123651:41;;643:25:1;;;123651:41:0;;631:2:1;616:18;123651:41:0;497:177:1;123812:158:0;123881:16;:34;;;123926:39;;643:25:1;;;123926:39:0;;631:2:1;616:18;123926:39:0;497:177:1;61809:692:0;61938:7;;;61986:484;62010:6;:13;62006:1;:17;61986:484;;;62038:29;62070:6;:33;62077:6;62084:1;62077:9;;;;;;;;:::i;:::-;;;;;;;;;;;;:25;-1:-1:-1;;;;;62070:33:0;;;;;;;;;;;62077:25;62070:33;;;62156:17;;;;62183:29;;62263:9;;62070:33;;-1:-1:-1;62132:160:0;;-1:-1:-1;;;;;62183:29:0;;;;-1:-1:-1;;;62222:31:0;;;;62263:6;;62270:1;;62263:9;;;;;;:::i;:::-;;;;;;;:21;;;62132:14;:160::i;:::-;62111:181;;62351:112;62374:6;62381:1;62374:9;;;;;;;;:::i;:::-;;;;;;;:22;;;62408:10;62430:11;:17;;:23;62448:4;-1:-1:-1;;;;;62430:23:0;-1:-1:-1;;;;;62430:23:0;;;;;;;;;;;;;62351:11;:112::i;:::-;62326:137;;:14;:137;:::i;:::-;62301:162;-1:-1:-1;;;62025:3:0;;61986:484;;;-1:-1:-1;62482:14:0;61809:692;-1:-1:-1;;;61809:692:0:o;117343:620::-;117564:18;;;117580:1;117564:18;;;;;;;;;117532:29;;117564:18;;;;-1:-1:-1;;;;;;;;;;;;;;;;;117564:18:0;;;;;;;;;;;;;;;117532:50;;117604:42;;;;;;;;114552:1;117604:42;;;;117632:13;-1:-1:-1;;;;;117604:42:0;;;;117588:10;117599:1;117588:13;;;;;;;;:::i;:::-;;;;;;:58;;;;117668:50;;;;;;;;114603:1;117668:50;;;;117699:18;-1:-1:-1;;;;;117668:50:0;;;;117652:10;117663:1;117652:13;;;;;;;;:::i;:::-;;;;;;:66;;;;117740:41;;;;;;;;114652:1;117740:41;;;;117769:11;-1:-1:-1;;;;;117740:41:0;;;;117724:10;117735:1;117724:13;;;;;;;;:::i;:::-;;;;;;:57;;;;117788:23;117800:10;117788:11;:23::i;:::-;117818:50;117845:22;117818:26;:50::i;:::-;117874:36;117894:15;117874:19;:36::i;:::-;117916:42;114705:4;117916:19;:42::i;125885:724::-;125983:20;;-1:-1:-1;;;125983:20:0;;;;125982:21;125974:50;;;;-1:-1:-1;;;125974:50:0;;28720:2:1;125974:50:0;;;28702:21:1;28759:2;28739:18;;;28732:30;-1:-1:-1;;;28778:18:1;;;28771:46;28834:18;;125974:50:0;28518:340:1;125974:50:0;126038:6;126048:1;126038:11;126030:43;;;;-1:-1:-1;;;126030:43:0;;;;;;;:::i;:::-;126080:19;126102:13;126112:2;126102:9;:13::i;:::-;126080:35;;126122:22;126147:101;126179:2;126197:4;126210:11;126229:13;19407:12;;;19320:106;126229:13;126147:24;:101::i;:::-;126122:126;-1:-1:-1;126259:19:0;;126255:155;;-1:-1:-1;;;;;126315:24:0;;;;;;:20;:24;;;;;;:41;;126342:14;;126315:41;:::i;:::-;-1:-1:-1;;;;;126288:24:0;;;;;;:20;:24;;;;;;;;;:68;;;;126369:34;;23481:51:1;;;23548:18;;;23541:34;;;126369::0;;23454:18:1;126369:34:0;;;;;;;126255:155;126416:20;126439;126452:6;126439:12;:20::i;:::-;126416:43;-1:-1:-1;126466:58:0;-1:-1:-1;;;;;126466:12:0;:29;126496:4;126510;126517:6;126466:29;:58::i;:::-;126531:23;126537:2;126541:12;126531:5;:23::i;:::-;126579:2;-1:-1:-1;;;;;126566:38:0;126573:4;-1:-1:-1;;;;;126566:38:0;;126583:6;126591:12;126566:38;;;;;;26177:25:1;;;26233:2;26218:18;;26211:34;26165:2;26150:18;;26003:248;57961:642:0;58078:9;58073:526;58097:17;:24;58093:1;:28;58073:526;;;58136:29;58168:6;:60;58184:17;58202:1;58184:20;;;;;;;;:::i;:::-;;;;;;;:36;;;-1:-1:-1;;;;;58168:60:0;-1:-1:-1;;;;;58168:60:0;;;;;;;;;;;;58136:92;;58237:142;58272:17;58290:1;58272:20;;;;;;;;:::i;:::-;;;;;;;:36;;;58318:11;58339:17;58357:1;58339:20;;;;;;;;:::i;:::-;;;;;;;:32;;;58237:25;:142::i;:::-;;58420:17;58438:1;58420:20;;;;;;;;:::i;:::-;;;;;;;;;;;:38;58388:70;;-1:-1:-1;;58388:70:0;-1:-1:-1;;;;;58388:70:0;;;;;;58500:20;;;;58518:1;;58500:20;;;;;;:::i;:::-;;;;;;;:36;;;-1:-1:-1;;;;;58472:120:0;;58546:17;58564:1;58546:20;;;;;;;;:::i;:::-;;;;;;;;;;;;:38;58472:120;;-1:-1:-1;;;;;29027:47:1;;;29009:66;;28982:18;58472:120:0;;;;;;;-1:-1:-1;58123:3:0;;58073:526;;37919:625;38156:7;38194:12;38179:11;:27;;38171:60;;;;-1:-1:-1;;;38171:60:0;;29288:2:1;38171:60:0;;;29270:21:1;29327:2;29307:18;;;29300:30;-1:-1:-1;;;29346:18:1;;;29339:50;29406:18;;38171:60:0;29086:344:1;38171:60:0;-1:-1:-1;;;;;38263:21:0;;38238:22;38263:21;;;;;;;;;;;;38295:19;;;38291:62;;38331:15;38341:4;38331:9;:15::i;:::-;38324:22;;;;;38291:62;-1:-1:-1;;;;;38398:15:0;;;;;;;;;;;;;;:18;;;;;;;;:30;-1:-1:-1;;;;;38398:30:0;:44;-1:-1:-1;38394:73:0;;;38459:1;38452:8;;;;;38394:73;-1:-1:-1;;;;;38494:15:0;;;;;;;;;;;;;38480:59;;38511:14;38527:11;38480:13;:59::i;67994:192::-;68051:7;-1:-1:-1;;;;;68078:26:0;;;68070:78;;;;-1:-1:-1;;;68070:78:0;;29637:2:1;68070:78:0;;;29619:21:1;29676:2;29656:18;;;29649:30;29715:34;29695:18;;;29688:62;-1:-1:-1;;;29766:18:1;;;29759:37;29813:19;;68070:78:0;29435:403:1;68070:78:0;-1:-1:-1;68173:5:0;67994:192::o;55990:786::-;56409:23;56435:103;56476:4;56435:103;;;;;;;;;;;;;;;;;56443:5;-1:-1:-1;;;;;56435:27:0;;;:103;;;;;:::i;:::-;56552:17;;56409:129;;-1:-1:-1;56552:21:0;56548:222;;56664:10;56653:30;;;;;;;;;;;;:::i;:::-;56628:131;;;;-1:-1:-1;;;56628:131:0;;30327:2:1;56628:131:0;;;30309:21:1;30366:2;30346:18;;;30339:30;30405:34;30385:18;;;30378:62;-1:-1:-1;;;30456:18:1;;;30449:40;30506:19;;56628:131:0;30125:406:1;110009:560:0;110138:7;110153:22;110178:103;110210:4;110230;110243:11;110262:13;19407:12;;;19320:106;110178:103;-1:-1:-1;;;;;110314:26:0;;110287:24;110314:26;;;:20;:26;;;;;;110153:128;;-1:-1:-1;110287:24:0;110314:43;;110153:128;;110314:43;:::i;:::-;110287:70;-1:-1:-1;110368:19:0;;110364:171;;110401:13;110397:83;;;-1:-1:-1;;;;;110426:26:0;;;;;;:20;:26;;;;;:45;;;110397:83;110492:36;;;-1:-1:-1;;;;;23499:32:1;;23481:51;;23563:2;23548:18;;23541:34;;;110492:36:0;;23454:18:1;110492:36:0;;;;;;;110548:16;110009:560;-1:-1:-1;;;;;110009:560:0:o;25500:659::-;-1:-1:-1;;;;;25583:21:0;;25575:67;;;;-1:-1:-1;;;25575:67:0;;30738:2:1;25575:67:0;;;30720:21:1;30777:2;30757:18;;;30750:30;30816:34;30796:18;;;30789:62;-1:-1:-1;;;30867:18:1;;;30860:31;30908:19;;25575:67:0;30536:397:1;25575:67:0;-1:-1:-1;;;;;25738:18:0;;25713:22;25738:18;;;;;;;;;;;25774:24;;;;25766:71;;;;-1:-1:-1;;;25766:71:0;;31140:2:1;25766:71:0;;;31122:21:1;31179:2;31159:18;;;31152:30;31218:34;31198:18;;;31191:62;-1:-1:-1;;;31269:18:1;;;31262:32;31311:19;;25766:71:0;30938:398:1;25766:71:0;-1:-1:-1;;;;;25871:18:0;;:9;:18;;;;;;;;;;;25892:23;;;25871:44;;26008:12;:22;;;;;;;26056:37;643:25:1;;;25871:9:0;;:18;26056:37;;616:18:1;26056:37:0;;;;;;;119527:152;;;:::o;70078:192::-;70135:7;-1:-1:-1;;;;;70162:26:0;;;70154:78;;;;-1:-1:-1;;;70154:78:0;;31543:2:1;70154:78:0;;;31525:21:1;31582:2;31562:18;;;31555:30;31621:34;31601:18;;;31594:62;-1:-1:-1;;;31672:18:1;;;31665:37;31719:19;;70154:78:0;31341:403:1;23551:818:0;-1:-1:-1;;;;;23677:18:0;;23669:68;;;;-1:-1:-1;;;23669:68:0;;31951:2:1;23669:68:0;;;31933:21:1;31990:2;31970:18;;;31963:30;32029:34;32009:18;;;32002:62;-1:-1:-1;;;32080:18:1;;;32073:35;32125:19;;23669:68:0;31749:401:1;23669:68:0;-1:-1:-1;;;;;23755:16:0;;23747:64;;;;-1:-1:-1;;;23747:64:0;;32357:2:1;23747:64:0;;;32339:21:1;32396:2;32376:18;;;32369:30;32435:34;32415:18;;;32408:62;-1:-1:-1;;;32486:18:1;;;32479:33;32529:19;;23747:64:0;32155:399:1;23747:64:0;-1:-1:-1;;;;;23893:15:0;;23871:19;23893:15;;;;;;;;;;;23926:21;;;;23918:72;;;;-1:-1:-1;;;23918:72:0;;32761:2:1;23918:72:0;;;32743:21:1;32800:2;32780:18;;;32773:30;32839:34;32819:18;;;32812:62;-1:-1:-1;;;32890:18:1;;;32883:36;32936:19;;23918:72:0;32559:402:1;23918:72:0;-1:-1:-1;;;;;24024:15:0;;;:9;:15;;;;;;;;;;;24042:20;;;24024:38;;24239:13;;;;;;;;;;:23;;;;;;24288:26;;643:25:1;;;24239:13:0;;24288:26;;616:18:1;24288:26:0;;;;;;;24325:37;119527:152;36238:1378;36388:2;-1:-1:-1;;;;;36380:10:0;:4;-1:-1:-1;;;;;36380:10:0;;36376:37;36400:7;36376:37;36427:66;36501:51;36563:40;36588:14;36563:24;:40::i;:::-;-1:-1:-1;36419:184:0;;-1:-1:-1;36419:184:0;-1:-1:-1;;;;;;36614:18:0;;;36610:508;;-1:-1:-1;;;;;36699:21:0;;36642:16;36699:21;;;;;;;;;;;36733:23;;36729:155;;-1:-1:-1;;;;;36779:15:0;;;;;;;;;;;;;;36795:22;36816:1;36795:18;:22;:::i;:::-;36779:39;;;;;;;;;;;-1:-1:-1;36779:39:0;:45;-1:-1:-1;;;36779:45:0;;-1:-1:-1;;;;;36779:45:0;;-1:-1:-1;36729:155:0;;;36860:15;36870:4;36860:9;:15::i;:::-;36849:26;;36729:155;36892:143;36916:9;36935:15;36960:4;36982:8;37009:17;37020:6;36982:8;37009:17;:::i;:::-;36892:14;:143::i;:::-;-1:-1:-1;;;;;37049:62:0;;;37077:17;37088:6;37077:8;:17;:::i;:::-;37096:14;37049:62;;;;;;;:::i;:::-;;;;;;;;36634:484;;36610:508;-1:-1:-1;;;;;37127:16:0;;;37123:489;;-1:-1:-1;;;;;37208:19:0;;37153:16;37208:19;;;;;;;;;;;37239:21;;37235:147;;-1:-1:-1;;;;;37283:13:0;;;;;;;;;;;;;;37297:20;37316:1;37297:16;:20;:::i;:::-;37283:35;;;;;;;;;;;-1:-1:-1;37283:35:0;:41;-1:-1:-1;;;37283:41:0;;-1:-1:-1;;;;;37283:41:0;;-1:-1:-1;37235:147:0;;;37360:13;37370:2;37360:9;:13::i;:::-;37349:24;;37235:147;37390:141;37414:9;37433:15;37458:2;37478:8;37505:17;37516:6;37478:8;37505:17;:::i;37390:141::-;-1:-1:-1;;;;;37545:60:0;;;37571:17;37582:6;37571:8;:17;:::i;:::-;37590:14;37545:60;;;;;;;:::i;:::-;;;;;;;;37145:467;;36370:1246;;36238:1378;;;;:::o;63545:682::-;63712:7;63738:22;;;:49;;-1:-1:-1;63770:17:0;;63738:49;:97;;;;63820:15;63797:19;-1:-1:-1;;;;;63797:38:0;;63738:97;:146;;;;63868:16;63845:19;-1:-1:-1;;;;;63845:39:0;;;63738:146;63727:198;;;-1:-1:-1;63906:12:0;63899:19;;63727:198;63931:24;63976:16;63958:15;:34;:83;;64026:15;63958:83;;;64001:16;63958:83;63931:110;-1:-1:-1;64047:17:0;64067:38;-1:-1:-1;;;;;64067:38:0;;63931:110;64067:38;:::i;:::-;64047:58;-1:-1:-1;64210:12:0;64194;64159:22;57342:2;64159;:22;:::i;:::-;64126:29;64146:9;64126:17;:29;:::i;:::-;:56;;;;:::i;:::-;64125:81;;;;:::i;:::-;64124:98;;;;:::i;:::-;64111:111;63545:682;-1:-1:-1;;;;;;;63545:682:0:o;62845:248::-;62976:7;63065:22;57342:2;63065;:22;:::i;:::-;63029:24;63044:9;63029:12;:24;:::i;:::-;63005:49;;:20;:49;:::i;:::-;63004:84;;;;:::i;113582:408::-;113654:9;113649:337;113673:10;:17;113669:1;:21;113649:337;;;113761:1;-1:-1:-1;;;;;113722:41:0;:7;:27;113730:10;113741:1;113730:13;;;;;;;;:::i;:::-;;;;;;;;;;;;:18;113722:27;;;;;;;;;;113730:18;113722:27;;-1:-1:-1;;;;;113722:27:0;:41;:88;;;;;113808:1;-1:-1:-1;;;;;113777:33:0;:10;113788:1;113777:13;;;;;;;;:::i;:::-;;;;;;;:19;;;-1:-1:-1;;;;;113777:33:0;;;113722:88;113705:152;;;;-1:-1:-1;;;113705:152:0;;34885:2:1;113705:152:0;;;34867:21:1;34924:2;34904:18;;;34897:30;34963:29;34943:18;;;34936:57;35010:18;;113705:152:0;34683:351:1;113705:152:0;113895:10;113906:1;113895:13;;;;;;;;:::i;:::-;;;;;;;:19;;;113865:7;:27;113873:10;113884:1;113873:13;;;;;;;;:::i;:::-;;;;;;;:18;;;113865:27;;;;;;;;;;;;:49;;;;;-1:-1:-1;;;;;113865:49:0;;;;;-1:-1:-1;;;;;113865:49:0;;;;;;113939:10;113950:1;113939:13;;;;;;;;:::i;:::-;;;;;;;:19;;;-1:-1:-1;;;;;113927:52:0;;113960:10;113971:1;113960:13;;;;;;;;:::i;:::-;;;;;;;:18;;;113927:52;;;;643:25:1;;631:2;616:18;;497:177;113927:52:0;;;;;;;;113692:3;;113649:337;;60133:641;-1:-1:-1;;;;;60322:13:0;;;60277:7;60322:13;;;:6;:13;;;;;;;;60361:21;;;;;:15;;;:21;;;;;;60277:7;;60322:13;60277:7;;60440:56;60329:5;60322:13;60484:11;60440:25;:56::i;:::-;60421:75;;60520:8;60507:9;:21;60503:239;;60542:17;;60538:105;;60588:46;60600:12;60614:8;60624:9;60588:11;:46::i;:::-;60571:63;;60538:105;-1:-1:-1;;;;;60651:21:0;;;;;;;:15;;;:21;;;;;;;:32;;;60696:39;;;;;;;;;60675:8;643:25:1;;631:2;616:18;;497:177;60696:39:0;;;;;;;;60503:239;-1:-1:-1;60755:14:0;60133:641;-1:-1:-1;;;;;;;60133:641:0:o;24645:535::-;-1:-1:-1;;;;;24728:21:0;;24720:65;;;;-1:-1:-1;;;24720:65:0;;35241:2:1;24720:65:0;;;35223:21:1;35280:2;35260:18;;;35253:30;35319:33;35299:18;;;35292:61;35370:18;;24720:65:0;35039:355:1;24720:65:0;24872:6;24856:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;25024:18:0;;:9;:18;;;;;;;;;;;:28;;;;;;25077:37;643:25:1;;;25077:37:0;;616:18:1;25077:37:0;;;;;;;119345:145;;:::o;59016:713::-;59196:17;;;;59249:31;;59162:7;;59196:17;-1:-1:-1;;;59249:31:0;;-1:-1:-1;;;;;59249:31:0;59291:15;:38;;;59287:74;;-1:-1:-1;59346:8:0;-1:-1:-1;59339:15:0;;59287:74;59424:29;;59367:16;;59386:119;;59408:8;;-1:-1:-1;;;;;59424:29:0;59461:19;59488:11;59386:14;:119::i;:::-;59367:138;;59528:8;59516;:20;59512:126;;59546:17;;;:28;;;59587:44;;643:25:1;;;-1:-1:-1;;;;;59587:44:0;;;;;631:2:1;616:18;59587:44:0;;;;;;;59512:126;59644:58;;-1:-1:-1;;;;;59686:15:0;59644:58;;-1:-1:-1;;;59644:58:0;;;;;;59716:8;-1:-1:-1;;;59016:713:0;;;;;:::o;38548:848::-;-1:-1:-1;;38775:18:0;;38687:7;38765:29;;;;;;;;;;:41;-1:-1:-1;;;;;38765:41:0;:56;-1:-1:-1;38761:123:0;;-1:-1:-1;;;38850:18:0;;38840:29;;;;;;;;;;;:35;-1:-1:-1;;;38840:35:0;;-1:-1:-1;;;;;38840:35:0;38833:42;;38761:123;38892:13;-1:-1:-1;;38933:18:0;;38959:390;38974:5;38966;:13;38959:390;;;39034:1;39017:13;;;39016:19;39008:27;;38991:14;39099:17;;;;;;;;;;;;39072:44;;;;;;;;;-1:-1:-1;;;;;39072:44:0;;;;;;-1:-1:-1;;;39072:44:0;;;;;;;;;;;39130:35;;;39126:215;;39186:14;;;-1:-1:-1;;;;;39179:21:0;;-1:-1:-1;39179:21:0;;-1:-1:-1;;;39179:21:0;39126:215;39221:20;;-1:-1:-1;;;;;39221:34:0;;-1:-1:-1;39217:124:0;;;39277:6;39269:14;;39217:124;;;39329:1;39320:6;:10;39312:18;;39217:124;38981:368;;38959:390;;;-1:-1:-1;39363:16:0;;;;;;;;;-1:-1:-1;;39363:16:0;;;;:22;-1:-1:-1;;;39363:22:0;;-1:-1:-1;;;;;39363:22:0;;38548:848;-1:-1:-1;38548:848:0:o;47133:223::-;47266:12;47297:52;47319:6;47327:4;47333:1;47336:12;47297:21;:52::i;40440:813::-;-1:-1:-1;;;;;40756:22:0;;40675:20;40756:22;;;;;;;;;;;;40838:16;;;;;;;40706:12;;40756:22;40923:24;;;;;:101;;-1:-1:-1;;;;;;40957:67:0;;:14;:39;40972:23;40994:1;40972:19;:23;:::i;:::-;40957:39;;;;;;;;;;;-1:-1:-1;40957:39:0;:51;-1:-1:-1;;;;;40957:51:0;:67;40923:101;40912:337;;;41087:8;41039:14;:39;41054:23;41076:1;41054:19;:23;:::i;:::-;41039:39;;;;;;;;;;;-1:-1:-1;41039:39:0;:56;;-1:-1:-1;;;;;41039:56:0;;;-1:-1:-1;;;41039:56:0;;;;;;;;;40912:337;;;41154:32;;;;;;;;-1:-1:-1;;;;;41154:32:0;;;;;;;;;;;;;;;-1:-1:-1;41116:35:0;;;;;;;;;;;:70;;;;;;-1:-1:-1;;;41116:70:0;;;;;;;;;41219:23;41131:19;41116:70;41219:23;:::i;:::-;-1:-1:-1;;;;;41194:22:0;;;;;;;;;;;;;:48;40912:337;40669:584;;;40440:813;;;;;:::o;48220:446::-;48385:12;48442:5;48417:21;:30;;48409:81;;;;-1:-1:-1;;;48409:81:0;;35601:2:1;48409:81:0;;;35583:21:1;35640:2;35620:18;;;35613:30;35679:34;35659:18;;;35652:62;-1:-1:-1;;;35730:18:1;;;35723:36;35776:19;;48409:81:0;35399:402:1;48409:81:0;48501:12;48515:23;48542:6;-1:-1:-1;;;;;48542:11:0;48561:5;48568:4;48542:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48500:73;;;;48590:69;48617:6;48625:7;48634:10;48646:12;50906;50934:7;50930:418;;;50961:10;:17;50982:1;50961:22;50957:286;;-1:-1:-1;;;;;44726:19:0;;;51168:60;;;;-1:-1:-1;;;51168:60:0;;36300:2:1;51168:60:0;;;36282:21:1;36339:2;36319:18;;;36312:30;36378:31;36358:18;;;36351:59;36427:18;;51168:60:0;36098:353:1;51168:60:0;-1:-1:-1;51263:10:0;51256:17;;50930:418;51304:33;51312:10;51324:12;52035:17;;:21;52031:379;;52263:10;52257:17;52319:15;52306:10;52302:2;52298:19;52291:44;52031:379;52386:12;52379:20;;-1:-1:-1;;;52379:20:0;;;;;;;;:::i;14:173:1:-;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:300::-;260:6;268;321:2;309:9;300:7;296:23;292:32;289:52;;;337:1;334;327:12;289:52;360:29;379:9;360:29;:::i;:::-;350:39;458:2;443:18;;;;430:32;;-1:-1:-1;;;192:300:1:o;679:250::-;764:1;774:113;788:6;785:1;782:13;774:113;;;864:11;;;858:18;845:11;;;838:39;810:2;803:10;774:113;;;-1:-1:-1;;921:1:1;903:16;;896:27;679:250::o;934:271::-;976:3;1014:5;1008:12;1041:6;1036:3;1029:19;1057:76;1126:6;1119:4;1114:3;1110:14;1103:4;1096:5;1092:16;1057:76;:::i;:::-;1187:2;1166:15;-1:-1:-1;;1162:29:1;1153:39;;;;1194:4;1149:50;;934:271;-1:-1:-1;;934:271:1:o;1210:220::-;1359:2;1348:9;1341:21;1322:4;1379:45;1420:2;1409:9;1405:18;1397:6;1379:45;:::i;1435:186::-;1494:6;1547:2;1535:9;1526:7;1522:23;1518:32;1515:52;;;1563:1;1560;1553:12;1515:52;1586:29;1605:9;1586:29;:::i;2114:226::-;2173:6;2226:2;2214:9;2205:7;2201:23;2197:32;2194:52;;;2242:1;2239;2232:12;2194:52;-1:-1:-1;2287:23:1;;2114:226;-1:-1:-1;2114:226:1:o;2553:374::-;2630:6;2638;2646;2699:2;2687:9;2678:7;2674:23;2670:32;2667:52;;;2715:1;2712;2705:12;2667:52;2738:29;2757:9;2738:29;:::i;:::-;2728:39;;2786:38;2820:2;2809:9;2805:18;2786:38;:::i;:::-;2553:374;;2776:48;;-1:-1:-1;;;2893:2:1;2878:18;;;;2865:32;;2553:374::o;3524:260::-;3592:6;3600;3653:2;3641:9;3632:7;3628:23;3624:32;3621:52;;;3669:1;3666;3659:12;3621:52;3692:29;3711:9;3692:29;:::i;:::-;3682:39;;3740:38;3774:2;3763:9;3759:18;3740:38;:::i;:::-;3730:48;;3524:260;;;;;:::o;4332:155::-;4412:20;;4461:1;4451:12;;4441:40;;4477:1;4474;4467:12;4492:291;4579:6;4587;4640:2;4628:9;4619:7;4615:23;4611:32;4608:52;;;4656:1;4653;4646:12;4608:52;4679:29;4698:9;4679:29;:::i;:::-;4669:39;;4727:50;4773:2;4762:9;4758:18;4727:50;:::i;5011:495::-;5097:6;5105;5113;5121;5174:3;5162:9;5153:7;5149:23;5145:33;5142:53;;;5191:1;5188;5181:12;5142:53;5214:29;5233:9;5214:29;:::i;:::-;5204:39;;5262:38;5296:2;5285:9;5281:18;5262:38;:::i;:::-;5011:495;;5252:48;;-1:-1:-1;;;;5369:2:1;5354:18;;5341:32;;5470:2;5455:18;5442:32;;5011:495::o;5511:570::-;5606:6;5614;5622;5630;5638;5691:3;5679:9;5670:7;5666:23;5662:33;5659:53;;;5708:1;5705;5698:12;5659:53;5731:29;5750:9;5731:29;:::i;:::-;5721:39;;5779:38;5813:2;5802:9;5798:18;5779:38;:::i;:::-;5769:48;;5836:38;5870:2;5859:9;5855:18;5836:38;:::i;:::-;5511:570;;;;-1:-1:-1;5826:48:1;;5943:2;5928:18;;5915:32;;-1:-1:-1;6044:3:1;6029:19;6016:33;;5511:570;-1:-1:-1;;5511:570:1:o;6086:300::-;6154:6;6162;6215:2;6203:9;6194:7;6190:23;6186:32;6183:52;;;6231:1;6228;6221:12;6183:52;6276:23;;;-1:-1:-1;6342:38:1;6376:2;6361:18;;6342:38;:::i;6391:127::-;6452:10;6447:3;6443:20;6440:1;6433:31;6483:4;6480:1;6473:15;6507:4;6504:1;6497:15;6523:253;6595:2;6589:9;6637:4;6625:17;;6672:18;6657:34;;6693:22;;;6654:62;6651:88;;;6719:18;;:::i;:::-;6755:2;6748:22;6523:253;:::o;6781:275::-;6852:2;6846:9;6917:2;6898:13;;-1:-1:-1;;6894:27:1;6882:40;;6952:18;6937:34;;6973:22;;;6934:62;6931:88;;;6999:18;;:::i;:::-;7035:2;7028:22;6781:275;;-1:-1:-1;6781:275:1:o;7061:1436::-;7178:6;7231:2;7219:9;7210:7;7206:23;7202:32;7199:52;;;7247:1;7244;7237:12;7199:52;7287:9;7274:23;7320:18;7312:6;7309:30;7306:50;;;7352:1;7349;7342:12;7306:50;7375:22;;7428:4;7420:13;;7416:27;-1:-1:-1;7406:55:1;;7457:1;7454;7447:12;7406:55;7497:2;7484:16;7523:18;7515:6;7512:30;7509:56;;;7545:18;;:::i;:::-;7585:40;7621:2;7612:6;7609:1;7605:14;7601:23;7585:40;:::i;:::-;7647:3;7671:6;7666:3;7659:19;7703:2;7698:3;7694:12;7687:19;;7761:2;7753:4;7745:6;7741:17;7737:2;7733:26;7729:35;7715:49;;7787:7;7779:6;7776:19;7773:39;;;7808:1;7805;7798:12;7773:39;7840:2;7836;7832:11;7821:22;;7852:615;7868:6;7863:3;7860:15;7852:615;;;7950:4;7944:3;7935:7;7931:17;7927:28;7924:48;;;7968:1;7965;7958:12;7924:48;7998:22;;:::i;:::-;8061:3;8048:17;-1:-1:-1;;;;;8104:7:1;8100:48;8091:7;8088:61;8078:89;;8163:1;8160;8153:12;8078:89;8180:22;;8277:2;8268:12;;;8255:26;8301:14;;;8294:31;8361:32;8389:2;8380:12;;8361:32;:::i;:::-;8356:2;8345:14;;8338:56;8407:18;;7894:4;7885:14;;;;;8454:2;8445:12;;;;7852:615;;8502:405;8598:6;8606;8614;8667:2;8655:9;8646:7;8642:23;8638:32;8635:52;;;8683:1;8680;8673:12;8635:52;8706:29;8725:9;8706:29;:::i;:::-;8696:39;-1:-1:-1;8804:2:1;8789:18;;8776:32;;-1:-1:-1;8851:50:1;8897:2;8882:18;;8851:50;:::i;:::-;8841:60;;8502:405;;;;;:::o;9142:156::-;9208:20;;9268:4;9257:16;;9247:27;;9237:55;;9288:1;9285;9278:12;9303:733;9405:6;9413;9421;9429;9437;9445;9498:3;9486:9;9477:7;9473:23;9469:33;9466:53;;;9515:1;9512;9505:12;9466:53;9538:29;9557:9;9538:29;:::i;:::-;9528:39;-1:-1:-1;9636:2:1;9621:18;;9608:32;;-1:-1:-1;9737:2:1;9722:18;;9709:32;;-1:-1:-1;9786:36:1;9818:2;9803:18;;9786:36;:::i;:::-;9303:733;;;;-1:-1:-1;9303:733:1;;9895:3;9880:19;;9867:33;;9999:3;9984:19;;;9971:33;;-1:-1:-1;9303:733:1;-1:-1:-1;;9303:733:1:o;10041:808::-;10152:6;10160;10168;10176;10184;10192;10200;10253:3;10241:9;10232:7;10228:23;10224:33;10221:53;;;10270:1;10267;10260:12;10221:53;10293:29;10312:9;10293:29;:::i;:::-;10283:39;;10341:38;10375:2;10364:9;10360:18;10341:38;:::i;:::-;10331:48;-1:-1:-1;10448:2:1;10433:18;;10420:32;;-1:-1:-1;10549:2:1;10534:18;;10521:32;;-1:-1:-1;10598:37:1;10630:3;10615:19;;10598:37;:::i;:::-;10041:808;;;;-1:-1:-1;10041:808:1;;;;10588:47;10708:3;10693:19;;10680:33;;-1:-1:-1;10812:3:1;10797:19;;;10784:33;;10041:808;-1:-1:-1;;10041:808:1:o;10854:420::-;10931:6;10939;10947;11000:2;10988:9;10979:7;10975:23;10971:32;10968:52;;;11016:1;11013;11006:12;10968:52;11039:29;11058:9;11039:29;:::i;:::-;11029:39;11137:2;11122:18;;11109:32;;-1:-1:-1;11238:2:1;11223:18;;;11210:32;;10854:420;-1:-1:-1;;;10854:420:1:o;11685:839::-;11815:6;11823;11831;11839;11847;11855;11863;11916:3;11904:9;11895:7;11891:23;11887:33;11884:53;;;11933:1;11930;11923:12;11884:53;11956:29;11975:9;11956:29;:::i;:::-;11946:39;;12004:50;12050:2;12039:9;12035:18;12004:50;:::i;12529:349::-;12731:2;12713:21;;;12770:2;12750:18;;;12743:30;12809:27;12804:2;12789:18;;12782:55;12869:2;12854:18;;12529:349::o;13581:127::-;13642:10;13637:3;13633:20;13630:1;13623:31;13673:4;13670:1;13663:15;13697:4;13694:1;13687:15;13713:128;13780:9;;;13801:11;;;13798:37;;;13815:18;;:::i;14195:380::-;14274:1;14270:12;;;;14317;;;14338:61;;14392:4;14384:6;14380:17;14370:27;;14338:61;14445:2;14437:6;14434:14;14414:18;14411:38;14408:161;;14491:10;14486:3;14482:20;14479:1;14472:31;14526:4;14523:1;14516:15;14554:4;14551:1;14544:15;14408:161;;14195:380;;;:::o;14580:347::-;14782:2;14764:21;;;14821:2;14801:18;;;14794:30;14860:25;14855:2;14840:18;;14833:53;14918:2;14903:18;;14580:347::o;14932:125::-;14997:9;;;15018:10;;;15015:36;;;15031:18;;:::i;15754:168::-;15827:9;;;15858;;15875:15;;;15869:22;;15855:37;15845:71;;15896:18;;:::i;16059:217::-;16099:1;16125;16115:132;;16169:10;16164:3;16160:20;16157:1;16150:31;16204:4;16201:1;16194:15;16232:4;16229:1;16222:15;16115:132;-1:-1:-1;16261:9:1;;16059:217::o;16635:127::-;16696:10;16691:3;16687:20;16684:1;16677:31;16727:4;16724:1;16717:15;16751:4;16748:1;16741:15;18710:392;-1:-1:-1;;;18968:27:1;;19020:1;19011:11;;19004:27;;;;19056:2;19047:12;;19040:28;19093:2;19084:12;;18710:392::o;19510:341::-;19712:2;19694:21;;;19751:2;19731:18;;;19724:30;-1:-1:-1;;;19785:2:1;19770:18;;19763:47;19842:2;19827:18;;19510:341::o;19856:135::-;19895:3;19916:17;;;19913:43;;19936:18;;:::i;:::-;-1:-1:-1;19983:1:1;19972:13;;19856:135::o;20338:342::-;20540:2;20522:21;;;20579:2;20559:18;;;20552:30;-1:-1:-1;;;20613:2:1;20598:18;;20591:48;20671:2;20656:18;;20338:342::o;21619:127::-;21680:10;21675:3;21671:20;21668:1;21661:31;21711:4;21708:1;21701:15;21735:4;21732:1;21725:15;24394:343;24596:2;24578:21;;;24635:2;24615:18;;;24608:30;-1:-1:-1;;;24669:2:1;24654:18;;24647:49;24728:2;24713:18;;24394:343::o;25800:198::-;-1:-1:-1;;;;;25900:27:1;;;25871;;;25867:61;;25940:29;;25937:55;;;25972:18;;:::i;27692:242::-;27778:1;27771:5;27768:12;27758:143;;27823:10;27818:3;27814:20;27811:1;27804:31;27858:4;27855:1;27848:15;27886:4;27883:1;27876:15;27758:143;27910:18;;27692:242::o;27939:218::-;28090:2;28075:18;;28102:49;28079:9;28133:6;28102:49;:::i;29843:277::-;29910:6;29963:2;29951:9;29942:7;29938:23;29934:32;29931:52;;;29979:1;29976;29969:12;29931:52;30011:9;30005:16;30064:5;30057:13;30050:21;30043:5;30040:32;30030:60;;30086:1;30083;30076:12;32966:289;33157:25;;;33145:2;33130:18;;33191:58;33245:2;33230:18;;33222:6;33191:58;:::i;33260:375::-;33348:1;33366:5;33380:249;33401:1;33391:8;33388:15;33380:249;;;33451:4;33446:3;33442:14;33436:4;33433:24;33430:50;;;33460:18;;:::i;:::-;33510:1;33500:8;33496:16;33493:49;;;33524:16;;;;33493:49;33607:1;33603:16;;;;;33563:15;;33380:249;;;33260:375;;;;;;:::o;33640:902::-;33689:5;33719:8;33709:80;;-1:-1:-1;33760:1:1;33774:5;;33709:80;33808:4;33798:76;;-1:-1:-1;33845:1:1;33859:5;;33798:76;33890:4;33908:1;33903:59;;;;33976:1;33971:174;;;;33883:262;;33903:59;33933:1;33924:10;;33947:5;;;33971:174;34008:3;33998:8;33995:17;33992:43;;;34015:18;;:::i;:::-;-1:-1:-1;;34071:1:1;34057:16;;34130:5;;33883:262;;34229:2;34219:8;34216:16;34210:3;34204:4;34201:13;34197:36;34191:2;34181:8;34178:16;34173:2;34167:4;34164:12;34160:35;34157:77;34154:203;;;-1:-1:-1;34266:19:1;;;34342:5;;34154:203;34389:42;-1:-1:-1;;34414:8:1;34408:4;34389:42;:::i;:::-;34467:6;34463:1;34459:6;34455:19;34446:7;34443:32;34440:58;;;34478:18;;:::i;:::-;34516:20;;33640:902;-1:-1:-1;;;33640:902:1:o;34547:131::-;34607:5;34636:36;34663:8;34657:4;34636:36;:::i;35806:287::-;35935:3;35973:6;35967:13;35989:66;36048:6;36043:3;36036:4;36028:6;36024:17;35989:66;:::i;:::-;36071:16;;;;;35806:287;-1:-1:-1;;35806:287:1:o"},"methodIdentifiers":{"CLAIM_HELPER_ROLE()":"dbc0ed8a","COOLDOWN_ADMIN_ROLE()":"9e3ffce0","COOLDOWN_SECONDS()":"72b49d63","DELEGATE_BY_TYPE_TYPEHASH()":"aa9fbe02","DELEGATE_TYPEHASH()":"41cbf54a","DISTRIBUTION_END()":"919cd40f","DOMAIN_SEPARATOR()":"3644e515","EIP712_REVISION()":"78160376","EMISSION_MANAGER()":"cbcbb507","EXCHANGE_RATE_UNIT()":"8e9b2ca4","INITIAL_EXCHANGE_RATE()":"58146d17","LOWER_BOUND()":"6198e135","PERMIT_TYPEHASH()":"30adf81f","PRECISION()":"aaf5eb68","REVISION()":"dde43cba","REWARDS_VAULT()":"946776cd","REWARD_TOKEN()":"99248ea7","SLASH_ADMIN_ROLE()":"8c9a281d","STAKED_TOKEN()":"312f6b83","UNSTAKE_WINDOW()":"359c4a96","_aaveGovernance()":"c3863ada","_nonces(address)":"b9844d8d","_votingSnapshots(address,uint256)":"5b3cc0cf","_votingSnapshotsCounts(address)":"7bb73c97","allowance(address,address)":"dd62ed3e","approve(address,uint256)":"095ea7b3","assets(address)":"f11b8188","balanceOf(address)":"70a08231","claimRewards(address,uint256)":"9a99b4f0","claimRewardsAndRedeem(address,uint256,uint256)":"eab52318","claimRewardsAndRedeemOnBehalf(address,address,uint256,uint256)":"9c9b5154","claimRewardsOnBehalf(address,address,uint256)":"20fb80b5","claimRoleAdmin(uint256)":"fde9eb69","configureAssets((uint128,uint256,address)[])":"b2a5dbfa","cooldown()":"787a08a6","cooldownOnBehalfOf(address)":"250201db","decimals()":"313ce567","decreaseAllowance(address,uint256)":"a457c2d7","delegate(address)":"5c19a95c","delegateBySig(address,uint256,uint256,uint8,bytes32,bytes32)":"c3cda520","delegateByType(address,uint8)":"dc937e1c","delegateByTypeBySig(address,uint8,uint256,uint256,uint8,bytes32,bytes32)":"f713d8a8","getAdmin(uint256)":"111fd88b","getCooldownSeconds()":"616e0bf9","getDelegateeByType(address,uint8)":"6f50458d","getExchangeRate()":"e6aa216c","getMaxSlashablePercentage()":"f34d96da","getPendingAdmin(uint256)":"4575e69b","getPowerAtBlock(address,uint256,uint8)":"c2ffbb91","getPowerCurrent(address,uint8)":"b2f4201d","getTotalRewardsBalance(address)":"8dbefee2","getUserAssetData(address,address)":"3373ee4c","inPostSlashingPeriod()":"f036bc68","increaseAllowance(address,uint256)":"39509351","initialize(address,address,address,uint256,uint256)":"a6b63eb8","name()":"06fdde03","permit(address,address,uint256,uint256,uint8,bytes32,bytes32)":"d505accf","previewRedeem(uint256)":"4cdad506","previewStake(uint256)":"727a5d57","redeem(address,uint256)":"1e9a6950","redeemOnBehalf(address,address,uint256)":"112d037c","returnFunds(uint256)":"45755dd6","setCooldownSeconds(uint256)":"7b5b1157","setMaxSlashablePercentage(uint256)":"74011f56","setPendingAdmin(uint256,address)":"ab406fe6","settleSlashing()":"aff05aa9","slash(address,uint256)":"02fb4d85","stake(address,uint256)":"adc9772e","stakerRewardsToClaim(address)":"7e90d7ef","stakersCooldowns(address)":"091030c3","symbol()":"95d89b41","totalSupply()":"18160ddd","totalSupplyAt(uint256)":"981b24d0","transfer(address,uint256)":"a9059cbb","transferFrom(address,address,uint256)":"23b872dd"}},"metadata":"{\"compiler\":{\"version\":\"0.8.27+commit.40a35a09\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"contract IERC20\",\"name\":\"stakedToken\",\"type\":\"address\"},{\"internalType\":\"contract IERC20\",\"name\":\"rewardToken\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"unstakeWindow\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"rewardsVault\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"emissionManager\",\"type\":\"address\"},{\"internalType\":\"uint128\",\"name\":\"distributionDuration\",\"type\":\"uint128\"}],\"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\":\"asset\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"emission\",\"type\":\"uint256\"}],\"name\":\"AssetConfigUpdated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"asset\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"index\",\"type\":\"uint256\"}],\"name\":\"AssetIndexUpdated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"Cooldown\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"cooldownSeconds\",\"type\":\"uint256\"}],\"name\":\"CooldownSecondsChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"delegator\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"delegatee\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"enum IGovernancePowerDelegationToken.DelegationType\",\"name\":\"delegationType\",\"type\":\"uint8\"}],\"name\":\"DelegateChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"enum IGovernancePowerDelegationToken.DelegationType\",\"name\":\"delegationType\",\"type\":\"uint8\"}],\"name\":\"DelegatedPowerChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint216\",\"name\":\"exchangeRate\",\"type\":\"uint216\"}],\"name\":\"ExchangeRateChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"FundsReturned\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"newPercentage\",\"type\":\"uint256\"}],\"name\":\"MaxSlashablePercentageChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newPendingAdmin\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"role\",\"type\":\"uint256\"}],\"name\":\"PendingAdminChanged\",\"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\":\"assets\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"}],\"name\":\"Redeem\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"RewardsAccrued\",\"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\":\"amount\",\"type\":\"uint256\"}],\"name\":\"RewardsClaimed\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newAdmin\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"role\",\"type\":\"uint256\"}],\"name\":\"RoleClaimed\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"destination\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"Slashed\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"windowSeconds\",\"type\":\"uint256\"}],\"name\":\"SlashingExitWindowDurationChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[],\"name\":\"SlashingSettled\",\"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\":\"assets\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"}],\"name\":\"Staked\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"Transfer\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"asset\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"index\",\"type\":\"uint256\"}],\"name\":\"UserIndexUpdated\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"CLAIM_HELPER_ROLE\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"COOLDOWN_ADMIN_ROLE\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"COOLDOWN_SECONDS\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"DELEGATE_BY_TYPE_TYPEHASH\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"DELEGATE_TYPEHASH\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"DISTRIBUTION_END\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"DOMAIN_SEPARATOR\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"EIP712_REVISION\",\"outputs\":[{\"internalType\":\"bytes\",\"name\":\"\",\"type\":\"bytes\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"EMISSION_MANAGER\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"EXCHANGE_RATE_UNIT\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"INITIAL_EXCHANGE_RATE\",\"outputs\":[{\"internalType\":\"uint216\",\"name\":\"\",\"type\":\"uint216\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"LOWER_BOUND\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"PERMIT_TYPEHASH\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"PRECISION\",\"outputs\":[{\"internalType\":\"uint8\",\"name\":\"\",\"type\":\"uint8\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"REVISION\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"pure\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"REWARDS_VAULT\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"REWARD_TOKEN\",\"outputs\":[{\"internalType\":\"contract IERC20\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"SLASH_ADMIN_ROLE\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"STAKED_TOKEN\",\"outputs\":[{\"internalType\":\"contract IERC20\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"UNSTAKE_WINDOW\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"_aaveGovernance\",\"outputs\":[{\"internalType\":\"contract ITransferHook\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"name\":\"_nonces\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"name\":\"_votingSnapshots\",\"outputs\":[{\"internalType\":\"uint128\",\"name\":\"blockNumber\",\"type\":\"uint128\"},{\"internalType\":\"uint128\",\"name\":\"value\",\"type\":\"uint128\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"name\":\"_votingSnapshotsCounts\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"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\":\"\",\"type\":\"address\"}],\"name\":\"assets\",\"outputs\":[{\"internalType\":\"uint128\",\"name\":\"emissionPerSecond\",\"type\":\"uint128\"},{\"internalType\":\"uint128\",\"name\":\"lastUpdateTimestamp\",\"type\":\"uint128\"},{\"internalType\":\"uint256\",\"name\":\"index\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"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\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"claimRewards\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"claimAmount\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"redeemAmount\",\"type\":\"uint256\"}],\"name\":\"claimRewardsAndRedeem\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"claimAmount\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"redeemAmount\",\"type\":\"uint256\"}],\"name\":\"claimRewardsAndRedeemOnBehalf\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"claimRewardsOnBehalf\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"role\",\"type\":\"uint256\"}],\"name\":\"claimRoleAdmin\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"components\":[{\"internalType\":\"uint128\",\"name\":\"emissionPerSecond\",\"type\":\"uint128\"},{\"internalType\":\"uint256\",\"name\":\"totalStaked\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"underlyingAsset\",\"type\":\"address\"}],\"internalType\":\"struct DistributionTypes.AssetConfigInput[]\",\"name\":\"assetsConfigInput\",\"type\":\"tuple[]\"}],\"name\":\"configureAssets\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"cooldown\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"}],\"name\":\"cooldownOnBehalfOf\",\"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\":\"delegatee\",\"type\":\"address\"}],\"name\":\"delegate\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"delegatee\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"nonce\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"expiry\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"v\",\"type\":\"uint8\"},{\"internalType\":\"bytes32\",\"name\":\"r\",\"type\":\"bytes32\"},{\"internalType\":\"bytes32\",\"name\":\"s\",\"type\":\"bytes32\"}],\"name\":\"delegateBySig\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"delegatee\",\"type\":\"address\"},{\"internalType\":\"enum IGovernancePowerDelegationToken.DelegationType\",\"name\":\"delegationType\",\"type\":\"uint8\"}],\"name\":\"delegateByType\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"delegatee\",\"type\":\"address\"},{\"internalType\":\"enum IGovernancePowerDelegationToken.DelegationType\",\"name\":\"delegationType\",\"type\":\"uint8\"},{\"internalType\":\"uint256\",\"name\":\"nonce\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"expiry\",\"type\":\"uint256\"},{\"internalType\":\"uint8\",\"name\":\"v\",\"type\":\"uint8\"},{\"internalType\":\"bytes32\",\"name\":\"r\",\"type\":\"bytes32\"},{\"internalType\":\"bytes32\",\"name\":\"s\",\"type\":\"bytes32\"}],\"name\":\"delegateByTypeBySig\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"role\",\"type\":\"uint256\"}],\"name\":\"getAdmin\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getCooldownSeconds\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"delegator\",\"type\":\"address\"},{\"internalType\":\"enum IGovernancePowerDelegationToken.DelegationType\",\"name\":\"delegationType\",\"type\":\"uint8\"}],\"name\":\"getDelegateeByType\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getExchangeRate\",\"outputs\":[{\"internalType\":\"uint216\",\"name\":\"\",\"type\":\"uint216\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getMaxSlashablePercentage\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"role\",\"type\":\"uint256\"}],\"name\":\"getPendingAdmin\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"blockNumber\",\"type\":\"uint256\"},{\"internalType\":\"enum IGovernancePowerDelegationToken.DelegationType\",\"name\":\"delegationType\",\"type\":\"uint8\"}],\"name\":\"getPowerAtBlock\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"internalType\":\"enum IGovernancePowerDelegationToken.DelegationType\",\"name\":\"delegationType\",\"type\":\"uint8\"}],\"name\":\"getPowerCurrent\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"staker\",\"type\":\"address\"}],\"name\":\"getTotalRewardsBalance\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"asset\",\"type\":\"address\"}],\"name\":\"getUserAssetData\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"inPostSlashingPeriod\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"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\":\"slashingAdmin\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"cooldownPauseAdmin\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"claimHelper\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"maxSlashablePercentage\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"cooldownSeconds\",\"type\":\"uint256\"}],\"name\":\"initialize\",\"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\"},{\"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\":[{\"internalType\":\"uint256\",\"name\":\"shares\",\"type\":\"uint256\"}],\"name\":\"previewRedeem\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"assets\",\"type\":\"uint256\"}],\"name\":\"previewStake\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"redeem\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"redeemOnBehalf\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"returnFunds\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"cooldownSeconds\",\"type\":\"uint256\"}],\"name\":\"setCooldownSeconds\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"percentage\",\"type\":\"uint256\"}],\"name\":\"setMaxSlashablePercentage\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"role\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"newPendingAdmin\",\"type\":\"address\"}],\"name\":\"setPendingAdmin\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"settleSlashing\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"destination\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"slash\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"stake\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"name\":\"stakerRewardsToClaim\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"name\":\"stakersCooldowns\",\"outputs\":[{\"internalType\":\"uint40\",\"name\":\"timestamp\",\"type\":\"uint40\"},{\"internalType\":\"uint216\",\"name\":\"amount\",\"type\":\"uint216\"}],\"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\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"name\":\"totalSupplyAt\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"transfer\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"transferFrom\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"author\":\"BGD Labs\",\"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.\"},\"DelegateChanged(address,address,uint8)\":{\"details\":\"emitted when a user delegates to another\",\"params\":{\"delegatee\":\"the delegatee\",\"delegationType\":\"the type of delegation (VOTING_POWER, PROPOSITION_POWER)*\",\"delegator\":\"the delegator\"}},\"DelegatedPowerChanged(address,uint256,uint8)\":{\"details\":\"emitted when an action changes the delegated power of a user\",\"params\":{\"amount\":\"the amount of delegated power for the user\",\"delegationType\":\"the type of delegation (VOTING_POWER, PROPOSITION_POWER)*\",\"user\":\"the user which delegated power has changed\"}},\"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\":{\"COOLDOWN_SECONDS()\":{\"details\":\"Getter of the cooldown seconds\",\"returns\":{\"_0\":\"cooldownSeconds the amount of seconds between starting the cooldown and being able to redeem\"}},\"REVISION()\":{\"details\":\"returns the revision of the implementation contract\",\"returns\":{\"_0\":\"The revision\"}},\"allowance(address,address)\":{\"details\":\"See {IERC20-allowance}.\"},\"approve(address,uint256)\":{\"details\":\"See {IERC20-approve}. NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on `transferFrom`. This is semantically equivalent to an infinite approval. Requirements: - `spender` cannot be the zero address.\"},\"balanceOf(address)\":{\"details\":\"See {IERC20-balanceOf}.\"},\"claimRewards(address,uint256)\":{\"details\":\"Claims an `amount` of `REWARD_TOKEN` to the address `to`\",\"params\":{\"amount\":\"Amount to stake\",\"to\":\"Address to send the claimed rewards\"}},\"claimRewardsAndRedeem(address,uint256,uint256)\":{\"details\":\"Claims an `amount` of `REWARD_TOKEN` and redeems to the provided address\",\"params\":{\"claimAmount\":\"Amount to claim\",\"redeemAmount\":\"Amount to redeem\",\"to\":\"Address to claim and redeem to\"}},\"claimRewardsAndRedeemOnBehalf(address,address,uint256,uint256)\":{\"details\":\"Claims an `amount` of `REWARD_TOKEN` and redeems the `redeemAmount` to an address. Only the claim helper contract is allowed to call this function\",\"params\":{\"claimAmount\":\"Amount to claim\",\"from\":\"The address of the from\",\"redeemAmount\":\"Amount to redeem\",\"to\":\"Address to claim and redeem to\"}},\"claimRewardsOnBehalf(address,address,uint256)\":{\"details\":\"Claims an `amount` of `REWARD_TOKEN` to the address `to` on behalf of the user. Only the claim helper contract is allowed to call this function\",\"params\":{\"amount\":\"Amount to claim\",\"from\":\"The address of the user from to claim\",\"to\":\"Address to send the claimed rewards\"}},\"claimRoleAdmin(uint256)\":{\"details\":\"allows the caller to become a specific role admin\",\"params\":{\"role\":\"the role associated with the admin claiming the new role*\"}},\"cooldown()\":{\"details\":\"Activates the cooldown period to unstake - It can't be called if the user is not staking\"},\"cooldownOnBehalfOf(address)\":{\"details\":\"Activates the cooldown period to unstake - It can't be called if the user is not staking\"},\"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`.\"},\"delegate(address)\":{\"details\":\"delegates all the powers to a specific user\",\"params\":{\"delegatee\":\"the user to which the power will be delegated*\"}},\"delegateBySig(address,uint256,uint256,uint8,bytes32,bytes32)\":{\"details\":\"Delegates power from signatory to `delegatee`\",\"params\":{\"delegatee\":\"The address to delegate votes to\",\"expiry\":\"The time at which to expire the signature\",\"nonce\":\"The contract state required to match the signature\",\"r\":\"Half of the ECDSA signature pair\",\"s\":\"Half of the ECDSA signature pair\",\"v\":\"The recovery byte of the signature\"}},\"delegateByType(address,uint8)\":{\"details\":\"delegates one specific power to a delegatee\",\"params\":{\"delegatee\":\"the user which delegated power has changed\",\"delegationType\":\"the type of delegation (VOTING_POWER, PROPOSITION_POWER)*\"}},\"delegateByTypeBySig(address,uint8,uint256,uint256,uint8,bytes32,bytes32)\":{\"details\":\"Delegates power from signatory to `delegatee`\",\"params\":{\"delegatee\":\"The address to delegate votes to\",\"delegationType\":\"the type of delegation (VOTING_POWER, PROPOSITION_POWER)\",\"expiry\":\"The time at which to expire the signature\",\"nonce\":\"The contract state required to match the signature\",\"r\":\"Half of the ECDSA signature pair\",\"s\":\"Half of the ECDSA signature pair\",\"v\":\"The recovery byte of the signature\"}},\"getAdmin(uint256)\":{\"details\":\"returns the admin associated with the specific role\",\"params\":{\"role\":\"the role associated with the admin being returned*\"}},\"getCooldownSeconds()\":{\"details\":\"Getter of the cooldown seconds\",\"returns\":{\"_0\":\"cooldownSeconds the amount of seconds between starting the cooldown and being able to redeem\"}},\"getDelegateeByType(address,uint8)\":{\"details\":\"returns the delegatee of an user\",\"params\":{\"delegator\":\"the address of the delegator*\"}},\"getExchangeRate()\":{\"details\":\"Returns the current exchange rate\",\"returns\":{\"_0\":\"exchangeRate as 18 decimal precision uint216\"}},\"getMaxSlashablePercentage()\":{\"details\":\"Getter of the max slashable percentage of the total staked amount.\",\"returns\":{\"_0\":\"percentage the maximum slashable percentage\"}},\"getPendingAdmin(uint256)\":{\"details\":\"returns the pending admin associated with the specific role\",\"params\":{\"role\":\"the role associated with the pending admin being returned*\"}},\"getPowerAtBlock(address,uint256,uint8)\":{\"details\":\"returns the delegated power of a user at a certain block\",\"params\":{\"user\":\"the user*\"}},\"getPowerCurrent(address,uint8)\":{\"details\":\"returns the current delegated power of a user. The current power is the power delegated at the time of the last snapshot\",\"params\":{\"user\":\"the user*\"}},\"getTotalRewardsBalance(address)\":{\"details\":\"Return the total rewards pending to claim by an staker\",\"params\":{\"staker\":\"The staker address\"},\"returns\":{\"_0\":\"The rewards\"}},\"getUserAssetData(address,address)\":{\"details\":\"Returns the data of an user on a distribution\",\"params\":{\"asset\":\"The address of the reference asset of the distribution\",\"user\":\"Address of the user\"},\"returns\":{\"_0\":\"The new index\"}},\"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.\"},\"initialize(address,address,address,uint256,uint256)\":{\"details\":\"Called by the proxy contract\"},\"name()\":{\"details\":\"Returns the name of the token.\"},\"permit(address,address,uint256,uint256,uint8,bytes32,bytes32)\":{\"details\":\"implements the permit function as for https://github.com/ethereum/EIPs/blob/8a34d644aacf0f9f8f00815307fd7dd5da07655f/EIPS/eip-2612.md\",\"params\":{\"deadline\":\"the deadline timestamp, type(uint256).max for no deadline\",\"owner\":\"the owner of the funds\",\"r\":\"signature param\",\"s\":\"signature param\",\"spender\":\"the spender\",\"v\":\"signature param\",\"value\":\"the amount\"}},\"previewRedeem(uint256)\":{\"details\":\"returns the exact amount of assets that would be redeemed for the provided number of shares\",\"params\":{\"shares\":\"the number of shares to redeem\"},\"returns\":{\"_0\":\"uint256 assets the number of assets that would be redeemed\"}},\"previewStake(uint256)\":{\"details\":\"returns the exact amount of shares that would be received for the provided number of assets\",\"params\":{\"assets\":\"the number of assets to stake\"},\"returns\":{\"_0\":\"uint256 shares the number of shares that would be received\"}},\"redeem(address,uint256)\":{\"details\":\"Redeems shares, and stop earning rewards\",\"params\":{\"amount\":\"Amount of shares to redeem\",\"to\":\"Address to redeem to\"}},\"redeemOnBehalf(address,address,uint256)\":{\"details\":\"Redeems shares for a user. Only the claim helper contract is allowed to call this function\",\"params\":{\"amount\":\"Amount of shares to redeem\",\"from\":\"Address to redeem from\",\"to\":\"Address to redeem to\"}},\"returnFunds(uint256)\":{\"details\":\"Pulls STAKE_TOKEN and distributes them amongst current stakers by altering the exchange rate. This method is permissionless and intended to be used after a slashing event to return potential excess funds.\",\"params\":{\"amount\":\"amount of STAKE_TOKEN to pull.\"}},\"setCooldownSeconds(uint256)\":{\"details\":\"Setter of cooldown seconds Can only be called by the cooldown admin\",\"params\":{\"cooldownSeconds\":\"the new amount of seconds you have to wait between starting the cooldown and being able to redeem\"}},\"setMaxSlashablePercentage(uint256)\":{\"details\":\"Setter of max slashable percentage of the total staked amount. Can only be called by the slashing admin\",\"params\":{\"percentage\":\"the new maximum slashable percentage\"}},\"setPendingAdmin(uint256,address)\":{\"details\":\"sets the pending admin for a specific role\",\"params\":{\"newPendingAdmin\":\"the address of the new pending admin*\",\"role\":\"the role associated with the new pending admin being set\"}},\"settleSlashing()\":{\"details\":\"Settles an ongoing slashing event\"},\"slash(address,uint256)\":{\"details\":\"Executes a slashing of the underlying of a certain amount, transferring the seized funds to destination. Decreasing the amount of underlying will automatically adjust the exchange rate. A call to `slash` will start a slashing event which has to be settled via `settleSlashing`. As long as the slashing event is ongoing, stake and slash are deactivated. - MUST NOT be called when a previous slashing is still ongoing\",\"params\":{\"amount\":\"the amount to be slashed - if the amount bigger than maximum allowed, the maximum will be slashed instead.\",\"destination\":\"the address where seized funds will be transferred\"},\"returns\":{\"_0\":\"amount the amount slashed\"}},\"stake(address,uint256)\":{\"details\":\"Allows staking a specified amount of STAKED_TOKEN\",\"params\":{\"amount\":\"The amount of assets to be staked\",\"to\":\"The address to receiving the shares\"}},\"symbol()\":{\"details\":\"Returns the symbol of the token, usually a shorter version of the name.\"},\"totalSupply()\":{\"details\":\"See {IERC20-totalSupply}.\"},\"totalSupplyAt(uint256)\":{\"details\":\"returns the total supply at a certain block number used by the voting strategy contracts to calculate the total votes needed for threshold/quorum In this initial implementation with no AAVE minting, simply returns the current supply A snapshots mapping will need to be added in case a mint function is added to the AAVE token in the future*\"},\"transfer(address,uint256)\":{\"details\":\"See {IERC20-transfer}. Requirements: - `to` cannot be the zero address. - the caller must have a balance of at least `amount`.\"},\"transferFrom(address,address,uint256)\":{\"details\":\"See {IERC20-transferFrom}. Emits an {Approval} event indicating the updated allowance. This is not required by the EIP. See the note at the beginning of {ERC20}. NOTE: Does not update the allowance if the current allowance is the maximum `uint256`. Requirements: - `from` and `to` cannot be the zero address. - `from` must have a balance of at least `amount`. - the caller must have allowance for ``from``'s tokens of at least `amount`.\"}},\"title\":\"StakedTokenV3\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{\"DELEGATE_BY_TYPE_TYPEHASH()\":{\"notice\":\"The EIP-712 typehash for the delegation struct used by the contract\"},\"LOWER_BOUND()\":{\"notice\":\"lower bound to prevent spam & avoid exchangeRate issues\"},\"REWARDS_VAULT()\":{\"notice\":\"Address to pull from the rewards, needs to have approved this contract\"},\"UNSTAKE_WINDOW()\":{\"notice\":\"Seconds available to redeem once the cooldown period is fulfilled\"},\"inPostSlashingPeriod()\":{\"notice\":\"Flag determining if there's an ongoing slashing event that needs to be settled\"}},\"notice\":\"Contract to stake Aave token, tokenize the position and get rewards, inheriting from a distribution manager contract\",\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/flatten/StakedPSYSV3-flatten.sol\":\"StakedTokenV3\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"contracts/flatten/StakedPSYSV3-flatten.sol\":{\"keccak256\":\"0x1288e9f8db9b4a153854a518648153da8175d48775832dc88c82af682197fc0c\",\"license\":\"MIT AND agpl-3.0\",\"urls\":[\"bzz-raw://c0b3c1c232cadc3e9d3315b983bfae0d842041778a8a557240729676d1b143cb\",\"dweb:/ipfs/QmWLxw9LFwrVNftCUwD8koRmWKVrcaEHemcZJY7mAjoBRN\"]}},\"version\":1}"},"VersionedInitializable":{"abi":[],"evm":{"bytecode":{"functionDebugData":{},"generatedSources":[],"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"deployedBytecode":{"functionDebugData":{},"generatedSources":[],"immutableReferences":{},"linkReferences":{},"object":"","opcodes":"","sourceMap":""},"methodIdentifiers":{}},"metadata":"{\"compiler\":{\"version\":\"0.8.27+commit.40a35a09\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"author\":\"Aave, inspired by the OpenZeppelin Initializable contract\",\"details\":\"Helper contract to support initializer functions. To use it, replace the constructor with a function that has the `initializer` modifier. WARNING: Unlike constructors, initializer functions must be manually invoked. This applies both to deploying an Initializable contract, as well as extending an Initializable contract via inheritance. WARNING: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or ensure that all initializers are idempotent, because this is not dealt with automatically as with constructors.\",\"kind\":\"dev\",\"methods\":{},\"stateVariables\":{\"lastInitializedRevision\":{\"details\":\"Indicates that the contract has been initialized.\"}},\"title\":\"VersionedInitializable\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/flatten/StakedPSYSV3-flatten.sol\":\"VersionedInitializable\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[]},\"sources\":{\"contracts/flatten/StakedPSYSV3-flatten.sol\":{\"keccak256\":\"0x1288e9f8db9b4a153854a518648153da8175d48775832dc88c82af682197fc0c\",\"license\":\"MIT AND agpl-3.0\",\"urls\":[\"bzz-raw://c0b3c1c232cadc3e9d3315b983bfae0d842041778a8a557240729676d1b143cb\",\"dweb:/ipfs/QmWLxw9LFwrVNftCUwD8koRmWKVrcaEHemcZJY7mAjoBRN\"]}},\"version\":1}"}}}}}